mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
26 lines
945 B
XML
26 lines
945 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
<Import Project="..\MSBuild\Robust.Engine.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputType>WinExe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\MSBuild\Robust.DefineConstants.targets" />
|
|
<Target Name="RobustAfterBuild" AfterTargets="Build" />
|
|
<Import Project="..\MSBuild\Robust.Engine.targets" />
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2020.3.0" />
|
|
<PackageReference Include="System.Drawing.Common" Version="5.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\cefglue\CefGlue\CefGlue.csproj" />
|
|
<ProjectReference Include="..\Robust.Client\Robust.Client.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|