]> git.deb.at Git - rhonda/impostor.git/commitdiff
Clean up after merged PRs
authorAeonLucid <aeonlucid@outlook.com>
Thu, 22 Oct 2020 12:04:49 +0000 (14:04 +0200)
committerAeonLucid <aeonlucid@outlook.com>
Thu, 22 Oct 2020 12:04:49 +0000 (14:04 +0200)
src/Impostor.Api/Impostor.Api.csproj
src/Impostor.Server/Net/Manager/GameManager.cs
src/Impostor.Server/Net/Redirector/NodeLocatorRedis.cs

index 071adf1894d2584a4f67cb628b9d466d0e2ce1aa..3ff2516256b9eabf424600d8199b9e62ff33b23a 100644 (file)
@@ -5,28 +5,21 @@
         <DebugType Condition=" '$(Configuration)' == 'Release' ">None</DebugType>
         <CodeAnalysisRuleSet>ProjectRules.ruleset</CodeAnalysisRuleSet>
         <LangVersion>9</LangVersion>
-    </PropertyGroup>
-
-    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
-      <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
-    </PropertyGroup>
-
-    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
-      <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+        <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
     </PropertyGroup>
 
     <ItemGroup>
-      <PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0" />
-      <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0-rc.1.20451.14" />
-      <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0-rc.1.20451.14" />
-      <PackageReference Include="Nullable" Version="1.3.0">
-        <PrivateAssets>all</PrivateAssets>
-        <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
-      </PackageReference>
-      <PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
-        <PrivateAssets>all</PrivateAssets>
-        <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
-      </PackageReference>
+        <PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.0"/>
+        <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0-rc.1.20451.14"/>
+        <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0-rc.1.20451.14"/>
+        <PackageReference Include="Nullable" Version="1.3.0">
+            <PrivateAssets>all</PrivateAssets>
+            <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+        </PackageReference>
+        <PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
+            <PrivateAssets>all</PrivateAssets>
+            <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+        </PackageReference>
     </ItemGroup>
 
 </Project>
\ No newline at end of file
index ccb5d3766044ca52ff61a8e00790134a5113ec57..a47fc9d1da55d636bc96814607bc458b1527a028 100644 (file)
@@ -4,7 +4,6 @@ using System.Collections.Generic;
 using System.Linq;
 using System.Net;
 using System.Threading.Tasks;
-
 using Impostor.Api;
 using Impostor.Api.Events;
 using Impostor.Api.Events.Managers;
@@ -15,7 +14,6 @@ using Impostor.Server.Data;
 using Impostor.Server.Extensions;
 using Impostor.Server.Net.Redirector;
 using Impostor.Server.Net.State;
-
 using Microsoft.Extensions.DependencyInjection;
 using Microsoft.Extensions.Logging;
 using Microsoft.Extensions.Options;
index ec036660fad66aaa8cca0a1fa4e3c2c7586517c1..0b6fdff81ee8222eb205775aa2270c4a3eeef9f2 100644 (file)
@@ -1,7 +1,6 @@
 using System;
 using System.Net;
 using System.Threading.Tasks;
-
 using Microsoft.Extensions.Caching.Distributed;
 using Microsoft.Extensions.Logging;