-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPcBuilder.csproj
47 lines (40 loc) · 1.43 KB
/
PcBuilder.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<DebugType>embedded</DebugType>
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<ItemGroup>
<None Remove="Pages\cpu.svg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2957.106" />
<PackageReference Include="Npgsql" Version="9.0.2" />
<PackageReference Include="SharpVectors" Version="1.8.4.2" />
</ItemGroup>
<ItemGroup>
<None Include="Data/cpu.csv" />
<None Include="Data/motherboard.csv" />
<None Include="Data/memory.csv" />
<None Include="Data/power_supply.csv" />
<None Include="Data/video_card.csv" />
<None Include="Data/case.csv" />
<None Include="Data/internal_hard_drive.csv" />
<None Include="Data/cpu_cooler.csv" />
<None Include="Data/case_fan.csv" />
<None Include="Data/os.csv" />
</ItemGroup>
<ItemGroup>
<Resource Include="Pages\cpu.svg" />
</ItemGroup>
</Project>