-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (17 loc) · 728 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
20 lines (17 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Version>$([System.DateTime]::UtcNow.ToString("yyyy.MM.ddHH.mmss"))</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NeutralLanguage>en</NeutralLanguage>
<Product>PKMDS</Product>
<Company>BondCodes</Company>
<Authors>codemonkey85</Authors>
<Copyright>codemonkey85</Copyright>
<SourceRevisionId>$([System.DateTime]::UtcNow.ToString("yyMMddHHmmss"))</SourceRevisionId>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
</Project>