mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>Library</OutputType>
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
<Platforms>x64</Platforms>
|
|
<Configurations>Debug;Release;Debug Portable;Release Portable;Deploy to github</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Portable|x64'">
|
|
<Optimize>True</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AWSSDK.Core" Version="3.7.400.36" />
|
|
<PackageReference Include="AWSSDK.EC2" Version="3.7.409.3" />
|
|
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="AWS\AWSConnectionForm.cs" />
|
|
<Compile Update="CPS\CPSConnectionForm.cs" />
|
|
<Compile Update="DSS\SSConnectionForm.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|