我正在使用asp.net core 2x和angular 5构建Web应用程序,在开发/调试模式期间,所有内容都得到了很好的构建。但是当我尝试在visual studio 2017中使用发布模式发布它时出现此错误.please帮我解决这个问题。我的代码中没有使用它,但它存在。装饰器不支持函数调用,但makeParamDecorator'被称为“可注射的”#39; '注射'电话' makeParamDecorator'。请帮忙。谢谢。Screenshot of my error message
答案 0 :(得分:10)
您需要在控制台上运行此命令: node node_modules / webpack / bin / webpack.js --env.prod
然后你会得到所有问题的清单,并需要解决所有问题,有人会像:
ERROR in navmenu.component.html: Property 'auth' is protected and only accessible within class 'NavMenuComponent' and its subclasses.
另一个案例:
ERROR in Error at estados.component.html(19,72): Expected 0 arguments, but got 1.
Error at home.component.html(8,12): Property 'selectedCharacter' does not exist on type 'HomeComponent'. Did you mean 'selectedCharacters'?
每个错误都有一个直接的解决方案,你需要解决它们。