Git in Visual Studio Team Services, Visual Studio 2012 Project - cannot deploy from assembly

Can commit and synchronize in a Git project, Visual Studio 2012 Express (Update 2).

When I put the build queue (Team Services - it’s not clear what to enter in the “build solution”, I tried the full path to the .sln file, the project file

enter image description here

Typical error (I tried many values):

Exception Message: The project file 'C:\Users ick\Documents\Visual Studio 2012\Projects\myproject\myproject.csproj' was not found. (type FileNotFoundException) Exception Stack Trace: at System.Activities.Statements.Throw.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation) TF270003: Failed to copy. Ensure the source directory C:\a\bin exists and that you have the appropriate permissions. 

Where on earth does he get the path "c: \ a \ bin" from?

Any ideas how I can make this work?

+4
source share
2 answers

According to this guide :

Open your team project in your web browser.

enter image description here

Find the solution, and then copy the path to the clipboard so that you can paste it into the Assembly Solution field of the assembly definition shown above.

enter image description here

+7
source

You put the relative path in the solution file, in my case this is:

enter image description here

c: \ a is the build agent validation path.

+2
source

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


All Articles