内容目录
Method 1:
Add the following to the .csproj file:
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Globalization.Invariant" Value="true" />
</ItemGroup>
Method 2:
Add the following to the .runtimeconfig.json file:
{
"runtimeOptions": {
"configProperties": {
"System.Globalization.Invariant": true
}
}
}
/*
"configProperties": {
"System.Globalization.Invariant": true
}
*/
文章评论