What are the differences among bugs, issues and tasks in TFS [closed]

For the Scrum TFS Process Template Bug– Any problem in existing functionality, or missing functionality. Defect in code or requirement, error which is not designed to be. Issue (Impediment)- Any problem which might block the development process, example : a third party driver you identified as dependency is not releasing on time, so it is … Read more

Why is TFS ignoring a project in my solution?

Your project doesn’t have appropriate Source Control Bindings! With the solution open, you’ll need to go to File -> Source Control -> Change Source Control to view the bindings for your projects. The failing one probably will show an “Unknown” or not binded status. You can then use that dialog to correct the binding and … Read more

Specify NuGet sources for build server to use with NuGet Package Restore?

With the current version of NuGet it’s possible to specify custom repositories in the solution’s NuGet.config file and enable package restore during a build. Having this NuGet.config file allowed us to automatically restore packages from internal repository under a TFS build without any other actions in the build definition: <configuration> <solution> <add key=”disableSourceControlIntegration” value=”true” /> … Read more

VS2013: Error Loading Solution (‘JavascriptWebExtensionsPackage did not load correctly’)

So — after posting this and adding that last screenshot (the No EditorOptionDefinition export… business) — I decided to google on that phrase as well (the other key phrases brought me nothing). It brought me to this page: No EditorOptionDefinition Export Found Error Which actually fixed the problem. In short: Close Visual Studio Open the … Read more