-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
45 lines (40 loc) · 1.66 KB
/
Directory.Build.props
File metadata and controls
45 lines (40 loc) · 1.66 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
<Project>
<PropertyGroup>
<!-- Build configuration -->
<LangVersion>13.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net9.0;net10.0</TargetFrameworks>
<Nullable>annotations</Nullable>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<OutputType>Library</OutputType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<NoWarn>$(NoWarn);1591</NoWarn><!-- Missing XML comments -->
</PropertyGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<Authors>Bastian Eicher</Authors>
<Copyright>Copyright Bastian Eicher et al.</Copyright>
<RepositoryUrl>https://github.com/TypedRest/TypedRest-DotNet</RepositoryUrl>
<PackageProjectUrl>https://typedrest.net/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)..\icon.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<!-- Build-time dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All" />
</ItemGroup>
<!-- Global usings -->
<ItemGroup>
<Using Include="System.Text" />
<Using Include="System.Net" />
<Using Include="System.Security.Authentication" />
</ItemGroup>
</Project>