-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathDirectory.Build.props
23 lines (19 loc) · 1.28 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
<Project>
<PropertyGroup>
<SolutionDir Condition="'$(SolutionDir)' == ''">$(MSBuildThisFileDirectory)</SolutionDir>
<WindowsSDKDesktopARMSupport Condition="'$(Platform)'=='ARM'">true</WindowsSDKDesktopARMSupport>
<ChakraCoreDebuggerDir>$(MSBuildThisFileDirectory)</ChakraCoreDebuggerDir>
<ChakraCoreDebuggerDepsDir>$(MSBuildThisFileDirectory)deps\</ChakraCoreDebuggerDepsDir>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<ProjectName Condition="'$(ProjectName)'==''">$(MSBuildProjectName)</ProjectName>
<!-- Visual Studio forces using 'Win32' for the 'x86' platform. -->
<BaseIntDir Condition="'$(Platform)' != 'Win32'">$(MSBuildThisFileDirectory)build\obj\$(Platform)\$(Configuration)</BaseIntDir>
<BaseIntDir Condition="'$(Platform)' == 'Win32'">$(MSBuildThisFileDirectory)build\obj\x86\$(Configuration)</BaseIntDir>
<BaseOutDir Condition="'$(Platform)' != 'Win32'">$(MSBuildThisFileDirectory)build\bin\$(Platform)\$(Configuration)</BaseOutDir>
<BaseOutDir Condition="'$(Platform)' == 'Win32'">$(MSBuildThisFileDirectory)build\bin\x86\$(Configuration)</BaseOutDir>
<IntDir>$(BaseIntDir)\$(ProjectName)\</IntDir>
<OutDir>$(BaseOutDir)\</OutDir>
<GeneratedFilesDir>$(IntDir)Generated Files\</GeneratedFilesDir>
</PropertyGroup>
</Project>