Fix accidental C# 8.0 usage.
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
<Platforms>x64</Platforms>
|
<Platforms>x64</Platforms>
|
||||||
|
<LangVersion>7.3</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="..\RobustToolbox\MSBuild\Robust.DefineConstants.targets" />
|
<Import Project="..\RobustToolbox\MSBuild\Robust.DefineConstants.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace Content.IntegrationTests
|
|||||||
{
|
{
|
||||||
protected override ClientIntegrationInstance StartClient(ClientIntegrationOptions options = null)
|
protected override ClientIntegrationInstance StartClient(ClientIntegrationOptions options = null)
|
||||||
{
|
{
|
||||||
options ??= new ClientIntegrationOptions();
|
options = options ?? new ClientIntegrationOptions();
|
||||||
// ReSharper disable once RedundantNameQualifier
|
// ReSharper disable once RedundantNameQualifier
|
||||||
options.ClientContentAssembly = typeof(Client.EntryPoint).Assembly;
|
options.ClientContentAssembly = typeof(Client.EntryPoint).Assembly;
|
||||||
options.SharedContentAssembly = typeof(Shared.EntryPoint).Assembly;
|
options.SharedContentAssembly = typeof(Shared.EntryPoint).Assembly;
|
||||||
@@ -33,7 +33,7 @@ namespace Content.IntegrationTests
|
|||||||
|
|
||||||
protected override ServerIntegrationInstance StartServer(ServerIntegrationOptions options = null)
|
protected override ServerIntegrationInstance StartServer(ServerIntegrationOptions options = null)
|
||||||
{
|
{
|
||||||
options ??= new ServerIntegrationOptions();
|
options = options ?? new ServerIntegrationOptions();
|
||||||
options.ServerContentAssembly = typeof(Server.EntryPoint).Assembly;
|
options.ServerContentAssembly = typeof(Server.EntryPoint).Assembly;
|
||||||
options.SharedContentAssembly = typeof(Shared.EntryPoint).Assembly;
|
options.SharedContentAssembly = typeof(Shared.EntryPoint).Assembly;
|
||||||
return base.StartServer(options);
|
return base.StartServer(options);
|
||||||
|
|||||||
Reference in New Issue
Block a user