DSInternals/Src/Configuration/Common.csproj.props

29 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-12-26 22:44:43 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!-- This file contains settings that are common for all C# projects. -->
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Common.props" />
2015-12-27 17:18:31 +00:00
<!-- Output Directory Paths -->
2015-12-26 22:44:43 +00:00
<PropertyGroup>
<OutputPath>$(BinPath)</OutputPath>
<IntermediateOutputPath>$(ObjPath)</IntermediateOutputPath>
</PropertyGroup>
2015-12-27 17:18:31 +00:00
<!-- Strong Name Signing -->
2015-12-26 22:44:43 +00:00
<PropertyGroup>
<SignAssembly>$(DoSign)</SignAssembly>
<DelaySign>$(PerformDelaySign)</DelaySign>
<AssemblyOriginatorKeyFile>$(SigningKeyPath)</AssemblyOriginatorKeyFile>
</PropertyGroup>
2015-12-27 17:18:31 +00:00
<!-- Only add the PDB files in Debug Configuration -->
2015-12-26 22:44:43 +00:00
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>none</DebugType>
<AllowedReferenceRelatedFileExtensions>none</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>full</DebugType>
<AllowedReferenceRelatedFileExtensions>.pdb</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
2015-12-27 17:18:31 +00:00
<!-- Only run code analysis manually -->
<PropertyGroup>
<RunCodeAnalysis>false</RunCodeAnalysis>
</PropertyGroup>
2015-12-26 22:44:43 +00:00
</Project>