8000 Resolve some build warnings · Depressurizer/Depressurizer@5dc08bb · GitHub
[go: up one dir, main page]

Skip to content

Commit 5dc08bb

Browse files
committed
Resolve some build warnings
1 parent 6842fd6 commit 5dc08bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Depressurizer.Core/Helpers/Steam.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ public static class Steam
369369

370370
public static async void GrabBanner(int appId)
371371
{
372-
GrabBanners(new int[] { appId });
372+
await Task.Run(() => GrabBanners(new int[] { appId }));
373373
}
374374

375375
/// <summary>

src/Depressurizer/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
1111
<dependentAssembly>
1212
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
13-
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
13+
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="13.0.0.0" />
1414
</dependentAssembly>
1515
<dependentAssembly>
1616
<assemblyIdentity name="Sentry.Protocol" publicKeyToken="fba2ec45388e2af0" culture="neutral" />

0 commit comments

Comments
 (0)
0