diff --git a/build/Version.props b/build/Version.props
index ae9b61b8d14..b2f8d5265bd 100644
--- a/build/Version.props
+++ b/build/Version.props
@@ -6,9 +6,9 @@
5.16.2
4.7.1
9.12.0
- 6.0.1
+ 7.0.0
11.1.2
- 12.1.2
+ 13.0.0
6.5.3
5.6.1
1.4.0
diff --git a/src/Tgstation.Server.Client/Tgstation.Server.Client.csproj b/src/Tgstation.Server.Client/Tgstation.Server.Client.csproj
index af89800112b..6868098fa69 100644
--- a/src/Tgstation.Server.Client/Tgstation.Server.Client.csproj
+++ b/src/Tgstation.Server.Client/Tgstation.Server.Client.csproj
@@ -11,6 +11,7 @@
+
diff --git a/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs b/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs
index 358d20edb72..260a9c457d2 100644
--- a/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs
+++ b/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs
@@ -1027,7 +1027,7 @@ await ioManager.CopyDirectory(
if (postWriteHandler.NeedsPostWrite(src))
postWriteHandler.HandleWrite(dest);
- return Task.CompletedTask;
+ return ValueTask.CompletedTask;
},
ioManager.ConcatPath(
localRepoPath,
@@ -1080,7 +1080,7 @@ async ValueTask RunGitCommand(string args)
jobWaitTask = jobsTest.WaitForJob(repoResponse.ActiveJob, 300, false, null, cancellationToken);
}
- await Task.WhenAll(jobWaitTask, ddUpdateTask, dmUpdateTask);
+ await Task.WhenAll(jobWaitTask, ddUpdateTask.AsTask(), dmUpdateTask.AsTask());
var depsBytesTask = ioManager.ReadAllBytes(
ioManager.ConcatPath(repoPath, "dependencies.sh"),
@@ -1093,7 +1093,7 @@ async ValueTask RunGitCommand(string args)
if (postWriteHandler.NeedsPostWrite(src))
postWriteHandler.HandleWrite(dest);
- return Task.CompletedTask;
+ return ValueTask.CompletedTask;
},
ioManager.ConcatPath(
repoPath,
@@ -1120,7 +1120,7 @@ async ValueTask RunGitCommand(string args)
var byondJobTask = jobsTest.WaitForJob(byondJob.InstallJob, 60, false, null, cancellationToken);
- await Task.WhenAll(scriptsCopyTask, byondJobTask);
+ await Task.WhenAll(scriptsCopyTask.AsTask(), byondJobTask);
var compileJob = await instanceClient.DreamMaker.Compile(cancellationToken);