-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (34 loc) · 1.38 KB
/
Copy pathDirectory.Build.props
File metadata and controls
36 lines (34 loc) · 1.38 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
31
32
33
34
35
36
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<!--
Disambiguate IviCli.Domain.Timeout from System.Threading.Timeout, which is
pulled in implicitly via the System.Threading global using. The alias makes
`Timeout` unambiguously refer to the domain Value Object.
-->
<ItemGroup Label="Global type aliases">
<Using Include="IviCli.Domain.Timeout" Alias="Timeout" />
</ItemGroup>
<PropertyGroup Label="Assembly metadata">
<Authors>ivi-cli contributors</Authors>
<Product>IVI-CLI</Product>
<Company>ivi-cli</Company>
<Copyright>Copyright (c) ivi-cli contributors</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<!--
Default version for local builds. release.yml overrides this via
`-p:Version=<X.Y.Z>` derived from the pushed `v*` tag, so the
published nupkg / binary metadata matches the GitHub Release.
-->
<Version>0.2.6</Version>
</PropertyGroup>
</Project>