我正在尝试创建一个宁静的api,并将其部署到Azure App Service。我在Nancy上使用ASP.NET。
在我的本地计算机上运行良好,但是,当我将其部署到Azure App Service并使用Continuous WebJobs时,出现“无法配置名称空间保留,当部署到Azure App Service时”错误消息。
我尝试将CreateAutomatically = true设置为,但是此错误仍然存在。
任何指南都将不胜感激。
HostConfiguration hostConfigs = new HostConfiguration()
{
UrlReservations = new UrlReservations() { CreateAutomatically = true },
};
using (var host = new NancyHost(hostConfigs, new Uri("http://localhost:8080")))
{
host.Start();
Console.WriteLine("NancyFX Stand alone test application.");
Console.WriteLine("Press enter to exit the application");
Console.ReadLine();
}
我正在按照上面的说明学习本教程和经过修改的程序。 https://github.com/auth0-blog/nancy/tree/master/NancyStandalone