-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (26 loc) · 1.06 KB
/
Directory.Build.props
File metadata and controls
30 lines (26 loc) · 1.06 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
28
29
30
<Project>
<PropertyGroup>
<Version>4.3.0</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<InformationalVersion>$(Version)</InformationalVersion>
<TargetFramework>net9.0</TargetFramework>
<AnalysisLevel>9-all</AnalysisLevel>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<PublishReadyToRun>false</PublishReadyToRun>
<SelfContained>false</SelfContained>
<RollForward>LatestMinor</RollForward>
<Platforms>AnyCPU;x86;x64;ARM64</Platforms>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<Deterministic>true</Deterministic>
<CETCompat>false</CETCompat>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Authors>rampaa</Authors>
<RepositoryUrl>https://github.com/rampaa/JL</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
</Project>