Skip to content

Commit

Permalink
build script InlineTaskVersionDep var update for VS2017
Browse files Browse the repository at this point in the history
  • Loading branch information
stimpy77 committed Aug 8, 2017
1 parent 81789d3 commit a08068e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Expand Up @@ -131,6 +131,8 @@ private async Task<EnvDTE.Project> InjectNodeJSScriptSupport()
inlineTaskVersionDep_v12.Condition = "'$(MSBuildToolsVersion)' == '12'";
var inlineTaskVersionDep_v14 = inlineTaskVersionDep_group.AddProperty("InlineTaskVersionDep", "Core");
inlineTaskVersionDep_v14.Condition = "'$(MSBuildToolsVersion)' == '14'";
var inlineTaskVersionDep_v15 = inlineTaskVersionDep_group.AddProperty("InlineTaskVersionDep", "Core");
inlineTaskVersionDep_v15.Condition = "'$(MSBuildToolsVersion)' == '15'";
var usingTask = projRoot.AddUsingTask("InvokeNodeJS",
@"$(MSBuildToolsPath)\Microsoft.Build.Tasks.$(InlineTaskVersionDep).dll", null);
usingTask.TaskFactory = "CodeTaskFactory";
Expand Down
2 changes: 2 additions & 0 deletions Fast Koala/BuildScriptSupport/PSBuildScriptSupportInjector.cs
Expand Up @@ -114,6 +114,8 @@ private async Task<EnvDTE.Project> InjectPowerShellScriptSupport()
inlineTaskVersionDep_v12.Condition = "'$(MSBuildToolsVersion)' == '12'";
var inlineTaskVersionDep_v14 = inlineTaskVersionDep_group.AddProperty("InlineTaskVersionDep", "Core");
inlineTaskVersionDep_v14.Condition = "'$(MSBuildToolsVersion)' == '14'";
var inlineTaskVersionDep_v15 = inlineTaskVersionDep_group.AddProperty("InlineTaskVersionDep", "Core");
inlineTaskVersionDep_v15.Condition = "'$(MSBuildToolsVersion)' == '15'";
var usingTask = projRoot.AddUsingTask("InvokePowerShell",
@"$(MSBuildToolsPath)\Microsoft.Build.Tasks.$(InlineTaskVersionDep).dll", null);
usingTask.TaskFactory = "CodeTaskFactory";
Expand Down
4 changes: 2 additions & 2 deletions Fast Koala/Properties/AssemblyInfo.cs
Expand Up @@ -29,8 +29,8 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("1.1.33.0")]
[assembly: AssemblyFileVersion("1.1.33.0")]
[assembly: AssemblyVersion("1.1.34.0")]
[assembly: AssemblyFileVersion("1.1.34.0")]

[assembly: InternalsVisibleTo("Fast Koala_IntegrationTests, PublicKey=00240000048000009400000006020000002400005253413100040000010001004793b60c2639c976f66c6950e40439c1f1154d186019d3c43792a1109f0ce24264340b63276d370709a07fb4318ae1479b0205b5acf534dcc3821f7ff240081842cf6d55b2a5949d32d7ca430e6cd6f4d49c309068d44a1eeca68b86cbfa9d4d77add461fa4c1083cff7f79384094083745524b0be77b0df07e917f7a031d9aa")]
[assembly: InternalsVisibleTo("Fast Koala_UnitTests, PublicKey=00240000048000009400000006020000002400005253413100040000010001004793b60c2639c976f66c6950e40439c1f1154d186019d3c43792a1109f0ce24264340b63276d370709a07fb4318ae1479b0205b5acf534dcc3821f7ff240081842cf6d55b2a5949d32d7ca430e6cd6f4d49c309068d44a1eeca68b86cbfa9d4d77add461fa4c1083cff7f79384094083745524b0be77b0df07e917f7a031d9aa")]
2 changes: 1 addition & 1 deletion Fast Koala/source.extension.vsixmanifest
@@ -1,7 +1,7 @@
<?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="5a540277-c820-4fb4-9cb5-f878fc9af04f" Version="1.1.33" Language="en-US" Publisher="jon@jondavis.net" />
<Identity Id="5a540277-c820-4fb4-9cb5-f878fc9af04f" Version="1.1.34" Language="en-US" Publisher="jon@jondavis.net" />
<DisplayName>Fast Koala - [Web/App].config XML transforms</DisplayName>
<Description xml:space="preserve">Enables config file transformations at build-time for common project types including ASP.NET 4.6-or-below web applications. </Description>
<MoreInfo>https://github.com/stimpy77/FastKoala</MoreInfo>
Expand Down

0 comments on commit a08068e

Please sign in to comment.