lab5_file_types.csproj 430 B

123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="CsvHelper" Version="31.0.2" />
  10. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  11. </ItemGroup>
  12. </Project>