mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Trying to get res:// and usr:// cookies to wrok * Update CefGlue * Bump CEF * Seal types in WebView Fixes warnings * Move most of client cleanup to game thread. This used to run in the windowing thread which broke CEF shutdown, most notably cookie saving. * "flushcookies" command for CEF. * Remove unecessary res:// code. * Fix tests * More request handler fixes. * Good thing I don't have to care about commit quality in PRs like this.
25 lines
857 B
XML
25 lines
857 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
<Import Project="..\MSBuild\Robust.Engine.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<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="Robust.Natives.Cef" Version="102.0.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\cefglue\CefGlue\CefGlue.csproj" />
|
|
<ProjectReference Include="..\Robust.Client\Robust.Client.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|