forked from microsoft/xbox-live-developer-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.props
More file actions
29 lines (26 loc) · 957 Bytes
/
custom.props
File metadata and controls
29 lines (26 loc) · 957 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Choose>
<When Condition="$(MSBuildProjectName.EndsWith('Test')) or $(MSBuildProjectName.EndsWith('Tests'))">
<PropertyGroup>
<OutputSubDir>Tests</OutputSubDir>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<OutputSubDir>bin\$(MSBuildProjectName)</OutputSubDir>
</PropertyGroup>
</Otherwise>
</Choose>
<PropertyGroup Label="Version">
<VersionMajor>2022</VersionMajor>
<VersionMinor>03</VersionMinor>
<VersionInfoProductName>Xbox Live Dev Tools</VersionInfoProductName>
</PropertyGroup>
<PropertyGroup>
<RunStyleCop>true</RunStyleCop>
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
<RunCodeAnalysis>true</RunCodeAnalysis>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
</Project>