mirror of https://github.com/stascorp/rdpwrap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<RootNamespace>RDPCheck</RootNamespace>
|
|
<AssemblyName>RDPCheck</AssemblyName>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>app.ico</ApplicationIcon>
|
|
<Description>WinForms RDP loopback connection tester — validates that RDP Wrapper is installed and accepting connections correctly.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="app.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RDPWrap\RDPWrap.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- COM interop for AxMsRdpClient2 — generated via:
|
|
tlbimp %SystemRoot%\System32\mstscax.dll /out:MSTSCLib.dll
|
|
Then reference it here:
|
|
<ItemGroup>
|
|
<Reference Include="MSTSCLib">
|
|
<HintPath>Interop\MSTSCLib.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="AxInterop.MSTSCLib">
|
|
<HintPath>Interop\AxInterop.MSTSCLib.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
-->
|
|
</Project>
|