私は K2 blackpearl プロジェクト ( Visual Studio 2010+K2 blackpearl+SQL Server 2008 ) に取り組んでいます。SVN のソース コード全体。継続的インテグレーション ツールとして TeamCity を使用しています。Web とデータベースの自動展開を完了しました。K2 の自動展開に取り組んでいるときは、MSBuild を使用して K2 パッケージを K2 サーバーに展開します
Msbuild ”Project Working Folder\obj\Debug\Deployment\ WorkflowName.msbuild" /p:TestOnly=True /p:Environment=Development
MSBuild を実行する前に、まずK2 展開パッケージを作成する必要があります。ここで問題が発生
します。
2. コーディングを使用してパッケージを作成できることがわかっただけなので、K2 展開パッケージを作成するためのコンソール アプリケーションを作成してみます。コードは Microsoft.Build DLL を参照する必要がありますが、コンソール プロジェクトへの Microsoft.Build 参照の追加はサポートされていません。そのため、クラス プロジェクトを作成し、以下のコードをクラスに配置しようとすると、クラスは正常に複雑になりますが、このクラス プロジェクトまたは DLL をコンソール プロジェクトに追加しようとすると、まだ同じ問題が発生します。System.Design、Microsoft.Build、Microsoft.Build.Framework、および Microsoft.Build.Utilities に関する 4 つの警告が表示されました。コンソールでパッケージ作成メソッドを実行する方法が見つかりませんでした。
K2 の自動展開の問題を解決するためのより良いアイデアまたは解決策はありますか?
エラー情報:
参照されているアセンブリ "…\bin\Debug\DeployPackageCreator.dll" は、"System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" に依存しているため、解決できませんでした。現在対象のフレームワーク「.NETFramework,Version=v4.0,Profile=Client」。ターゲット フレームワークにないアセンブリへの参照を削除するか、プロジェクトの再ターゲットを検討してください。
コードの詳細:
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using SourceCode.ProjectSystem;
using SourceCode.Workflow.Authoring;
using SourceCode.Framework.Deployment;
using System.IO;
using SourceCode.EnvironmentSettings.Client;
public string K2ConnectionString { get; set; }
public string SelectedEnvironment { get; set; }
public string OutputFolder { get; set; }
public string KPRXLocation { get; set; }
public string FolderName { get; set; }
private void SavePackage(string folderName, string kprxLocation, string outputFolder)
{
//Create a project to use for deployment, the project is the folder/solution
string tmpPath = Path.Combine(Path.GetTempPath(), Path.GetFileNameWithoutExtension(Path.GetTempFileName()));
Project project = new Project(folderName, tmpPath);
//Add the process as a projectfile.
Process processToDeploy = Process.Load(kprxLocation);
// Log load problems.
foreach (SourceCode.Framework.ObjectLoadException loadExceptions in processToDeploy.LoadErrors)
{
//Log.LogWarning("Load exception: {0}", loadExceptions.Message);
}
// Add process to the project.
AddProcess(project, processToDeploy);
//Do a test-compile
if (!TestCompile(project))
{
throw new Exception("First compile test; Project did not compile.");
}
// create a deployment package
DeploymentPackage package = project.CreateDeploymentPackage();
// Add environment stuff
AddEnvironment(package, this.SelectedEnvironment);
//Set other connections. The K2 deployment package uses a reference. This does the same but does not use the reference!
package.SmartObjectConnectionString = this.K2ConnectionString;
package.WorkflowManagementConnectionString = this.K2ConnectionString;
//Do a test-compile
if (!TestCompile(project))
{
throw new Exception("Second compile test; Project did not compile.");
}
//Finaly, save the deployment package
package.Save(outputFolder, folderName);
}
private bool TestCompile(Project project)
{
// project.Environment.AuthoringMode = SourceCode.Framework.AuthoringMode.CodeOnly;
//Log.LogMessage("Project.environment: {0}", project.Environment.Name);
DeploymentResults compileResult = project.Compile();
if (!compileResult.Successful)
{
foreach (System.CodeDom.Compiler.CompilerError error in compileResult.Errors)
{
string errString = string.Format("Error compiling: {0} - {1}", error.ErrorNumber, error.ErrorText);
//Log.LogWarning(errString);
Console.WriteLine(errString);
}
}
return compileResult.Successful;
}
private void AddProcess(Project project, Process process)
{
// Create the ProjectFile
ProjectFile file = (ProjectFile)project.CreateNewFile();
// Set information on the file.
file.FileName = process.FileName;
file.Content = process;
// Add the file to the project
project.Files.Add(file);
// Save the project to the temp location.
project.SaveAll();
}
private void AddEnvironment(DeploymentPackage package, string SelectedEnvironment)
{
// Since there's no documentation on connecting to the environment server. This seems to work....
EnvironmentSettingsManager envManager = new EnvironmentSettingsManager(true);
envManager.ConnectToServer(this.K2ConnectionString);
envManager.InitializeSettingsManager(true);
envManager.Refresh();
// Add environments + environment properties.
foreach (EnvironmentTemplate envTemp in envManager.EnvironmentTemplates)
{
foreach (EnvironmentInstance envInst in envTemp.Environments)
{
//Add an environment to the package.
DeploymentEnvironment env = package.AddEnvironment(envInst.EnvironmentName);
foreach (EnvironmentField field in envInst.EnvironmentFields)
{
env.Properties[field.FieldName] = field.Value;
}
// Make sure the environment we select actually exists.
if (envInst.EnvironmentName == SelectedEnvironment)
{
package.SelectedEnvironment = envInst.EnvironmentName;
}
}
}
//Cleanup
envManager.Disconnect();
envManager = null;
//Final check of the selected environment
if (package.SelectedEnvironment == null || package.SelectedEnvironment == string.Empty)
{
throw new Exception(string.Format("Could not find the environment you wanted to select ({0})", SelectedEnvironment));
}
}