作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的 program.cs 文件和 ASP.NetCORE 2.0 版本有一些问题
这是我的代码
public class Program
{
public static void Main(string[] args)
{
BuildWebHost(args).Run();
}
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseKestrel()
.UseStartup<Startup>()
.UseConfiguration(new ConfigurationBuilder().AddCommandLine(args).Build())
.Build();
}
当我运行项目时,出现以下错误。
System.FormatException: 'Could not parse the JSON file. Error on line number '0': ''.'
如何解决?
最佳答案
您的 appSettings.json
文件(或您使用的任何配置)的格式是否正确?如果开头有无效字符,WebHost.CreateDefaultBuilder
将无法正确解析它。当复制/粘贴在文件开头添加空格时,我看到了这个问题。
关于c# - 无法解析 JSON 文件,Progam.cs asp.net core 中出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46399015/
我的 program.cs 文件和 ASP.NetCORE 2.0 版本有一些问题 这是我的代码 public class Program { public static void
Fatal Error: Mismatch between the program and library build versions detected. The library used 3.0
所以这两个错误是警告:传递“pushPost”的参数 1 使指针来自整数而不进行强制转换 [-Wint-conversion]注意:预期为“char *”,但参数的类型为“char” 我一直在论坛上查
我是一名优秀的程序员,十分优秀!