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