Created
April 12, 2019 16:56
-
-
Save KirillOsenkov/2330e9b358f8801d176e84dffd2e98ee to your computer and use it in GitHub Desktop.
SDK-style Directory.Build.props for common output directory
This file contains hidden or 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
<Project> | |
<PropertyGroup> | |
<SrcRoot>$(MSBuildThisFileDirectory)</SrcRoot> | |
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(SrcRoot)\</SolutionDir> | |
<Configuration Condition="$(Configuration) == ''">Debug</Configuration> | |
</PropertyGroup> | |
<PropertyGroup> | |
<TargetFramework>net472</TargetFramework> | |
<DebugType>embedded</DebugType> | |
<LangVersion>latest</LangVersion> | |
<!--<ProduceReferenceAssembly>True</ProduceReferenceAssembly>--> | |
<SignAssembly Condition="'$(SignAssembly)' == ''">true</SignAssembly> | |
<DefineConstants Condition="'$(SignAssembly)' == 'true'">$(DefineConstants);SIGN;</DefineConstants> | |
<AssemblyOriginatorKeyFile>$(SrcRoot)\key.snk</AssemblyOriginatorKeyFile> | |
<AssemblySearchPaths>{RawFileName};{HintPathFromItem};{TargetFrameworkDirectory}</AssemblySearchPaths> | |
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | |
<_FindDependencies>false</_FindDependencies> | |
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | |
</PropertyGroup> | |
<PropertyGroup> | |
<BinariesFolder>$(SrcRoot)bin</BinariesFolder> | |
<CommonIntermediateOutputRoot>$(SrcRoot)obj\</CommonIntermediateOutputRoot> | |
<BaseIntermediateOutputPath>$(CommonIntermediateOutputRoot)$(Configuration)\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | |
<IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath> | |
<AssemblyInfoPath Condition="'$(AssemblyInfoPath)' == ''">$(BaseIntermediateOutputPath)GlobalAssemblyInfo.cs</AssemblyInfoPath> | |
<CommonOutputDirectory>$(BinariesFolder)\$(Configuration)</CommonOutputDirectory> | |
<BuildToCommonOutputDirectory Condition="'$(BuildToCommonOutputDirectory)' == ''">true</BuildToCommonOutputDirectory> | |
<OutputPath Condition="'$(OutputPath)' == ''">$(BinariesFolder)\$(Configuration)\$(MSBuildProjectName)</OutputPath> | |
<OutputPath Condition="'$(BuildToCommonOutputDirectory)' == 'true'">$(CommonOutputDirectory)\</OutputPath> | |
<OutDir>$(OutputPath)</OutDir> | |
<TargetFrameworkMonikerAssemblyAttributesPath>$(IntermediateOutputPath)AssemblyAttributes.cs</TargetFrameworkMonikerAssemblyAttributesPath> | |
</PropertyGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment