Skip to content

Commit 85d85de

Browse files
committed
version bump and test update for SupportsLaunchProfiles
1 parent 199a530 commit 85d85de

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

SmartCmdArgs/SmartCmdArgs17/source.extension.vsixmanifest

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<Icon>Resources\BigIcon.png</Icon>
1010
<PreviewImage>Resources\vsix_preview_image.png</PreviewImage>
1111
<Tags>Commandline Command Line Arguments cmd project</Tags>
12+
<Preview>true</Preview>
1213
</Metadata>
1314
<Installation>
1415
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">

SmartCmdArgs/Testing/SmartCmdArgs.Tests/Utils/Extensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Microsoft.VisualStudio;
1+
using Microsoft.VisualStudio;
22
using Microsoft.VisualStudio.Shell.Interop;
33
using Moq;
44
using 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

0 commit comments

Comments
 (0)