-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.csproj
33 lines (27 loc) · 954 Bytes
/
web.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>True</UseWindowsForms>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Program_console.cs" />
<Compile Remove="Program_forms.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="HtmlParserSharp">
<HintPath>..\HtmlParserSharp\HtmlParserSharp\bin\Debug\net7.0\HtmlParserSharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="autogenerated\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.8" />
<PackageReference Include="SkiaSharp.Views" Version="2.88.8" />
</ItemGroup>
</Project>