-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
47 lines (30 loc) · 1.42 KB
/
Directory.Build.props
File metadata and controls
47 lines (30 loc) · 1.42 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
38
39
40
41
42
43
44
45
46
47
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyVersion>10.6.0.0</AssemblyVersion>
<FileVersion>10.6.0.0</FileVersion>
<Version>10.6.0</Version>
<Authors>Andreas Nägeli</Authors>
<PackageProjectUrl>https://genhttp.org/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Kaliumhexacyanoferrat/GenHTTP</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591,CS1587,CS1572,CS1573</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)\Resources\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All" />
</ItemGroup>
</Project>