-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDeejNG.csproj
More file actions
58 lines (51 loc) · 1.83 KB
/
Copy pathDeejNG.csproj
File metadata and controls
58 lines (51 loc) · 1.83 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>Square150x150Logo.scale-200.ico</ApplicationIcon>
<PlatformTarget>x64</PlatformTarget>
<Title>DeejNG</Title>
<PackageIcon>logo.png</PackageIcon>
<Version>1.1.1.59</Version>
<AssemblyVersion>1.1.1.59</AssemblyVersion>
<FileVersion>1.1.1.59</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="nul" />
<None Remove="Square150x150Logo.scale-200.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="Square150x150Logo.scale-200.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="2.0.1" />
<PackageReference Include="NAudio" Version="2.3.0" />
<PackageReference Include="NAudio.Core" Version="2.3.0" />
<PackageReference Include="NAudio.Extras" Version="2.3.0" />
<PackageReference Include="SkiaSharp" Version="3.119.2" />
<PackageReference Include="SkiaSharp.Views.WPF" Version="3.119.2" />
<PackageReference Include="System.IO.Ports" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<Compile Update="Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>