-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
31 lines (26 loc) · 1.39 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project>
<PropertyGroup>
<ProjectType Condition="'$(MSBuildProjectExtension)' == '.vcxproj'">VisualCppProject</ProjectType>
<ProjectType Condition="'$(MSBuildProjectExtension)' == '.csproj'">CSharpProject</ProjectType>
</PropertyGroup>
<PropertyGroup>
<RootPath>$(MSBuildThisFileDirectory)</RootPath>
</PropertyGroup>
<PropertyGroup Condition="'$(ProjectType)' == 'VisualCppProject'">
<NativeOutputPath>$(RootPath)bin\$(Platform)\$(Configuration)\</NativeOutputPath>
<NativeIntermediatePath>$(RootPath)obj\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</NativeIntermediatePath>
</PropertyGroup>
<PropertyGroup Condition="'$(ProjectType)' == 'CSharpProject'">
<ProjectDir>$(RootPath)</ProjectDir>
<BaseIntermediateOutputPath>$(RootPath)\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<BaseOutputPath>$(RootPath)\bin\</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(ProjectType)' == 'CSharpProject' And '$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(ProjectType)' == 'VisualCppProject'">
<OutDir>$(NativeOutputPath)</OutDir>
<IntDir>$(NativeIntermediatePath)</IntDir>
</PropertyGroup>
</Project>