Reputation: 219
I have a git repository with two visual studio projects. When azure tries deploying the code it fails with following error:
Unable to determine which solution file to build. D:\home\site\repository\project1.sln, D:\home\site\repository\project2.sln
How do i let Azure know which project to deploy?
Upvotes: 1
Views: 54
Reputation: 219
In the root of your git repo create a .deployment file. Add the following:
[config]
project = project\project1.csproj
Upvotes: 1