File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 33
33
</PropertyGroup >
34
34
35
35
<PropertyGroup Condition =" '$(IsVisualBasic)' != 'true' AND '$(IsFsharp)' != 'true' " >
36
- <LangVersion >11 </LangVersion >
36
+ <LangVersion >9.0 </LangVersion >
37
37
38
38
<Major >0</Major >
39
39
<Minor >13</Minor >
Original file line number Diff line number Diff line change @@ -94,10 +94,7 @@ public override string OverheadImplementation
94
94
{
95
95
return $ "return default({ type . GetCorrectCSharpTypeName ( ) } );";
96
96
}
97
- return $ """
98
- System.Runtime.CompilerServices.Unsafe.SkipInit(out { type . GetCorrectCSharpTypeName ( ) } value);
99
- return value;
100
- """ ;
97
+ return $ "System.Runtime.CompilerServices.Unsafe.SkipInit(out { type . GetCorrectCSharpTypeName ( ) } value);\n return value;";
101
98
}
102
99
}
103
100
You can’t perform that action at this time.
0 commit comments