.NET-Core 2.0 发布目录中,不存在 runtimeconfig.json
文件问题,导致
System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
请问在 .csproj 中需要如何配置。
在 .csproj
文件中添加
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
后解决问题。