-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrary_DB.csproj
More file actions
41 lines (35 loc) · 1.23 KB
/
Library_DB.csproj
File metadata and controls
41 lines (35 loc) · 1.23 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\bakgrund1.jpg" />
<None Remove="Resources\bakgrund2.jpg" />
<None Remove="Resources\icon1.png" />
<None Remove="Resources\icon2.png" />
<None Remove="Resources\icon4.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MaterialDesignThemes" Version="4.7.1" />
<PackageReference Include="MySql.Data" Version="8.0.31" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Images\icon2.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\Images\icon4.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Images\bakgrund1.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\Images\icon1.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>