error MSB3202
Hi all, I am having the following issue when I try to build on TeamCity I get the following error:
13:26:35]: build.xml.teamcity
[13:26:35]: [build.xml.teamcity] Build
[13:26:35]: [Build] MSBuild
[13:26:35]: [MSBuild] C:\Program Files (x86)\TeamCity\buildAgent\work\3d9585e2234288ec\build.xml(8, 3): error MSB3202: The project file "C:\inetpub\wwwroot\BuildTest" was not found.
my configuration is getting the project from svn with VCS connction settings that part is good, and I am using runner type MSBuild and my Build file path: has build.xml and this is the xml:
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutPutDir>C:\inetpub\wwwroot\BuildTest</OutPutDir>
</PropertyGroup>
<Target Name="Build">
<MSBuild Projects="$(OutPutDir)"/>
</Target>
</Project>
<PropertyGroup>
<OutPutDir>C:\inetpub\wwwroot\BuildTest</OutPutDir>
</PropertyGroup>
<Target Name="Build">
<MSBuild Projects="$(OutPutDir)"/>
</Target>
</Project>
the $(OutPutDir) is on my server where the teamcity installed but as you see the error i get it tells was not found! please help.....
Please sign in to leave a comment.
TeamCity build agent could be another machine. By default build agent checkouts your project to a directory under agent. If you build script depends on the specified folder on the machine, please set checkout directory to the expected project location.
For more details, please take a look at
http://confluence.jetbrains.net/display/TCD6/Build+Checkout+Directory