Reputation: 1989
A client has given my company a Visual Studio project that I've told is using Azure and I've been told to get it working ("debugable") in Visual Studio. I've not used anything with Azure before, so this is all new to me. I downloaded the Azure SDK and have opened the project in Visual Studio. I'm getting multiple errors when I try to rebuild it. It looks like I'm missing .dll files. I've searched online and can't find reference to those files. My guess is that something related to Azure isn't installed, but I'm not sure how to find it. Can someone take a look at the errors I'm getting and suggest what the problem is and how to fix it?
The most common errors seem to reference missing dll's like this "Scfx.Core.WebApi\bin\Debug\Scfx.Core.WebApi.dll' could not be found".
Upvotes: 1
Views: 65
Reputation: 26
Your projects are not rebuilding because (as Jonesopolis said) it looks like you are using VS2013, but you need VS2015.
Once you have the correct version of Visual Studio it will probably compile, but if it does not then see this question for more help.
Upvotes: 1