-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbagpipe.csproj
39 lines (34 loc) · 1.16 KB
/
bagpipe.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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<Platforms>x86</Platforms>
<ApplicationIcon>icon.ico</ApplicationIcon>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Debug\**" />
<Compile Remove="minilzo\**" />
<Compile Remove="Release\**" />
<EmbeddedResource Remove="Debug\**" />
<EmbeddedResource Remove="minilzo\**" />
<EmbeddedResource Remove="Release\**" />
<None Remove="Debug\**" />
<None Remove="minilzo\**" />
<None Remove="Release\**" />
<Page Remove="Debug\**" />
<Page Remove="minilzo\**" />
<Page Remove="Release\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="gong-wpf-dragdrop" Version="2.4.3" />
<PackageReference Include="MahApps.Metro" Version="2.4.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="minilzo\minilzo.vcxproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>