Visual Studio Community 2015 Update Build Update 1

After changing from Visual Studio 2015 Enterprise to the Visual Studio 2015 community (Update 1), none of my projects are created.

The errors that I see in the error list are as follows:

  • The "Csc" task cannot be initialized using input parameters.

  • The Features option is not supported by the Csc task. The check parameter exists in the task, and this is a custom publication property of the instance.

Having googled extensively, I can't find anything useful.

+5
source share
2 answers

Somehow you disagree with your C # / VB compilers. Your project files are trying to pass a property that we added to the newer version of the compilers, but you are still using an older version of the compilers. It is unclear, based on your description, if all the projects that were broken, or just some. Things I would check:

  • If only some projects are not created, make sure that you do not have our NuGet packages for the compiler installed, but you have not completed the recovery.
  • If you had the experimental version of Roslyn compilers installed that you forgot about, make sure that it is still installed.
  • If all projects are not created (including you are building a completely new one), make sure that there is nothing strange in Extension Manager. If nothing happens, repair Visual Studio.
+3
source

Disable the Roslyn Insiders for VS 2015 extension, fix it for me.

+1
source

Source: https://habr.com/ru/post/1239642/


All Articles