-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (24 loc) · 933 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
30 lines (24 loc) · 933 Bytes
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
<Project>
<!-- artifacts -->
<PropertyGroup>
<ArtifactsPath>$(MSBuildThisFileDirectory)out</ArtifactsPath>
<ArtifactsPublishOutputName>pub</ArtifactsPublishOutputName>
<ArtifactsPackageOutputName>pkg</ArtifactsPackageOutputName>
<IsPackable>false</IsPackable> <!-- default false -->
</PropertyGroup>
<!-- paths -->
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<OutRoot>$(RepoRoot)out/</OutRoot>
<EngRoot>$(RepoRoot)eng/</EngRoot>
<SrcRoot>$(RepoRoot)src/</SrcRoot>
</PropertyGroup>
<PropertyGroup>
<IsTestProject Condition="$(MSBuildProjectName.Contains('Test'))">true</IsTestProject>
</PropertyGroup>
<PropertyGroup>
<RunSettingsFilePath>$(SrcRoot)test.runsettings</RunSettingsFilePath>
</PropertyGroup>
<Import Project="$(EngRoot)Common.props" />
<Import Project="$(EngRoot)Test.props" Condition="'$(IsTestProject)' == 'true'" />
</Project>