14 lines
542 B
XML
14 lines
542 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="CsvHelper" Version="33.1.0" />
|
|
<PackageReference Include="FuzzySharp" Version="2.0.2" />
|
|
<PackageReference Include="Google.OrTools" Version="9.7.2996" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.8" />
|
|
</ItemGroup>
|
|
</Project> |