CCNet.Build.Reconfigure.ConfigurationBuilder.WriteNotifyProjects C# (CSharp) Method

WriteNotifyProjects() private method

private WriteNotifyProjects ( IProjectConfiguration config ) : void
config IProjectConfiguration
return void
		private void WriteNotifyProjects(IProjectConfiguration config)
		{
			var notify = config as INotifyProjects;
			if (notify == null)
				return;

			ExecTaskLegacy(
				"$(ccnetBuildNotifyProjects)",
				"Notify other projects",
				new Arg("ProjectName", config.Name),
				new Arg("BuildPath", "$(buildPath)"),
				new Arg("ServerNames", "Library|Website|Service|Application|Azure"),
				new Arg("ReferencesFolder", "references"));
		}
	}