I am using Visual Studio 2013 and TFS 2013.
I had a problem creating my solution on a TFS build server.
My project successfully works on my local machine with all platforms (x86, x64 and ARM), but it does not work in Tfs Build for x64 and ARM platforms with the following error
App.xaml.cs (2): The type or namespace name 'BackgroundTasks' does not exist in the namespace MyApp (are you missing an assembly reference?)
My project is a universal Windows application with a portable class library for background tasks that are referenced in both Windows projects and Windows Phone. This portable class library also generates winmd (not dll) in the configuration manager in my Visual Studio. Any processor is supported for this project.
I installed Visual Studio 2013 on the build server and got the latest sources and was able to successfully build the solution on all platforms. But the build agent running on the same computer throws a build error, as mentioned earlier. I also tried to build an unsuccessful assembly definition source. It works successfully in VS2013.
I believe that this should be some kind of configuration change on the TFS Server / Build Server.
Any help would be greatly appreciated.
source
share