-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPopCat.csproj
25 lines (22 loc) · 1015 Bytes
/
PopCat.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AudioSwitcher.AudioApi" Version="4.0.0-alpha5" />
<PackageReference Include="AudioSwitcher.AudioApi.CoreAudio" Version="4.0.0-alpha5" />
<PackageReference Include="Hardcodet.NotifyIcon.Wpf.NetCore" Version="1.0.18" />
<PackageReference Include="PInvoke.Kernel32" Version="0.7.78" />
<PackageReference Include="PInvoke.User32" Version="0.7.78" />
</ItemGroup>
<ItemGroup>
<None Remove="**\*.png;**\*.ico" />
<Resource Include="**\*.png;**\*.ico" />
</ItemGroup>
</Project>