forked from naudio/NAudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAudio.Core.csproj
28 lines (24 loc) · 1.01 KB
/
NAudio.Core.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Mark Heath</Authors>
<Version>2.1.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\NAudioStrongNameKey.snk</AssemblyOriginatorKeyFile>
<PackageProjectUrl>https://github.com/naudio/NAudio</PackageProjectUrl>
<PackageTags>C# .NET audio sound</PackageTags>
<RepositoryUrl>https://github.com/naudio/NAudio</RepositoryUrl>
<Copyright>© Mark Heath 2022</Copyright>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>naudio-icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="..\naudio-icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>