Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/333.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Visual studio 2015 Visual Studio 2015 CSC错误_Visual Studio 2015 - Fatal编程技术网

Visual studio 2015 Visual Studio 2015 CSC错误

Visual studio 2015 Visual Studio 2015 CSC错误,visual-studio-2015,Visual Studio 2015,我一直在编码,没有任何问题,我发现我需要更新一些nuget包,在这个过程中,我的C:空间用完了。现在我已经澄清了,我只是得到了两个奇怪的错误,而不是我的代码: The "Csc" task could not be initialized with its input parameters. The "ChecksumAlgorithm" parameter is not supported by the "Csc" task. Verify the parameter e

我一直在编码,没有任何问题,我发现我需要更新一些nuget包,在这个过程中,我的C:空间用完了。现在我已经澄清了,我只是得到了两个奇怪的错误,而不是我的代码:

The "Csc" task could not be initialized with its input parameters.          

The "ChecksumAlgorithm" parameter is not supported by the "Csc" task. Verify the parameter exists on the task, and it is a settable public instance property.       
我已尝试重新启动VS,正在运行更新3
有人知道发生了什么吗?

我得到了帮助,将库Microsoft.CodeDom.Providers.DotNetCompilerPlatform、Microsoft.Net.Compilers和packages.config更新到更高版本

<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="1.0.3" targetFramework="net451" />
<package id="Microsoft.Net.Compilers" version="2.0.1" targetFramework="net451" developmentDependency="true" />
</packages>     


MSBuild已断开。很难想象这与空间不足或清理有关。更有可能的是Nuget软件包向您的项目文件中添加了内容。再次删除它们以查看是否可以清除错误,如有必要,请查看项目文件。checksum算法参数是一个是的,我认为这有点巧合。我最终重新创建了这个项目,并小心地添加了所有的Owin和WebApi包,以获得一个干净的应用程序。似乎可以工作,但有问题的“编译器”软件包在NuGet软件包管理器中列出,可用于更新。我不敢升级。