-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (26 loc) · 1.34 KB
/
Copy pathDirectory.Build.props
File metadata and controls
26 lines (26 loc) · 1.34 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>1.3</Version>
<VersionPrefix>1.3</VersionPrefix>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<InformationalVersion>1.3</InformationalVersion>
<Authors>numbereleven-a</Authors>
<AssemblyTitle>WPR Helper</AssemblyTitle>
<Product>WPR Helper</Product>
<Description>Portable Windows tool for focused WPR traces with optional target application launch.</Description>
<RepositoryUrl>https://github.com/numbereleven-a/WprHelper</RepositoryUrl>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NuGetAudit>true</NuGetAudit>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<DebugType Condition="'$(Configuration)' == 'Release'">embedded</DebugType>
<DebugSymbols Condition="'$(Configuration)' == 'Release'">true</DebugSymbols>
<PathMap Condition="'$(Configuration)' == 'Release'">$(MSBuildProjectDirectory)=.</PathMap>
<!-- Instance service APIs are intentionally injectable; xUnit test names intentionally favor readability. -->
<NoWarn>$(NoWarn);CA1822;CA1707;CA1861</NoWarn>
</PropertyGroup>
</Project>