-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundManager.csproj
More file actions
27 lines (25 loc) · 1.03 KB
/
Copy pathSoundManager.csproj
File metadata and controls
27 lines (25 loc) · 1.03 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>SoundManager</AssemblyName>
<ApplicationIcon>icon.ico</ApplicationIcon>
<RollForward>LatestMajor</RollForward>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile Condition="'$(Configuration)' != 'Debug'">true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<DebugType>none</DebugType>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<DebuggerSupport>false</DebuggerSupport>
</PropertyGroup>
<ItemGroup>
<Using Remove="System.Windows.Forms" />
<Using Remove="System.Drawing" />
<Resource Include="icon.ico" />
<PackageReference Include="NAudio" Version="2.2.1" />
</ItemGroup>
</Project>