forked from flipswitchingmonkey/FlexASIO_GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlexASIOGUI.csproj
28 lines (24 loc) · 1 KB
/
FlexASIOGUI.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>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon>installer\flexasiogui.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.8.0-alpha0098">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
<PackageReference Include="NAudio" Version="2.1.0" />
<PackageReference Include="Nett" Version="0.15.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0-rc.1.22426.10" />
</ItemGroup>
<ItemGroup>
<Reference Include="portaudio-sharp">
<HintPath>lib\Debug\portaudio-sharp.dll</HintPath>
</Reference>
</ItemGroup>
</Project>