44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
|
<Project Sdk="MSBuild.Sdk.Extras">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFrameworks>netstandard2.0;uap10.0.18362</TargetFrameworks>
|
|||
|
<Version>2.2.1</Version>
|
|||
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|||
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|||
|
<Authors>Mark Heath</Authors>
|
|||
|
<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 2023</Copyright>
|
|||
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|||
|
<PackageIcon>naudio-icon.png</PackageIcon>
|
|||
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<!-- needed for perfomance profiling unit tests -->
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|||
|
<DebugType>full</DebugType>
|
|||
|
<DebugSymbols>true</DebugSymbols>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\NAudio.Core\NAudio.Core.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'uap10.0.18362' ">
|
|||
|
<DefineConstants>UAP;NETFX_CORE</DefineConstants>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Include="..\naudio-icon.png">
|
|||
|
<Pack>True</Pack>
|
|||
|
<PackagePath></PackagePath>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|