-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for VS2017 (thanks to @tbertenshaw) && raise to version 1.4.0.0
- Loading branch information
Showing
10 changed files
with
67 additions
and
49 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="EnvDTE" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
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,31 +1,31 @@ | ||
<?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="a8ef38c4-8d82-4245-a6ac-775412dd55e7" Version="1.3.7.0" Language="en-US" Publisher="marazt" /> | ||
<DisplayName>ConfigTransformation</DisplayName> | ||
<Description xml:space="preserve">Extension which enables ability to transform various config file even there does not exist build definition for the transformation file. Supports all .NET projects even WebSites.</Description> | ||
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/2ab58875-5ead-44aa-b3e8-52965b8bd47d</MoreInfo> | ||
<GettingStartedGuide>http://visualstudiogallery.msdn.microsoft.com/2ab58875-5ead-44aa-b3e8-52965b8bd47d</GettingStartedGuide> | ||
<ReleaseNotes>Release_notes.txt</ReleaseNotes> | ||
<Icon>transform2.png</Icon> | ||
<PreviewImage>preview2.png</PreviewImage> | ||
<Tags>Config, Transformation, Configuration, Build, XML, XDT</Tags> | ||
</Metadata> | ||
<Installation InstalledByMsi="false" AllUsers="true"> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,]" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Premium" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Ultimate" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Enterprise" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Community" /> | ||
</Installation> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.VisualStudio.MPF.11.0" DisplayName="Visual Studio MPF 11.0" d:Source="Installed" Version="11.0" /> | ||
</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.26208.0,16.0)" DisplayName="Visual Studio core editor" /> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[15.0.26208.0,16.0)" DisplayName="C# and Visual Basic" /> | ||
</Prerequisites> | ||
<Metadata> | ||
<Identity Id="a8ef38c4-8d82-4245-a6ac-775412dd55e7" Version="1.4.0.0" Language="en-US" Publisher="marazt" /> | ||
<DisplayName>ConfigTransformation</DisplayName> | ||
<Description xml:space="preserve">Extension which enables ability to transform various config file even there does not exist build definition for the transformation file. Supports all .NET projects even WebSites.</Description> | ||
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/2ab58875-5ead-44aa-b3e8-52965b8bd47d</MoreInfo> | ||
<GettingStartedGuide>http://visualstudiogallery.msdn.microsoft.com/2ab58875-5ead-44aa-b3e8-52965b8bd47d</GettingStartedGuide> | ||
<ReleaseNotes>Release_notes.txt</ReleaseNotes> | ||
<Icon>transform2.png</Icon> | ||
<PreviewImage>preview2.png</PreviewImage> | ||
<Tags>Config, Transformation, Configuration, Build, XML, XDT</Tags> | ||
</Metadata> | ||
<Installation InstalledByMsi="false" AllUsers="true"> | ||
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,]" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Premium" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Ultimate" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Enterprise" /> | ||
<InstallationTarget Version="[11.0,]" Id="Microsoft.VisualStudio.Community" /> | ||
</Installation> | ||
<Dependencies> | ||
<Dependency Id="Microsoft.VisualStudio.MPF.11.0" DisplayName="Visual Studio MPF 11.0" d:Source="Installed" Version="11.0" /> | ||
</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.26208.0,16.0)" DisplayName="Visual Studio core editor" /> | ||
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[15.0.26208.0,16.0)" DisplayName="C# and Visual Basic" /> | ||
</Prerequisites> | ||
</PackageManifest> |
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
Binary file not shown.
This file was deleted.
Oops, something went wrong.