File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Flow.Launcher.Test/Plugins Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net6.0-windows</ TargetFramework >
4+ <TargetFrameworks >net6.0-windows;net5.0-windows</ TargetFrameworks >
55 <ProjectGuid >{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}</ProjectGuid >
66 <UseWPF >true</UseWPF >
77 <OutputType >Library</OutputType >
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public async Task GivenVariousJsonText_WhenVariousNamingCase_ThenExpectNotNullRe
7676 [ TestCaseSource ( typeof ( JsonRPCPluginTest ) , nameof ( ResponseModelsSource ) ) ]
7777 public async Task GivenModel_WhenSerializeWithDifferentNamingPolicy_ThenExpectSameResult_Async ( JsonRPCQueryResponseModel reference )
7878 {
79- var camelText = JsonSerializer . Serialize ( reference , new ( ) { PropertyNamingPolicy = JsonNamingPolicy . CamelCase } ) ;
79+ var camelText = JsonSerializer . Serialize ( reference , new JsonSerializerOptions ( ) { PropertyNamingPolicy = JsonNamingPolicy . CamelCase } ) ;
8080
8181 var pascalText = JsonSerializer . Serialize ( reference ) ;
8282
You can’t perform that action at this time.
0 commit comments