本文整理汇总了C#中IProjectService.WriteStatusBarMessage方法的典型用法代码示例。如果您正苦于以下问题:C# IProjectService.WriteStatusBarMessage方法的具体用法?C# IProjectService.WriteStatusBarMessage怎么用?C# IProjectService.WriteStatusBarMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IProjectService
的用法示例。
在下文中一共展示了IProjectService.WriteStatusBarMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddProjectPlugin
/// <summary>
/// Adds the project plugin.
/// </summary>
/// <param name="projectService">The project service.</param>
/// <param name="folderName">Name of the folder.</param>
/// <param name="extensionName">Name of the extension.</param>
/// <param name="plugin">The plugin.</param>
/// <returns>Returns true if plugin added.</returns>
public bool AddProjectPlugin(
IProjectService projectService,
string folderName,
string extensionName,
Plugin plugin)
{
TraceService.WriteLine("PluginService::AddProjectPlugin folder=" + folderName);
this.Messages.Clear();
string message = string.Format("Ninja Coder is adding {0} plugin to {1} project.", plugin.FriendlyName, projectService.Name);
projectService.WriteStatusBarMessage(message);
bool added = this.AddPlugin(projectService, plugin, extensionName);
if (added)
{
//// if we want to add via nuget then generate the command.
if (this.settingsService.UseNugetForPlugins)
{
string command = this.GetProjectNugetCommand(projectService, plugin);
if (string.IsNullOrEmpty(command) == false)
{
if (this.settingsService.UsePreReleaseNugetPackages)
{
command += " " + NugetConstants.UsePreReleaseOption;
}
plugin.NugetCommands.Add(command);
}
}
this.Messages.Add(plugin.FriendlyName + " plugin added to project " + projectService.Name + ".");
}
return added;
}
示例2: AddProjectPlugin
/// <summary>
/// Adds the project plugin.
/// </summary>
/// <param name="projectService">The project service.</param>
/// <param name="folderName">Name of the folder.</param>
/// <param name="extensionName">Name of the extension.</param>
/// <param name="plugin">The plugin.</param>
/// <returns>Returns true if plugin added.</returns>
internal bool AddProjectPlugin(
IProjectService projectService,
string folderName,
string extensionName,
Plugin plugin)
{
TraceService.WriteLine("PluginsService::AddProjectPlugin folder=" + folderName);
string message = string.Format("Ninja Coder is adding {0} plugin to {1} project.", plugin.FriendlyName, projectService.Name);
projectService.WriteStatusBarMessage(message);
bool added = this.AddPlugin(projectService, plugin, folderName, extensionName);
if (added)
{
//// if we want to add via nuget then generate the command.
if (this.SettingsService.UseNugetForPlugins)
{
this.UpdatePluginViaNuget(projectService, plugin);
}
this.Messages.Add(plugin.FriendlyName + " plugin added to project " + projectService.Name + ".");
}
return added;
}