2024-04-05 11:11:32 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="../Devolutions.IronRdp/Devolutions.IronRdp.csproj" />
|
2024-04-09 10:13:12 -04:00
|
|
|
|
2024-04-10 00:18:31 +09:00
|
|
|
<!--
|
|
|
|
|
System.Drawing.Common NuGet package is only supported on Windows operating systems.
|
|
|
|
|
One of the recommended alternatives include ImageSharp.
|
|
|
|
|
|
|
|
|
|
https://learn.microsoft.com/en-us/dotnet/api/system.drawing?view=net-8.0
|
|
|
|
|
-->
|
2025-03-07 05:00:39 +00:00
|
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />
|
2024-04-09 10:13:12 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-04-05 11:11:32 -04:00
|
|
|
</Project>
|