File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Testing/SmartCmdArgs.Tests/Utils Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ internal sealed partial class Vsix
1111 public const string Name = "Smart Command Line Arguments VS2022" ;
1212 public const string Description = @"A Visual Studio 2022 Extension which aims to provide a better UI to manage your command line arguments." ;
1313 public const string Language = "en-US" ;
14- public const string Version = "3.5.0 " ;
14+ public const string Version = "3.6 " ;
1515 public const string Author = "Irame & MBulli" ;
1616 public const string Tags = "Commandline Command Line Arguments cmd project" ;
1717 }
Original file line number Diff line number Diff line change 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 =" 3.5.0 " Language =" en-US" Publisher =" Irame & MBulli" />
4+ <Identity Id =" SmartCmdArgs17.6edd462d-d4d6-40b9-a7b4-451a6ce6c527" Version =" 3.6 " Language =" en-US" Publisher =" Irame & MBulli" />
55 <DisplayName >Smart Command Line Arguments VS2022</DisplayName >
66 <Description xml : space =" preserve" >A Visual Studio 2022 Extension which aims to provide a better UI to manage your command line arguments.</Description >
77 <MoreInfo >https://github.com/MBulli/SmartCommandlineArgs</MoreInfo >
Original file line number Diff line number Diff line change 1- using Microsoft . VisualStudio ;
1+ using Microsoft . VisualStudio ;
22using Microsoft . VisualStudio . Shell . Interop ;
33using Moq ;
44using SmartCmdArgs . Services ;
@@ -35,7 +35,7 @@ public static Mock<IVsHierarchyWrapper> WithGuid(this Mock<IVsHierarchyWrapper>
3535
3636 public static Mock < IVsHierarchyWrapper > AsCpsProject ( this Mock < IVsHierarchyWrapper > mock )
3737 {
38- mock . Setup ( x => x . IsCpsProject ( ) ) . Returns ( true ) ;
38+ mock . Setup ( x => x . SupportsLaunchProfiles ( ) ) . Returns ( true ) ;
3939 return mock ;
4040 }
4141
You can’t perform that action at this time.
0 commit comments