Skip to content

Commit

Permalink
Fix Platform matching bug in CPP projects - references #1467
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Feb 11, 2016
1 parent e262b65 commit f23b2a7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 17 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 2.50.5 - 11.02.2016
* Fix Platform matching bug in CPP projects - https://github.com/fsprojects/Paket/issues/1467

#### 2.50.4 - 11.02.2016
* Fix StackOverflow from https://github.com/fsprojects/Paket/issues/1432

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<Choose>
<When Condition="$(Platform)'=='Debug|Win32'">
<When Condition="'$(Platform)'=='Debug|Win32'">
<PropertyGroup>
<__paket__cpprestsdk_v120_winapp_msvcstl_dyn_rt-dyn_targets>native\cpprestsdk.v120.winapp.msvcstl.dyn.rt-dyn</__paket__cpprestsdk_v120_winapp_msvcstl_dyn_rt-dyn_targets>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/Paket.Bootstrapper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
[assembly: AssemblyTitleAttribute("Paket.Bootstrapper")]
[assembly: AssemblyProductAttribute("Paket")]
[assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")]
[assembly: AssemblyVersionAttribute("2.50.4")]
[assembly: AssemblyFileVersionAttribute("2.50.4")]
[assembly: AssemblyInformationalVersionAttribute("2.50.4")]
[assembly: AssemblyVersionAttribute("2.50.5")]
[assembly: AssemblyFileVersionAttribute("2.50.5")]
[assembly: AssemblyInformationalVersionAttribute("2.50.5")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "2.50.4";
internal const string Version = "2.50.5";
}
}
8 changes: 4 additions & 4 deletions src/Paket.Core/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")>]
[<assembly: AssemblyVersionAttribute("2.50.4")>]
[<assembly: AssemblyFileVersionAttribute("2.50.4")>]
[<assembly: AssemblyInformationalVersionAttribute("2.50.4")>]
[<assembly: AssemblyVersionAttribute("2.50.5")>]
[<assembly: AssemblyFileVersionAttribute("2.50.5")>]
[<assembly: AssemblyInformationalVersionAttribute("2.50.5")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "2.50.4"
let [<Literal>] Version = "2.50.5"
8 changes: 4 additions & 4 deletions src/Paket.PowerShell/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")>]
[<assembly: AssemblyVersionAttribute("2.50.4")>]
[<assembly: AssemblyFileVersionAttribute("2.50.4")>]
[<assembly: AssemblyInformationalVersionAttribute("2.50.4")>]
[<assembly: AssemblyVersionAttribute("2.50.5")>]
[<assembly: AssemblyFileVersionAttribute("2.50.5")>]
[<assembly: AssemblyInformationalVersionAttribute("2.50.5")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "2.50.4"
let [<Literal>] Version = "2.50.5"
8 changes: 4 additions & 4 deletions src/Paket/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ open System.Reflection
[<assembly: AssemblyProductAttribute("Paket")>]
[<assembly: AssemblyCompanyAttribute("Paket team")>]
[<assembly: AssemblyDescriptionAttribute("A package dependency manager for .NET with support for NuGet packages and GitHub repositories.")>]
[<assembly: AssemblyVersionAttribute("2.50.4")>]
[<assembly: AssemblyFileVersionAttribute("2.50.4")>]
[<assembly: AssemblyInformationalVersionAttribute("2.50.4")>]
[<assembly: AssemblyVersionAttribute("2.50.5")>]
[<assembly: AssemblyFileVersionAttribute("2.50.5")>]
[<assembly: AssemblyInformationalVersionAttribute("2.50.5")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] Version = "2.50.4"
let [<Literal>] Version = "2.50.5"

0 comments on commit f23b2a7

Please sign in to comment.