Files
EonaCat.RdpColorizer/EonaCat.RdpColorizer/EonaCat.RdpColorizer.csproj
T
2026-08-06 22:29:07 +02:00

29 lines
991 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<AssemblyName>EonaCat.RdpColorizer</AssemblyName>
<RootNamespace>EonaCat.RdpColorizer</RootNamespace>
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="icon.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<!-- Used to read another process's command line (mstsc.exe /v:target)
so the watcher can identify which server an RDP window belongs to. -->
<PackageReference Include="EonaCat.Json" Version="2.2.5" />
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
</Project>