Skip to content

Commit 4dcb053

Browse files
atom
1 parent 4fc0c73 commit 4dcb053

File tree

8 files changed

+13
-7
lines changed

8 files changed

+13
-7
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ProjectView>ProjectFiles</ProjectView>
5+
</PropertyGroup>
6+
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<ProjectView>ShowAllFiles</ProjectView>
4+
<ProjectView>ProjectFiles</ProjectView>
55
</PropertyGroup>
66
</Project>

src/OpenInApp.Common/Helpers/ApplicationToOpenHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public ApplicationToOpenDto GetApplicationToOpenDto(KeyToExecutableEnum keyToExe
142142
applicationToOpenDto.SecondaryFilePathSegment = @"atom\bin";
143143
applicationToOpenDto.SeparateProcessPerFileToBeOpened = false;
144144
applicationToOpenDto.UseShellExecute = false;
145-
applicationToOpenDto.WrapArgumentsWithQuotations = false;
145+
//gregtt applicationToOpenDto.WrapArgumentsWithQuotations = false;
146146
break;
147147
case KeyToExecutableEnum.ChromeCanary:
148148
applicationToOpenDto.SecondaryFilePathSegment = @"Google\Chrome SxS\Application";

src/OpenInApp.Common/Helpers/Dtos/ApplicationToOpenDto.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ public class ApplicationToOpenDto
1414
public bool SecondaryFilePathSegmentHasMultipleVersions { get; set; }
1515
public bool SeparateProcessPerFileToBeOpened { get; set; }
1616
public bool UseShellExecute { get; set; }
17-
public bool WrapArgumentsWithQuotations { get; set; }
17+
public bool WrapArgumentsWithQuotations { get; set; }//gregtt delete this
1818
}
1919
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<ProjectView>ShowAllFiles</ProjectView>
4+
<ProjectView>ProjectFiles</ProjectView>
55
</PropertyGroup>
66
</Project>

src/OpenInAtom/OpenInAtom.csproj.user

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<StartArguments>/rootSuffix Exp</StartArguments>
77
</PropertyGroup>
88
<PropertyGroup>
9-
<ProjectView>ShowAllFiles</ProjectView>
9+
<ProjectView>ProjectFiles</ProjectView>
1010
</PropertyGroup>
1111
</Project>

src/OpenInAtom/source.extension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ static class Vsix
1111
public const string Name = "Open in Atom";
1212
public const string Description = @"Open multiple files simultaneously in Atom directly from Solution Explorer or Code Editor window.";
1313
public const string Language = "en-US";
14-
public const string Version = "1.1.42";
14+
public const string Version = "1.1.43";
1515
public const string Author = "GregTrevellick";
1616
public const string Tags = "open, open in, Atom";
1717
}

src/OpenInAtom/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="014f77d0-8a75-4421-b484-5fc73bca99d7" Version="1.1.42" Language="en-US" Publisher="GregTrevellick" />
4+
<Identity Id="014f77d0-8a75-4421-b484-5fc73bca99d7" Version="1.1.43" Language="en-US" Publisher="GregTrevellick" />
55
<DisplayName>Open in Atom</DisplayName>
66
<Description xml:space="preserve">Open multiple files simultaneously in Atom directly from Solution Explorer or Code Editor window.</Description>
77
<MoreInfo>https://github.com/GregTrevellick/OpenInApp.Launcher</MoreInfo>

0 commit comments

Comments
 (0)