-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpress-Inventory.csproj
44 lines (39 loc) · 1.58 KB
/
Express-Inventory.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>Express_Inventory</RootNamespace>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\A_shout.png" />
<None Remove="Resources\Basket.png" />
<None Remove="Resources\Box.png" />
<None Remove="Resources\FilledLogo.png" />
<None Remove="Resources\Logo.png" />
<None Remove="Resources\LogoText.png" />
<None Remove="Resources\pexels-pixabay-257636.jpg" />
<None Remove="Resources\pexels-tiger-lily-4483610.jpg" />
<None Remove="Resources\StockWarehouse.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiveCharts.Wpf" Version="0.9.7" />
<PackageReference Include="MaterialDesignThemes" Version="4.3.0" />
<PackageReference Include="MySqlConnector" Version="2.1.6" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\A_shout.png" />
<Resource Include="Resources\Basket.png" />
<Resource Include="Resources\Box.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\FilledLogo.png" />
<Resource Include="Resources\Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\LogoText.png" />
<Resource Include="Resources\pexels-pixabay-257636.jpg" />
<Resource Include="Resources\pexels-tiger-lily-4483610.jpg" />
<Resource Include="Resources\StockWarehouse.jpg" />
</ItemGroup>
</Project>