forked from microsoft/cpprestsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRelease.Tests.settings
More file actions
27 lines (20 loc) · 1.09 KB
/
Release.Tests.settings
File metadata and controls
27 lines (20 loc) · 1.09 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Ensures that if this file changes it forces a rebuild -->
<PropertyGroup>
<MSBuildAllProjects>
$(MSBuildAllProjects);$(MSBuildThisFileFullPath)
</MSBuildAllProjects>
<!--EnableCPPAnalysis is always set false for test assemblies (but not for product assemblies).-->
<EnableCPPAnalysis Condition="'$(EnableCPPAnalysis)'==''">false</EnableCPPAnalysis>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)\Common.Build.settings" />
<PropertyGroup>
<CommonTestIncludeDir>$(TestRoot)\Common\utilities\include;$(TestRoot)\Common\UnitTestpp</CommonTestIncludeDir>
<CasablancaIncludeDir>$(BinariesDirectory)\inc;$(CasablancaIncludeDir)</CasablancaIncludeDir>
</PropertyGroup>
<!-- Target that can be used to easily strip the AppContainer requirement from a dll -->
<Target Name="StripAppContainerOnProjectDll">
<Exec Command="link /edit /appcontainer:no $(OutDir)\$(ProjectName).dll" />
</Target>
</Project>