Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 103604e8 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

Reorganized settings files

parent ef0eff6e
No related branches found
No related tags found
No related merge requests found
<Project>
<PropertyGroup>
<!-- For a Release Candidate: Uncomment the following line: -->
<!--<DefineConstants>$(DefineConstants),RELEASE_CANDIDATE</DefineConstants>-->
<!-- For a Release: Uncomment the following line: -->
<!--<DefineConstants>$(DefineConstants),CERTIFICATION_RELEASE</DefineConstants>-->
</PropertyGroup>
<!-- The following settings define the default values for ALL projects -->
<PropertyGroup>
<VersionPrefix>0.7.7.$([System.DateTime]::UtcNow.Subtract($([System.DateTime]::new(2015,1,1))).Days)</VersionPrefix>
<Authors>Graz University of Technology</Authors>
<Company>European Union</Company>
<Copyright>Copyright © 2012-$([System.DateTime]::UtcNow.Year)</Copyright>
<TargetFramework>net45</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<VersionSuffix>DEV</VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="$(DefineConstants.Contains('RELEASE_CANDIDATE'))">
<VersionSuffix>RC</VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="$(DefineConstants.Contains('CERTIFICATION_RELEASE'))">
<VersionSuffix></VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>4</WarningLevel>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants />
<DebugType>none</DebugType>
<WarningLevel>4</WarningLevel>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
</Project>
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>0.7.7.$([System.DateTime]::UtcNow.Subtract($([System.DateTime]::new(2015,1,1))).Days)</VersionPrefix>
<AssemblyName>VectoCommon</AssemblyName>
<Product>VectoCommon</Product>
<RootNamespace>TUGraz.VectoCommon</RootNamespace>
<TargetFramework>net45</TargetFramework>
<Authors>Graz University of Technology</Authors>
<Company>European Union</Company>
<Copyright>Copyright © 2012-$([System.DateTime]::UtcNow.Year)</Copyright>
<VersionSuffix Condition="'$(Configuration)'=='Debug'">DEV</VersionSuffix>
<VersionSuffix Condition="'$(Configuration)'!='Debug'" />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>4</WarningLevel>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants />
<DebugType>none</DebugType>
<WarningLevel>4</WarningLevel>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
......@@ -49,5 +26,4 @@
<LastGenOutput>XMLNames.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment