Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
Don't check if the values are defined in the settings.props file beca…
Browse files Browse the repository at this point in the history
…use nBuildKit provides

defaults which we don't want

references #8
  • Loading branch information
pvandervelde committed Apr 13, 2019
1 parent 5fe1246 commit 831b378
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions settings.props
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@
* Copyrights
* API documentation
-->
<ProductName Condition=" '$(ProductName)' == '' ">Nuclei.Build</ProductName>
<ProductName>Nuclei.Build</ProductName>

<!--
The name of the product that can be used as part of a file path. This is for instance used for:
* CCM
* SourceMonitor
* Deployment directory naming
-->
<ProductNameInFilePath Condition=" '$(ProductNameInFilePath)' == '' ">nuclei.build</ProductNameInFilePath>
<ProductNameInFilePath>nuclei.build</ProductNameInFilePath>

<!--
The description of the product. This is for instance used for:
Expand All @@ -109,38 +109,38 @@
* Finding the correct assemblies and namespaces for unit testing and coverage reporting
* Generated code files that contain namespaces
-->
<ProductNamespace Condition=" '$(ProductNamespace)' == '' ">Nuclei.Build</ProductNamespace>
<ProductNamespace>Nuclei.Build</ProductNamespace>

<!--
The first year the product was available / created. This is for instance used for:
* Copyrights
-->
<ProductStartingYear Condition=" '$(ProductStartingYear)' == '' ">2013</ProductStartingYear>
<ProductStartingYear>2013</ProductStartingYear>

<!--
The name of the company. This is for instance used for:
* Copyrights
* API documentation
-->
<CompanyName Condition=" '$(CompanyName)' == '' ">TheNucleus</CompanyName>
<CompanyName>TheNucleus</CompanyName>

<!--
The name of the company that can be used as a part of a file path. This is for instance used for:
* Installer file paths
-->
<CompanyNameInFilePath Condition=" '$(CompanyNameInFilePath)' == '' ">TheNucleus</CompanyNameInFilePath>
<CompanyNameInFilePath>TheNucleus</CompanyNameInFilePath>

<!--
The URL of the company website. This is for instance used for:
* nuspec files
-->
<CompanyUrl Condition=" '$(CompanyUrl)' == '' ">https://github.com/TheNucleus/nuclei.build</CompanyUrl>
<CompanyUrl>https://github.com/TheNucleus/nuclei.build</CompanyUrl>

<!--
The email address that is specified in the documentation. This is for instance used for:
* API documentation
-->
<EmailDocumentation Condition=" '$(EmailDocumentation)' == '' ">UNDEFINED</EmailDocumentation>
<EmailDocumentation>UNDEFINED</EmailDocumentation>

<!--
The short form of the copyright text. This is for instance used for:
Expand All @@ -161,19 +161,19 @@
-->
<PropertyGroup>
<!-- The user name of the user who owns the repository on GitHub -->
<GitHubUserName Condition=" '$(GitHubUserName)' == '' ">thenucleus</GitHubUserName>
<GitHubUserName>thenucleus</GitHubUserName>

<!--
The github repository that contains the source code for the current product. Used when getting the release notes
from the github issues. The correct format is <USERNAME>/<REPOSITORYNAME>
-->
<GitHubRepositoryName Condition=" '$(GitHubRepositoryName)' == '' ">nuclei.build</GitHubRepositoryName>
<GitHubRepositoryName>nuclei.build</GitHubRepositoryName>

<!--
The full URL to the GIT repository. Can include the '%GitHubToken%' environment variable for authenticated
connection to the repository, e.g. https://%GitHubToken%:@github.com/MyUser/MyProject.git
-->
<GitRemoteRepository Condition=" '$(GitRemoteRepository)' == '' ">https://github.com/$(GitHubUserName)/nuclei.build.git</GitRemoteRepository>
<GitRemoteRepository>https://github.com/$(GitHubUserName)/nuclei.build.git</GitRemoteRepository>
</PropertyGroup>

<!--
Expand Down Expand Up @@ -639,7 +639,7 @@
NuGet if no package is specified in the packages.config file.
-->
<PropertyGroup>
<NBuildKitMinimumVersion>0.8.0</NBuildKitMinimumVersion>
<NBuildKitMaximumVersion>1.0.0</NBuildKitMaximumVersion>
<NBuildKitMinimumVersion>1.0.0</NBuildKitMinimumVersion>
<NBuildKitMaximumVersion>2.0.0</NBuildKitMaximumVersion>
</PropertyGroup>
</Project>

0 comments on commit 831b378

Please sign in to comment.