23 lines
622 B
XML
23 lines
622 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net5.0-windows10.0.19041.0</TargetFramework>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Include="..\.editorconfig" Link=".editorconfig" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\RBG.Helpers\RBG.Helpers.csproj" />
|
|||
|
<ProjectReference Include="..\RBG_Server.Core\RBG_Server.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|