在vs2015中构建失败,没有错误

时间:2016-09-10 05:45:15

标签: visual-studio asp.net-core asp.net-core-1.0

我有一个我在Visual Studio 2015中创建的ASP.NET核心1.0项目(更新3)。如果我尝试在VS中构建项目,我在输出窗口中得到以下内容,并且错误列表中没有错误:

int[] to = { R.id.text_id, R.id.text_name };

SimpleAdapter adapter = new SimpleAdapter(this, aList, R.layout.list_item, from, to);

但是,如果我使用dotnet CLI命令(1>------ Build started: Project: QuickStartIdentiyServer4, Configuration: Debug Any CPU ------ ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== )构建项目,它会构建并运行得很好。

更新: 显然,当将Visual Studio作为Admin运行时,.net core无法正常工作。你会认为一切都应该像管理员一样工作,我猜不是......去看看。

2 个答案:

答案 0 :(得分:2)

这种事情可能发生的原因太多了。诊断问题的最简单方法是将选项下的构建输出详细程度更改为详细。这可能有助于您走上正轨:

enter image description here

关于.Net Core和ASP Core发生的这类事情。我注意到project.json依赖项json片段有点bug,特别是如果你开始重命名项目并更改它们的文件系统位置。

如果您在下面的诊断中看到,您知道有一些悬空参考问题:

Done building target "_GetDependencyFragmentFiles" in project "<<?YOUR_CORE_PROJECT?>>.xproj" -- FAILED

答案 1 :(得分:0)

可能是您没有看到构建错误。转到“错误列表”窗口,然后更改“显示生成的问题”和“#39;来自&#39; Build + Intellisense &#39;的框到&#39; 仅限构建&#39;并尝试再次建立。

enter image description here

看看这是否有帮助。