Skip to content

Commit

Permalink
Release prep.
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-visual-studio committed Apr 3, 2023
1 parent d4af277 commit 8338748
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DPackRx/Services/ShellService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ public bool IsProject(object project)
var dteProject = GetProjectInternal(project, false);

return (dteProject != null) &&
//(dteProject.Kind != EnvDTE.Constants.vsProjectKindSolutionItems) && // this prevented misc files from showing up in File Broweser
//(dteProject.Kind != EnvDTE.Constants.vsProjectKindSolutionItems) && // commented out because it prevented misc files from showing up in File Browser
(dteProject.Kind != EnvDTE.Constants.vsProjectKindUnmodeled) &&
(dteProject.Kind != EnvDTE.Constants.vsProjectKindMisc);
}
Expand Down Expand Up @@ -1129,7 +1129,7 @@ public string GetNoCodeModelProjectLanguage(object project)

var dteProject = GetProjectInternal(project);

// Solution items project has no code model; workaround for other project types - should come up with more generic way of handling that
// Solution items project has no code model; workaround for other project types - need to come up with more generic way of handling that
var kind = dteProject.Kind;
if (kind.Equals(EnvDTE.Constants.vsProjectKindSolutionItems, StringComparison.OrdinalIgnoreCase))
return _languageService.GetLanguage(LanguageType.SolutionItems)?.Language;
Expand Down
3 changes: 1 addition & 2 deletions DPackRx/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="3D22E261-32E5-46CE-A4B0-B884FA49A9A2.2022" Version="4.5.2.4" Language="en-US" Publisher="Sergey M" />
<Identity Id="3D22E261-32E5-46CE-A4B0-B884FA49A9A2.2022" Version="4.5.3" Language="en-US" Publisher="Sergey M" />
<DisplayName>DPack Rx 2022</DisplayName>
<Description xml:space="preserve">FREE tools collection designed to greatly increase developer's productivity, automate repetitive processes and expand upon some of Microsoft Visual Studio features.</Description>
<MoreInfo>https://github.com/sergey-visual-studio/dpack</MoreInfo>
<Icon>Resources\Package.ico</Icon>
<PreviewImage>Resources\Preview.png</PreviewImage>
<Tags>Code, Coding, Tools, Productivity, DPack</Tags>
<Preview>true</Preview>
</Metadata>
<Assets>
<Asset Type="Microsoft.VisualStudio.MefComponent" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%|" />
Expand Down

0 comments on commit 8338748

Please sign in to comment.