2021-06-03 11:51:03 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
<AssemblyName>Integrations.Source</AssemblyName>
|
|
|
|
<RootNamespace>Integrations.Source</RootNamespace>
|
2021-06-11 12:52:30 -04:00
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
|
|
<Platforms>AnyCPU</Platforms>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Prerelease' ">
|
|
|
|
<Optimize>true</Optimize>
|
2021-06-03 11:51:03 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="RconSharp" Version="2.0.1" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\SharedLibraryCore\SharedLibraryCore.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|