-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (35 loc) · 1.68 KB
/
Copy pathDirectory.Build.props
File metadata and controls
37 lines (35 loc) · 1.68 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
37
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);NU5104</NoWarn>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<Authors>Pierre G. Boutquin</Authors>
<Company>Boutquin Computer Consulting</Company>
<PackageProjectUrl>https://github.com/boutquin/Boutquin.Storage</PackageProjectUrl>
<RepositoryUrl>https://github.com/boutquin/Boutquin.Storage</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<MinVerTagPrefix>v</MinVerTagPrefix>
<Copyright>Copyright © 2019-2026, Boutquin Computer Consulting. All rights reserved.</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageVersion>$(PackageVersion)$(MinVerBuildMetadata)</PackageVersion>
<Version>$(PackageVersion)</Version>
<MinVerDefaultPreReleaseIdentifiers>beta</MinVerDefaultPreReleaseIdentifiers>
<!-- Deterministic builds & SourceLink -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
</Project>