24 lines
680 B
XML
24 lines
680 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<!--<Platform>x64</Platform>-->
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Models\Models.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FuzzySharp" Version="2.0.2" />
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.71" />
|
|
<PackageReference Include="NetMQ" Version="4.0.1.13" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|