Skip to content

Commit cf716eb

Browse files
committed
Pushed version to 2.4.1
1 parent d27a707 commit cf716eb

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

SmartCmdArgs/SmartCmdArgs.Shared/CmdArgsPackage.cs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ namespace SmartCmdArgs
5252
/// </para>
5353
/// </remarks>
5454
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
55-
[InstalledProductRegistration("#110", "#112", "2.4.0", IconResourceID = 400)] // Info on this package for Help/About
55+
[InstalledProductRegistration("#110", "#112", "2.4.1", IconResourceID = 400)] // Info on this package for Help/About
5656
[ProvideMenuResource("Menus.ctmenu", 1)]
5757
[ProvideToolWindow(typeof(ToolWindow), Window = ToolWindow.ToolWindowGuidString)]
58-
[ProvideOptionPage(typeof(CmdArgsOptionPage), "Smart Command Line Arguments", "General", 1000, 1001, false)]
58+
[ProvideOptionPage(typeof(CmdArgsOptionPage), "Smart Command Line Arguments", "General", 1000, 1001, false)]
5959
[ProvideBindingPath]
6060
[ProvideKeyBindingTable(ToolWindow.ToolWindowGuidString, 200)]
6161
[ProvideAutoLoad(VSConstants.UICONTEXT.SolutionExistsAndFullyLoaded_string, PackageAutoLoadFlags.BackgroundLoad)]
6262
[Guid(CmdArgsPackage.PackageGuidString)]
63-
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")]
63+
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")]
6464
public sealed class CmdArgsPackage : AsyncPackage
6565
{
6666
/// <summary>
@@ -100,7 +100,7 @@ public sealed class CmdArgsPackage : AsyncPackage
100100
// processed later.
101101
private string toolWindowStateFromSolutionJsonStr;
102102
private SuoDataJson toolWindowStateLoadedFromSolution;
103-
103+
104104
/// <summary>
105105
/// Initializes a new instance of the <see cref="ToolWindow"/> class.
106106
/// </summary>
@@ -275,13 +275,13 @@ public void SetAsStartupProject(Guid guid)
275275

276276
private void UpdateConfigurationForProject(IVsHierarchy project)
277277
{
278-
if (project == null)
278+
if (project == null)
279279
return;
280280

281281
var commandLineArgs = CreateCommandLineArgsForProject(project);
282282
if (commandLineArgs == null)
283283
return;
284-
284+
285285
ProjectArguments.SetArguments(project, commandLineArgs);
286286
Logger.Info($"Updated Configuration for Project: {project.GetName()}");
287287
}
@@ -334,11 +334,11 @@ public string CreateCommandLineArgsForProject(Guid guid)
334334
{
335335
return CreateCommandLineArgsForProject(vsHelper.HierarchyForProjectGuid(guid));
336336
}
337-
337+
338338
public List<string> GetProjectConfigurations(Guid projGuid)
339339
{
340340
IVsHierarchy project = vsHelper.HierarchyForProjectGuid(projGuid);
341-
341+
342342
var configs = (project.GetProject()?.ConfigurationManager?.ConfigurationRowNames as Array)?.Cast<string>().ToList();
343343
return configs ?? new List<string>();
344344
}
@@ -396,7 +396,7 @@ private void FileStorage_FileStorageChanged(object sender, FileStorageChangedEve
396396

397397
if (!IsVcsSupportEnabled)
398398
return;
399-
399+
400400
ToolWindowHistory.SaveState();
401401

402402
IEnumerable<IVsHierarchy> projects;
@@ -479,7 +479,7 @@ private void UpdateCommandsForProject(IVsHierarchy project)
479479
if (projectData != null)
480480
{
481481
Logger.Info($"Setting {projectData?.Items?.Count} commands for project '{project.GetName()}' from json-file.");
482-
482+
483483
var projectListViewModel = ToolWindowViewModel.TreeViewModel.Projects.GetValueOrDefault(projectGuid);
484484

485485
var projHasSuoData = solutionData.ProjectArguments.ContainsKey(projectGuid);
@@ -640,7 +640,7 @@ private void VsHelper_StartupProjectConfigurationChanged(object sender, EventArg
640640
private void VsHelper_ProjectWillRun(object sender, EventArgs e)
641641
{
642642
Logger.Info("VS-Event: Startup project will run.");
643-
643+
644644
foreach (var startupProject in ToolWindowViewModel.TreeViewModel.StartupProjects)
645645
{
646646
var project = vsHelper.HierarchyForProjectGuid(startupProject.Id);

SmartCmdArgs/SmartCmdArgs15/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("2.4.0.0")]
33-
[assembly: AssemblyFileVersion("2.4.0.0")]
32+
[assembly: AssemblyVersion("2.4.1.0")]
33+
[assembly: AssemblyFileVersion("2.4.1.0")]

SmartCmdArgs/SmartCmdArgs15/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="SmartCmdArgs15.0248c5c8-b4c5-4201-9360-5c100580f52e" Version="2.4.0" Language="en-US" Publisher="Irame &amp; MBulli" />
4+
<Identity Id="SmartCmdArgs15.0248c5c8-b4c5-4201-9360-5c100580f52e" Version="2.4.1" Language="en-US" Publisher="Irame &amp; MBulli" />
55
<DisplayName>Smart Command Line Arguments</DisplayName>
66
<Description xml:space="preserve">A Visual Studio Extension which aims to provide a better UI to manage your command line arguments.</Description>
77
<MoreInfo>https://github.com/MBulli/SmartCommandlineArgs</MoreInfo>

SmartCmdArgs/SmartCmdArgs16/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("2.4.0.0")]
33-
[assembly: AssemblyFileVersion("2.4.0.0")]
32+
[assembly: AssemblyVersion("2.4.1.0")]
33+
[assembly: AssemblyFileVersion("2.4.1.0")]

SmartCmdArgs/SmartCmdArgs16/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="SmartCmdArgs16.6e0b005f-d482-4341-97c0-7e78c25c4bb3" Version="2.4.0" Language="en-US" Publisher="Irame &amp; MBulli" />
4+
<Identity Id="SmartCmdArgs16.6e0b005f-d482-4341-97c0-7e78c25c4bb3" Version="2.4.1" Language="en-US" Publisher="Irame &amp; MBulli" />
55
<DisplayName>Smart Command Line Arguments</DisplayName>
66
<Description xml:space="preserve">A Visual Studio Extension which aims to provide a better UI to manage your command line arguments.</Description>
77
<MoreInfo>https://github.com/MBulli/SmartCommandlineArgs</MoreInfo>

SmartCmdArgs/SmartCmdArgs17/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("2.4.0.0")]
33-
[assembly: AssemblyFileVersion("2.4.0.0")]
32+
[assembly: AssemblyVersion("2.4.1.0")]
33+
[assembly: AssemblyFileVersion("2.4.1.0")]

SmartCmdArgs/SmartCmdArgs17/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="SmartCmdArgs17.6edd462d-d4d6-40b9-a7b4-451a6ce6c527" Version="2.4.0" Language="en-US" Publisher="Irame &amp; MBulli" />
4+
<Identity Id="SmartCmdArgs17.6edd462d-d4d6-40b9-a7b4-451a6ce6c527" Version="2.4.1" Language="en-US" Publisher="Irame &amp; MBulli" />
55
<DisplayName>Smart Command Line Arguments</DisplayName>
66
<Description xml:space="preserve">A Visual Studio Extension which aims to provide a better UI to manage your command line arguments.</Description>
77
<MoreInfo>https://github.com/MBulli/SmartCommandlineArgs</MoreInfo>

0 commit comments

Comments
 (0)