-
Notifications
You must be signed in to change notification settings - Fork 0
/
BGM Player.csproj
78 lines (70 loc) · 2.92 KB
/
BGM Player.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows10.0.22621.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon Condition="$(Configuration)==Debug Or $(Configuration)==Release">icon\music.ico</ApplicationIcon>
<ApplicationIcon Condition="$(Configuration)==Me">icon\dusk_arknights.ico</ApplicationIcon>
<AssemblyName>BGM Player</AssemblyName>
<RootNamespace>bgmPlayer</RootNamespace>
<StartupObject></StartupObject>
<IsPublishable>False</IsPublishable>
<Authors>nduc</Authors>
<Configurations>Debug;Release;Me</Configurations>
<RepositoryUrl>https://github.com/nduc03/BGM-Player</RepositoryUrl>
<Description>Music playback app for looping BGM</Description>
<SignAssembly>False</SignAssembly>
<NeutralLanguage>en-US</NeutralLanguage>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<NoWin32Manifest>true</NoWin32Manifest>
<AssemblyVersion Condition="$(Configuration)==Debug Or $(Configuration)==Release">2.3.0</AssemblyVersion>
<AssemblyVersion Condition="$(Configuration)==Me">2.3.2</AssemblyVersion>
<UseWindowsForms>True</UseWindowsForms>
<WindowsPackageType>None</WindowsPackageType>
<Platforms>x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Me|x64'">
<Optimize>True</Optimize>
<DefineConstants>RELEASE</DefineConstants>
<DebugType>none</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<ItemGroup>
<None Remove="icon\dusk_arknights.ico" />
<None Remove="icon\schwarz.ico" />
<None Remove="img\pause.png" />
<None Remove="img\play.png" />
<None Remove="img\schwarz.jpg" />
<None Remove="img\schwarz_blured.png" />
<None Remove="img\sound.jpg" />
<None Remove="img\sound.png" />
<None Remove="img\stop.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NAudio.Core" Version="2.2.1" />
<PackageReference Include="NAudio.Extras" Version="2.2.1" />
<PackageReference Include="NAudio.Vorbis" Version="1.5.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="icon\music.ico" />
<Resource Include="icon\dusk_arknights.ico" />
<Resource Include="icon\schwarz.ico" />
<Resource Include="img\pause.png" />
<Resource Include="img\play.png" />
<Resource Include="img\schwarz.jpg" />
<Resource Include="img\schwarz_blured.png" />
<Resource Include="img\sound.jpg" />
<Resource Include="img\stop.png" />
</ItemGroup>
</Project>