einaregilsson / StopOnFirstBuildError

Visual Studio extension to stop solution build immediately after a projects fails to build.
http://einaregilsson.com/stop-build-on-first-error-in-visual-studio-2010/
51 stars 17 forks source link

VS 2019 support #13

Closed einaregilsson closed 5 years ago

ProfessorStrawberry commented 5 years ago

any reason you put the exact version number inside source.extension.vsixmanifest?

You could do it like so:

<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[11.0,16.0]" />

<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[11.0,)" DisplayName="Visual Studio core editor" />

einaregilsson commented 5 years ago

I changed it to be open ended. The extension has been published now.

ProfessorStrawberry commented 5 years ago

thank you