-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuay Code.csproj
More file actions
45 lines (39 loc) · 1.48 KB
/
Quay Code.csproj
File metadata and controls
45 lines (39 loc) · 1.48 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>Quay_Code</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets\Quay Logo Framed 3.ico</ApplicationIcon>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>0.4.3</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\X_Pink.png" />
<None Remove="Assets\X_Red.png" />
<None Remove="Assets\X_White.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\Quay Logo Framed 3.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Emgu.CV" Version="4.7.0.5276" />
<PackageReference Include="Emgu.CV.Bitmap" Version="4.7.0.5276" />
<PackageReference Include="Emgu.CV.runtime.windows" Version="4.7.0.5276" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.77" />
<PackageReference Include="OpenCV" Version="2.4.11" />
<PackageReference Include="STH1123.ReedSolomon" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\X_Pink.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Assets\X_Red.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Assets\X_White.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>