mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
rename dll to ExternalConnectors.dll for possible other future implementations refactor namespaces in dll
27 lines
742 B
XML
27 lines
742 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>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AWSSDK.Core" Version="3.7.3.30" />
|
|
<PackageReference Include="AWSSDK.EC2" Version="3.7.38.2" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="AWS\AWSConnectionForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="TSS\SSConnectionForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|