-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathOpusSharp.Core.csproj
More file actions
32 lines (30 loc) · 1.34 KB
/
OpusSharp.Core.csproj
File metadata and controls
32 lines (30 loc) · 1.34 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>OpusSharp.Core</AssemblyName>
<IsPackable>true</IsPackable>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;</TargetFrameworks>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>OpusSharp.Core</PackageId>
<Description>Standard library for OpusSharp.</Description>
<Version>$(OpusSharpCoreVersion)</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Copyright>MIT</Copyright>
<Authors>SineVector241</Authors>
<PackageProjectUrl>$(PackageProjectUrl)</PackageProjectUrl>
<RepositoryUrl>$(RepositoryUrl)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<NoWarn>$(NoWarn);nullable</NoWarn>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" Link="README.md" />
<None Include="..\LICENSE.txt" Pack="true" PackagePath="\" Link="LICENSE.txt" />
</ItemGroup>
</Project>