Lately we’ve been using the new „Packages“-feature of Visual Studio Online to manage our own NuGet-Packages. The feature rellay „kicks ass“ when integrating your own packages within your organization. For starters Microsoft gives you a great How-To get started with Package Management in VSTS and TFS helping you setting up the package management and fetching your […]
Kategorie: TFS / VSO
Git Cheat Sheet
I just collected some git-commands in this cheat sheet you would want to use as a Visual Studio Developer who is new to git and for a start only wants to get some work done. Visual Studio 2017 already has a good basic support for git but when it comes to merge-conflicts or managing different branches […]
Create a Visual Studio Online Build Definition for .Net Core
Finally the new preview for .Net Core Build Tasks are available. Basically they are a wrapper for the dotnet.exe file and provide a possibility to execute the dotnet commands build publish restore test run The Visual Studio Online .Net Core tasks provide the possibility to select the parameters from a drop down, insert a reference […]
PowerShell Logging mit TFS/VSO – write-host richtig verwenden
Logging mit PowerShell ist im Zusammenspiel mit dem Team Foundation Server (TFS) / Visual Studio Online (VSO) etwas anders zu handhaben, als bei „klassischen“, „einfachen“ PowerShell Skripten. Während in der klassischen Konsole ein Host vorhanden ist, in dem die Ausgabe mit Write-Host erfolgen kann gibt es beim Ausführen von Remote PowerShell über das Release-Management des […]
Ordner aus Git und Visual Studio Code ausschließen
In Visual Studio Code ist die Integration in Git „noch“ nicht so schön, wie im klassischen Visual Studio. Stellt sich nun die Frage: Wie kann ich z.B. verhindern, dass mein „node_modules“ Ordner mit eingecheckt wird Ich möchte zwei Dinge tun. nodes_modules Ordner aus Visual Studio Code ausblenden nodes_modules Ordner nicht in Git einchecken Visual Studio […]
Business Value Points
Eine der schwierigsten Aufgaben eines Product Owners ist die Priorisierung der Features seines Produktes. Hierbei kommt schnell der Geschäftswert (auch Businesswert, Business Value genannt) mit ins Spiel. Nicht jedes Unternehmen ist marktgetrieben und kann leicht feststellen, welchen Geldwert ein neues Feature haben wird. Der Wert eines Features wird dann oft auch nicht zuletzt durch den Zeitpunkt des […]
System.InvalidOperationException: The project service does not contain the specified project
Problem: When configuring my Build Service on TFS 2015 I received the following error message when building my SharePoint WSP with the build service. C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\SharePointTools\Microsoft.VisualStudio.SharePoint.targets (387, 5) The „ValidatePackage“ task failed unexpectedly. System.InvalidOperationException: The project service does not contain the specified project: c7bc030b-17d9-42eb-8dd4-a7c0d3258203. at Microsoft.VisualStudio.SharePoint.Tasks.ValidatePackage.OnCheckParameters() at Microsoft.VisualStudio.SharePoint.Tasks.BuildTask.Execute() at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute() at Microsoft.Build.BackEnd.TaskBuilder.<ExecuteInstantiatedTask>d__26.MoveNext() I […]