-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
44 lines (38 loc) · 1.71 KB
/
Directory.Build.props
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
<Project>
<!-- build -->
<PropertyGroup>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<LangVersion>preview</LangVersion>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<Nullable>enable</Nullable>
<TargetFramework>net9.0</TargetFramework>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<!-- build and versioning setup -->
<ManagePackageVersionsCentrally>True</ManagePackageVersionsCentrally>
<NuGetAudit>true</NuGetAudit>
<UseArtifactsOutput>true</UseArtifactsOutput>
<!-- sourcelink -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- nuget -->
<PropertyGroup>
<Authors>akiraveliara, dotnet/corefxlab DictionarySlim contributors</Authors>
<Company>DSharpPlus Contributors</Company>
<Description>A collection of collections and related types of varying usefulness.</Description>
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/DSharpPlus/Bundles</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/DSharpPlus/Bundles</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="../../LICENSE" Pack="true" PackagePath=""/>
<EmbeddedResource Include="../../README.md" Pack="true" PackagePath=""/>
<EmbeddedResource Include="../../img/logo.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>