tags:

views:

17

answers:

1

hello friends, when I build asp.net mVC applciation in TFS Server

I am getting this errors

Compling sources for any CUP/Release

Project TFSBuild.proj is building 'A.sln' with default traget

what is this casue?

thanks

A: 

Looks like you got downvoted because you didn't provide any detail about your environment such as the version of TFS, etc (and I see you have a low acceptance rate too).

Anyway, it looks like you're using TFS2008/5 so open the TFSBuild.proj file from source control and look for something in it like this:

<SolutionToBuild Include="$(BuildProjectFolderPath)/A.sln">
  <Targets></Targets>
  <Properties></Properties>
</SolutionToBuild>

Change the A.sln to the name of your MVC solution and then try again. Don't forget that the path to the solution will be relative to where the TFSBuild.proj file is located.

Richard Banks