| 1 |
<Project Sdk="Microsoft.NET.Sdk"> |
| 2 |
|
| 3 |
<PropertyGroup> |
| 4 |
<OutputType>Exe</OutputType> |
| 5 |
<TargetFramework>net10.0</TargetFramework> |
| 6 |
<ImplicitUsings>enable</ImplicitUsings> |
| 7 |
<Nullable>enable</Nullable> |
| 8 |
<PublishAot>true</PublishAot> |
| 9 |
<InvariantGlobalization>true</InvariantGlobalization> |
| 10 |
</PropertyGroup> |
| 11 |
|
| 12 |
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
| 13 |
<PlatformTarget>ARM64</PlatformTarget> |
| 14 |
<DebugType>none</DebugType> |
| 15 |
</PropertyGroup> |
| 16 |
|
| 17 |
<ItemGroup> |
| 18 |
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" /> |
| 19 |
</ItemGroup> |
| 20 |
|
| 21 |
</Project> |