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

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">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
@@ -171,13 +171,13 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="CefSharp.Common">
<Version>99.2.120</Version>
<Version>100.0.230</Version>
</PackageReference>
<PackageReference Include="CefSharp.OffScreen">
<Version>99.2.120</Version>
<Version>100.0.230</Version>
</PackageReference>
<PackageReference Include="CefSharp.WinForms">
<Version>99.2.120</Version>
<Version>100.0.230</Version>
</PackageReference>
<PackageReference Include="DiscordRichPresence">
<Version>1.0.175</Version>
@@ -207,7 +207,7 @@
<Version>1.0.115.5</Version>
</PackageReference>
<PackageReference Include="System.Text.Json">
<Version>6.0.2</Version>
<Version>6.0.3</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View File

@@ -19053,12 +19053,18 @@ speechSynthesis.getVoices();
callback: (action) => {
if (action !== 'confirm') {
this.gameLogDisabled = !this.gameLogDisabled;
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled);
configRepository.setBool(
'VRCX_gameLogDisabled',
this.gameLogDisabled
);
}
}
});
} else {
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled);
configRepository.setBool(
'VRCX_gameLogDisabled',
this.gameLogDisabled
);
}
};