-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCynthMusic.csproj
85 lines (73 loc) · 2.45 KB
/
CynthMusic.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
79
80
81
82
83
84
85
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<Version>1.3</Version>
<Platforms>AnyCPU;x86</Platforms>
</PropertyGroup>
<PropertyGroup>
<LangVersion>9.0</LangVersion>
<Company>Corelium INC</Company>
<Description>A highly useful music app!</Description>
<Copyright>All Rights Reserved @ Corelium INC</Copyright>
<Authors>Corelium INC</Authors>
</PropertyGroup>
<ItemGroup>
<None Remove="cynth.png" />
<None Remove="favicon.ico" />
<None Remove="language.json" />
<None Remove="record.png" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="language.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="1.1.0" />
<PackageReference Include="NAudio" Version="2.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Linq.Async" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CynthCore\CynthCore.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="CoreliumYouTubeKit">
<HintPath>..\..\CoreliumYouTubeKit\bin\Debug\netcoreapp3.1\CoreliumYouTubeKit.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Resource Include="cynth.png" />
<Resource Include="favicon.ico" />
<Resource Include="record.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="Views\DownloadBox.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\ColorBox.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\ListBox.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="Views\DownloadBox.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Views\ColorBox.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Views\ListBox.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
</Project>