forked from pasztorpisti/vs-window-title-changer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for VS2017 (while dropping support for VS2010), increment…
… version to 2.1.8
- Loading branch information
Showing
6 changed files
with
31 additions
and
64 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010"> | ||
<Identifier Id="1e0c061a-af97-43bb-930d-7e3629676249"> | ||
<Name>Visual Studio Window Title Changer</Name> | ||
<Author>István Pásztor</Author> | ||
<Version>2.1.7</Version> | ||
<?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="1e0c061a-af97-43bb-930d-7e3629676249" Version="2.1.8" Language="en-US" Publisher="István Pásztor" /> | ||
<DisplayName>Visual Studio Window Title Changer</DisplayName> | ||
<Description xml:space="preserve">Changes the Visual Studio Window Title by evaluating a user defined expression. Extremely helpful when working with multiple branches of the same project.</Description> | ||
<Locale>1033</Locale> | ||
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/2e8ebfe4-023f-4c4d-9b7a-d05bbc5cb239</MoreInfoUrl> | ||
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/2e8ebfe4-023f-4c4d-9b7a-d05bbc5cb239</MoreInfo> | ||
<License>License.txt</License> | ||
<GettingStartedGuide>Forms\TitleSetupEditorHelp.html</GettingStartedGuide> | ||
<Icon>VSWindowTitleChanger.png</Icon> | ||
<PreviewImage>VSWindowTitleChanger_Preview.png</PreviewImage> | ||
<InstalledByMsi>false</InstalledByMsi> | ||
<SupportedProducts> | ||
<VisualStudio Version="10.0"> | ||
<Edition>Ultimate</Edition> | ||
<Edition>Premium</Edition> | ||
<Edition>Pro</Edition> | ||
<Edition>IntegratedShell</Edition> | ||
<Edition>VSLS</Edition> | ||
</VisualStudio> | ||
<VisualStudio Version="11.0"> | ||
<Edition>Ultimate</Edition> | ||
<Edition>Premium</Edition> | ||
<Edition>Pro</Edition> | ||
<Edition>IntegratedShell</Edition> | ||
<Edition>VSLS</Edition> | ||
</VisualStudio> | ||
<VisualStudio Version="12.0"> | ||
<Edition>Ultimate</Edition> | ||
<Edition>Premium</Edition> | ||
<Edition>Pro</Edition> | ||
<Edition>IntegratedShell</Edition> | ||
<Edition>VSLS</Edition> | ||
</VisualStudio> | ||
<VisualStudio Version="14.0"> | ||
<Edition>Community</Edition> | ||
<Edition>Enterprise</Edition> | ||
<Edition>Pro</Edition> | ||
<Edition>IntegratedShell</Edition> | ||
<Edition>VSLS</Edition> | ||
</VisualStudio> | ||
<VisualStudio Version="15.0"> | ||
<Edition>Community</Edition> | ||
<Edition>Enterprise</Edition> | ||
<Edition>Pro</Edition> | ||
<Edition>IntegratedShell</Edition> | ||
<Edition>VSLS</Edition> | ||
</VisualStudio> | ||
</SupportedProducts> | ||
<SupportedFrameworkRuntimeEdition MinVersion="4.0" MaxVersion="4.5" /> | ||
</Identifier> | ||
<References> | ||
<Reference Id="Microsoft.VisualStudio.MPF" MinVersion="10.0"> | ||
<Name>Visual Studio MPF</Name> | ||
</Reference> | ||
</References> | ||
<Content> | ||
<VsPackage>|%CurrentProject%;PkgdefProjectOutputGroup|</VsPackage> | ||
</Content> | ||
</Vsix> | ||
</Metadata> | ||
<Installation> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[11.0,16.0)" /> | ||
<InstallationTarget Version="[11.0,16.0)" Id="Microsoft.VisualStudio.Pro" /> | ||
<InstallationTarget Version="[11.0,16.0)" Id="Microsoft.VisualStudio.Enterprise" /> | ||
<InstallationTarget Version="[11.0,16.0)" Id="Microsoft.VisualStudio.IntegratedShell" /> | ||
</Installation> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" /> | ||
</Dependencies> | ||
<Assets> | ||
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" /> | ||
</Assets> | ||
<Prerequisites> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,16.0)" DisplayName="Visual Studio core editor" /> | ||
</Prerequisites> | ||
</PackageManifest> |