19 lines
828 B
XML
Executable file
19 lines
828 B
XML
Executable file
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DotImaging.BitmapInterop" Version="5.2.0" />
|
|
<PackageReference Include="DotImaging.Image" Version="5.2.0" />
|
|
<PackageReference Include="DotImaging.IO" Version="5.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.15"/>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|