mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
30 lines
929 B
XML
30 lines
929 B
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</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AWSSDK.Core" Version="3.7.105.1" />
|
|
<PackageReference Include="AWSSDK.EC2" Version="3.7.122" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="AWS\AWSConnectionForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="DSS\SSConnectionForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|