Created
January 18, 2017 09:10
-
-
Save pvandervelde/88aa8f644148b4cdb9fa909fe3ff8f69 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Overrides for the project specific properties --> | |
<PropertyGroup> | |
<!-- | |
The name of the product. This is for instance used for: | |
* Copyrights | |
* API documentation | |
--> | |
<ProductName Condition=" '$(ProductName)' == '' ">Mind Vortex</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)' == '' ">MindVortex</ProductNameInFilePath> | |
<!-- | |
The description of the product. This is for instance used for: | |
* Installer information | |
--> | |
<ProductDescription> | |
This is a short description of my awesome product | |
</ProductDescription> | |
<!-- | |
The namespace in which all the code for the product is placed. This is for instance used for: | |
* Finding the correct assemblies and namespaces for unit testing and coverage reporting | |
* Generated code files that contain namespaces | |
--> | |
<ProductNamespace Condition=" '$(ProductNamespace)' == '' ">MindVortex</ProductNamespace> | |
<!-- | |
The first year the product was available / created. This is for instance used for: | |
* Copyrights | |
--> | |
<ProductStartingYear Condition=" '$(ProductStartingYear)' == '' ">2013</ProductStartingYear> | |
<!-- | |
The name of the company. This is for instance used for: | |
* Copyrights | |
* API documentation | |
--> | |
<CompanyName Condition=" '$(CompanyName)' == '' ">P. van der Velde</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)' == '' ">patrickvandervelde</CompanyNameInFilePath> | |
<!-- | |
The URL of the company website. This is for instance used for: | |
* nuspec files | |
--> | |
<CompanyUrl Condition=" '$(CompanyUrl)' == '' ">http://www.petrikvandervelde.nl</CompanyUrl> | |
<!-- | |
The email address that is specified in the documentation. This is for instance used for: | |
* API documentation | |
--> | |
<EmailDocumentation Condition=" '$(EmailDocumentation)' == '' ">UNDEFINED</EmailDocumentation> | |
<!-- | |
The short form of the copyright text. This is for instance used for: | |
* Documentation copyrights | |
* Generated file copyrights | |
--> | |
<!--<CopyrightShort>Copyright (c) - $(CompanyName). All rights reserved.</CopyrightShort>--> | |
<!-- | |
The long form of the copyright text. This is for instance used for: | |
* Assembly copyrights | |
--> | |
<!--<CopyrightLong>Copyright (c) - $(CompanyName) $(ProductStartingYear) - $([System.DateTime]::Now.ToString("yyyy")). All rights reserved.</CopyrightLong>--> | |
</PropertyGroup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment