TFS 2012 collector team how to specify package location

when the specified parameters on the msbuild command line are given arguments in the assembly definition,

/ p: Configuration = Release / p: VisualStudioVersion = 11.0 / P: UsePublishProfile = True / p: PublishProfile = CI / p: DeployOnBuild = true / p: DesktopBuildPackageLocation = .. \ Deployment \ Files \ Package \ SubcontractGenerator.zip

msbuild seems to ignore all options except / p: DeployOnBuild = true, so just create a package in the droplocation_publishedWebsites \ blah blah blah file.

My question is how to make the build process just create a package? because the CI publishing profile specified there is for package creation only.

+4
source share
1 answer

I suggest you install Visual Studio 2012 on your build server to run Ms Build with these arguments

0
source

Source: https://habr.com/ru/post/1501023/


All Articles