Files
MTSC/MTSC-TestServer/MTSC-TestServer.csproj
T
amacocian 7cf668e3c1 Implemented a unified message sending method.
Implemented broadcasting handlers to test encrypted communication.
2019-07-19 09:48:42 +03:00

25 lines
711 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RootNamespace>MTSC_TestServer</RootNamespace>
<StartupObject>MTSC_TestServer.Program</StartupObject>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Prefer32Bit>false</Prefer32Bit>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\MTSC\MTSC.csproj" />
</ItemGroup>
</Project>