21 lines
491 B
XML
21 lines
491 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="NAudio" Version="2.2.1" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="sharpFRN">
|
|||
|
<HintPath>..\sharpFRN\bin\Release\net8.0-windows\sharpFRN.dll</HintPath>
|
|||
|
</Reference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|