Stephen York
Stephen York

Reputation: 1429

Visual Studio 2015 CSC errors

I've been coding away without any issues and I found I needed to update some nuget packages and during the process my C: ran out of space. Now that I've cleared up I'm just getting two bizarre errors, not with my code though:

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.       

I've tried restarting VS and I'm running update 3 Anyone know what's going on?

Upvotes: 1

Views: 943

Answers (1)

PhiseySt
PhiseySt

Reputation: 158

I was helped by updating of libraries Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Microsoft.Net.Compilers with packages.config to later versions

<?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>     

Upvotes: 2

Related Questions