-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MP3joiner.csproj
63 lines (54 loc) · 1.91 KB
/
MP3joiner.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<AssemblyVersion>1.0.0.70</AssemblyVersion>
<FileVersion>1.0.0.70</FileVersion>
<ApplicationIcon>logo (1).ico</ApplicationIcon>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="gong-wpf-dragdrop" Version="3.2.1" />
<PackageReference Include="MaterialDesignColors" Version="3.1.0" />
<PackageReference Include="MaterialDesignThemes" Version="5.1.0" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="NAudio.Core" Version="2.2.1" />
<PackageReference Include="NAudio.Lame" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<None Remove="biglogo.png" />
<None Remove="C:\Users\jimmy\.nuget\packages\naudio.lame\2.1.0\build\libmp3lame.64.dll" />
</ItemGroup>
<ItemGroup>
<Resource Include="biglogo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Content Include="logo (1).ico" />
</ItemGroup>
<ItemGroup>
<Content Include="logo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Page Update="MainWindow.xaml">
<CopyToOutputDirectory></CopyToOutputDirectory>
</Page>
</ItemGroup>
<ItemGroup>
<None Update="C:\Users\jimmy\.nuget\packages\naudio.lame\2.1.0\build\libmp3lame.32.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Update="C:\Users\jimmy\.nuget\packages\naudio.lame\2.1.0\build\libmp3lame.64.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>