How to use .settings files in .NET core?
问题 I'm porting an application to .NET core which relies on a .settings file. Unfortunately, I can't find a way to read it from .NET core. Normally, adding the following lines to the .csproj would generate a TestSettings class that would let me read the settings. <ItemGroup> <None Include="TestSettings.settings"> <Generator>SettingsSingleFileGenerator</Generator> </None> </ItemGroup> Unfortunately, this no longer seems to do anything. I can't even verify that the SettingsSingleFileGenerator runs