Newer
Older

Michael KRISPER
committed
<DefineConstants />
<!-- For a Release-Candidate uncomment the following line: -->
<!--<DefineConstants>RELEASE_CANDIDATE</DefineConstants>-->
<!-- For a Release uncomment the following line: -->

Michael KRISPER
committed
<!--<DefineConstants>CERTIFICATION_RELEASE</DefineConstants>-->
<!-- Global VECTO Version -->

Michael KRISPER
committed
<VersionSuffix>DEV</VersionSuffix>

Michael KRISPER
committed
<!-- The following settings are used as default values for ALL projects -->
<VersionPrefix>$(MainProductVersion).$([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>

Michael KRISPER
committed
<PlatformTarget>AnyCPU</PlatformTarget>
<Deterministic>true</Deterministic>
<!-- Set to true for VectoCore to fix Ninject version conflicts-->
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

Michael KRISPER
committed
<DefineTrace>false</DefineTrace>
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<DebugType>none</DebugType>
<WarningLevel>5</WarningLevel>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="$(DefineConstants.Contains('RELEASE_CANDIDATE'))">
<VersionSuffix>RC</VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="$(DefineConstants.Contains('CERTIFICATION_RELEASE'))">
<VersionSuffix></VersionSuffix>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>5</WarningLevel>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>

Michael KRISPER
committed
<PropertyGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='Deploy'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<WarningLevel>1</WarningLevel>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
</PropertyGroup>