42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFrameworks>net472;netcoreapp3.1;net6.0-windows;net6.0</TargetFrameworks>
|
|||
|
<Version>2.2.1</Version>
|
|||
|
<Authors>Mark Heath & Contributors</Authors>
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
<Description>NAudio, an audio library for .NET</Description>
|
|||
|
<PackageProjectUrl>https://github.com/naudio/NAudio</PackageProjectUrl>
|
|||
|
<PackageTags>C# .NET audio sound</PackageTags>
|
|||
|
<RepositoryUrl>https://github.com/naudio/NAudio</RepositoryUrl>
|
|||
|
<Copyright>© Mark Heath 2023</Copyright>
|
|||
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|||
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|||
|
<PackageLicenseFile>license.txt</PackageLicenseFile>
|
|||
|
<SignAssembly>true</SignAssembly>
|
|||
|
<AssemblyOriginatorKeyFile>..\NAudioStrongNameKey.snk</AssemblyOriginatorKeyFile>
|
|||
|
<PackageIcon>naudio-icon.png</PackageIcon>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\NAudio.Asio\NAudio.Asio.csproj" />
|
|||
|
<ProjectReference Include="..\NAudio.Core\NAudio.Core.csproj" />
|
|||
|
<ProjectReference Include="..\NAudio.Midi\NAudio.Midi.csproj" />
|
|||
|
<ProjectReference Include="..\NAudio.Wasapi\NAudio.Wasapi.csproj" />
|
|||
|
<ProjectReference Include="..\NAudio.WinMM\NAudio.WinMM.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup Condition=" '$(TargetFramework)' != 'net6.0' ">
|
|||
|
<ProjectReference Include="..\NAudio.WinForms\NAudio.WinForms.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Include="..\license.txt">
|
|||
|
<Pack>True</Pack>
|
|||
|
<PackagePath></PackagePath>
|
|||
|
</None>
|
|||
|
<None Include="..\naudio-icon.png">
|
|||
|
<Pack>True</Pack>
|
|||
|
<PackagePath></PackagePath>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|