mirror of https://github.com/naudio/NAudio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Version>2.0.0-beta2</Version>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<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 2020</Copyright>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NAudio.WinMM\NAudio.WinMM.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Gui\Fader.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<Compile Update="Gui\PanSlider.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<Compile Update="Gui\Pot.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<Compile Update="Gui\ProgressLog.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<Compile Update="Gui\VolumeSlider.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<Compile Update="Gui\WaveViewer.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|