Skip to main content


I am working on TFS build automation and deployment of K2 project. I wrote a custom code for it. The code is working fine and I am able to compile the project but it is not able to create package. I don't see any package file in the output location. I am not getting any kind of exception and after saving the package. I am using below code to compile and save the package. I am running this code on my local machine and I don't have K2 client installed on it. But when I run same code on the K2 server it creates package. Am I missing anything on my m/c.?


 


    results = project.Compile();


    environmentManager = GetEnvironmentManager();


    package = GetDeploymentPackage(project, environmentManager);


    package.Save(OutputLocation, "K2 Deployment Package");


 


Be the first to reply!

Reply