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.
25 lines
877 B
25 lines
877 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<RootNamespace>RDPConf</RootNamespace>
|
|
<AssemblyName>RDPConf</AssemblyName>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>app.ico</ApplicationIcon>
|
|
<Description>WinForms configuration GUI for RDP Wrapper — manage concurrent session limits, RDP port, and security settings.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="app.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RDPWrap\RDPWrap.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- Optional embedded license text (copy from msi/rdpwrap.ini or assets before build) -->
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\license.txt" Condition="Exists('Resources\license.txt')" />
|
|
</ItemGroup>
|
|
</Project>
|