-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAudioRouter.csproj
More file actions
21 lines (18 loc) · 951 Bytes
/
AudioRouter.csproj
File metadata and controls
21 lines (18 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- <OutputType>WinExe</OutputType>Use this for WPF or Windows Forms apps -->
<!-- <TargetFramework>net5.0</TargetFramework> -->
<TargetFramework>net8.0-windows</TargetFramework><!--Use this for WPF or Windows Forms apps-->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<RuntimeIdentifier>win-x64</RuntimeIdentifier><!--Specify the appropriate runtime here-->
<!-- Disable trimming - NAudio's DirectSoundOut requires COM support which doesn't work with trimming in .NET 8 -->
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
</Project>