chore(.NET): update deps

This commit is contained in:
Natsumi
2022-04-25 18:17:46 +12:00
parent 54e8e98533
commit 7d0425d61f
2 changed files with 13 additions and 7 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup> <PropertyGroup>
@@ -171,13 +171,13 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="CefSharp.Common"> <PackageReference Include="CefSharp.Common">
<Version>99.2.120</Version> <Version>100.0.230</Version>
</PackageReference> </PackageReference>
<PackageReference Include="CefSharp.OffScreen"> <PackageReference Include="CefSharp.OffScreen">
<Version>99.2.120</Version> <Version>100.0.230</Version>
</PackageReference> </PackageReference>
<PackageReference Include="CefSharp.WinForms"> <PackageReference Include="CefSharp.WinForms">
<Version>99.2.120</Version> <Version>100.0.230</Version>
</PackageReference> </PackageReference>
<PackageReference Include="DiscordRichPresence"> <PackageReference Include="DiscordRichPresence">
<Version>1.0.175</Version> <Version>1.0.175</Version>
@@ -207,7 +207,7 @@
<Version>1.0.115.5</Version> <Version>1.0.115.5</Version>
</PackageReference> </PackageReference>
<PackageReference Include="System.Text.Json"> <PackageReference Include="System.Text.Json">
<Version>6.0.2</Version> <Version>6.0.3</Version>
</PackageReference> </PackageReference>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+8 -2
View File
@@ -19053,12 +19053,18 @@ speechSynthesis.getVoices();
callback: (action) => { callback: (action) => {
if (action !== 'confirm') { if (action !== 'confirm') {
this.gameLogDisabled = !this.gameLogDisabled; this.gameLogDisabled = !this.gameLogDisabled;
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled); configRepository.setBool(
'VRCX_gameLogDisabled',
this.gameLogDisabled
);
} }
} }
}); });
} else { } else {
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled); configRepository.setBool(
'VRCX_gameLogDisabled',
this.gameLogDisabled
);
} }
}; };