1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Webserver - Upgraded EmbedIO to remove illegal byte-order-mark (BOM)

This commit is contained in:
Robert 2022-10-12 22:31:26 +02:00
parent d4bd44b504
commit 4a6721c97e
2 changed files with 4 additions and 3 deletions

View File

@ -35,7 +35,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="EmbedIO" Version="3.4.3" />
<PackageReference Include="EmbedIO" Version="3.5.0" />
<PackageReference Include="HidSharp" Version="2.1.0" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="LiteDB" Version="5.0.12" />
@ -56,6 +56,7 @@
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="Unosquare.Swan.Lite" Version="3.1.0" />
</ItemGroup>
<ItemGroup>

View File

@ -107,8 +107,8 @@ public class AutoRunProvider : IAutoRunProvider
/// <inheritdoc />
public async Task EnableAutoRun(bool recreate, int autoRunDelay)
{
// if (Constants.BuildInfo.IsLocalBuild)
// return;
if (Constants.BuildInfo.IsLocalBuild)
return;
// Create or remove the task if necessary
bool taskCreated = false;