|
29 | 29 | <BuildToolsTargetInputs>$(MSBuildThisFileFullPath);$(MSBuildThisFileDirectory)build.proj</BuildToolsTargetInputs> |
30 | 30 | <BuildToolsTargetOutputs>$(BuildToolsInstallSemaphore)</BuildToolsTargetOutputs> |
31 | 31 | </PropertyGroup> |
| 32 | + |
| 33 | + <!-- Set default Configuration and Platform --> |
| 34 | + <PropertyGroup> |
| 35 | + <Configuration Condition="'$(Configuration)' ==''">Debug</Configuration> |
| 36 | + <Platform Condition="'$(Platform)'==''">AnyCPU</Platform> |
| 37 | + </PropertyGroup> |
| 38 | + |
| 39 | + <!-- Setup Default symbol and optimization for Configuration --> |
| 40 | + <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
| 41 | + <DebugSymbols Condition="'$(DebugSymbols)' == ''">true</DebugSymbols> |
| 42 | + <Optimize Condition="'$(Optimize)' == ''">false</Optimize> |
| 43 | + <DebugType Condition="'$(DebugType)' == ''">full</DebugType> |
| 44 | + <DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants> |
| 45 | + </PropertyGroup> |
| 46 | + <PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
| 47 | + <DebugSymbols Condition="'$(DebugSymbols)' == ''">true</DebugSymbols> |
| 48 | + <Optimize Condition="'$(Optimize)' == ''">true</Optimize> |
| 49 | + <DebugType Condition="'$(DebugType)' == ''">pdbonly</DebugType> |
| 50 | + <DefineConstants>$(DefineConstants);TRACE</DefineConstants> |
| 51 | + </PropertyGroup> |
| 52 | + |
| 53 | + <!-- Disable some standard properties for building our projects --> |
| 54 | + <PropertyGroup> |
| 55 | + <NoStdLib>true</NoStdLib> |
| 56 | + <NoExplicitReferenceToStdLib>true</NoExplicitReferenceToStdLib> |
| 57 | + <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences> |
| 58 | + <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> |
| 59 | + </PropertyGroup> |
| 60 | + |
| 61 | + <!-- Setup some common paths --> |
| 62 | + <PropertyGroup> |
| 63 | + <CommonPath>$(SourceDir)Common\src</CommonPath> |
| 64 | + <CommonTestPath>$(SourceDir)Common\tests</CommonTestPath> |
| 65 | + </PropertyGroup> |
| 66 | + |
| 67 | + <!-- Setup the default output and intermediate paths --> |
| 68 | + <PropertyGroup> |
| 69 | + <BaseOutputPath>$(ProjectDir)bin\</BaseOutputPath> |
| 70 | + <BaseOutputPathWithConfig>$(BaseOutputPath)$(Configuration)\</BaseOutputPathWithConfig> |
| 71 | + <BaseOutputPathWithConfig Condition="'$(Platform)' != 'AnyCPU'">$(BaseOutputPath)$(Platform)\$(Configuration)\</BaseOutputPathWithConfig> |
| 72 | + <OutputPath>$(BaseOutputPathWithConfig)$(MSBuildProjectName)\</OutputPath> |
| 73 | + |
| 74 | + <BaseIntermediateOutputPath>$(BaseOutputPath)obj\</BaseIntermediateOutputPath> |
| 75 | + <IntermediateOutputPath>$(BaseIntermediateOutputPath)$(MSBuildProjectName)\$(Configuration)\</IntermediateOutputPath> |
| 76 | + <IntermediateOutputPath Condition="'$(Platform)' != 'AnyCPU'">$(BaseIntermediateOutputPath)$(MSBuildProjectName)\$(Configuration)\$(Platform)\</IntermediateOutputPath> |
| 77 | + |
| 78 | + <TestPath>$(TestWorkingDir)$(MSBuildProjectName)\$(Configuration)\</TestPath> |
| 79 | + <TestPath Condition="'$(Platform)' != 'AnyCPU'">$(TestWorkingDir)$(MSBuildProjectName)\$(Configuration)\$(Platform)\</TestPath> |
| 80 | + </PropertyGroup> |
| 81 | + |
| 82 | + <PropertyGroup> |
| 83 | + <!-- Work around known Dev14 bug - see |
| 84 | + https://connect.microsoft.com/VisualStudio/feedback/details/1000796/connect-file-uap-props-not-found-cant-build-a-portable-lib-on-vs14 |
| 85 | + --> |
| 86 | + <_WindowsKitBinPath>$(MSBuildProgramFiles32)\Windows Kits\8.1\bin\x86</_WindowsKitBinPath> |
| 87 | + <_WindowsPhoneKitBinPath>$(MSBuildProgramFiles32)\Windows Phone Kits\8.1\bin</_WindowsPhoneKitBinPath> |
| 88 | + <MakePriExeFullPath>$(_WindowsKitBinPath)\makepri.exe</MakePriExeFullPath> |
| 89 | + <MakeAppxExeFullPath>$(_WindowsKitBinPath)\makeappx.exe</MakeAppxExeFullPath> |
| 90 | + <SignAppxPackageExeFullPath>$(_WindowsKitBinPath)\signtool.exe</SignAppxPackageExeFullPath> |
| 91 | + <MakePriExtensionPath>$(_WindowsPhoneKitBinPath)\x86\MrmEnvironmentExtDl.dll</MakePriExtensionPath> |
| 92 | + <MakePriExtensionPath_x64>$(_WindowsPhoneKitBinPath)\x64\MrmEnvironmentExtDl.dll</MakePriExtensionPath_x64> |
| 93 | + </PropertyGroup> |
32 | 94 | </Project> |
0 commit comments