mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-12-23 12:26:46 +00:00
Some checks failed
CI / Check formatting (push) Has been cancelled
CI / Check typos (push) Has been cancelled
Coverage / Coverage Report (push) Has been cancelled
Release crates / Open release PR (push) Has been cancelled
Release crates / Release crates (push) Has been cancelled
CI / Checks [linux] (push) Has been cancelled
CI / Checks [macos] (push) Has been cancelled
CI / Checks [windows] (push) Has been cancelled
CI / Fuzzing (push) Has been cancelled
CI / Web Client (push) Has been cancelled
CI / FFI (push) Has been cancelled
CI / Success (push) Has been cancelled
Add RDCleanPath support for Devolutions.IronRDP .NET package
22 lines
674 B
XML
22 lines
674 B
XML
<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" />
|
|
|
|
<!--
|
|
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
|
|
-->
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|