我一直在编码,没有任何问题,我发现我需要更新一些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,有人知道发生了什么吗?
发布于 2017-07-03 19:24:52
通过使用packages.config将库Microsoft.CodeDom.Providers.DotNetCompilerPlatform,Microsoft.Net.Compilers更新到更高版本,我得到了帮助
<?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> https://stackoverflow.com/questions/40840917
复制相似问题