You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just upload the github CodeContracts.MSBuild, runs my fallcreatorupdate app with some code contract in it but the debugger just fails when reaching some false assert.
How did I don wrong. Is there some other stuff to install in VS 2017?
Thanks
The text was updated successfully, but these errors were encountered:
@YvesPflieger You need to add the nuget package to your project.
From package manager:
Install-Package CodeContracts.MSBuild
From .Net CLI:
dotnet add package CodeContracts.MSBuild
It needs to be done for all projects that use contracts. You should see that the package is referenced in your proj files (*.csproj or other).
This package only provides MSBuild bindings and no Visual Studio IDE support.
I just upload the github CodeContracts.MSBuild, runs my fallcreatorupdate app with some code contract in it but the debugger just fails when reaching some false assert.
How did I don wrong. Is there some other stuff to install in VS 2017?
Thanks
The text was updated successfully, but these errors were encountered: