Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
Adding old NuGet client as there is an issue with FAKE script: fsproj…
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimontana82 committed Jul 29, 2016
1 parent b927db0 commit 892106c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion FakeXrmEasy/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.15.4.0")]
[assembly: AssemblyFileVersion("1.15.4.0")]
[assembly: AssemblyInformationalVersion("1.15.4.0 - master - f7d3ef")]
[assembly: AssemblyInformationalVersion("1.15.4.0 - master - b927db")]
9 changes: 5 additions & 4 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ let nugetDir = @".\nuget\"
let nugetDeployDir = @"[Enter_NuGet_Url]"
let packagesDir = @".\packages\"

let nuGetCommandLine = @".\tools\nuget\nuget286.exe"
let mutable previousVersion = "1.15.3"
let mutable version = "1.15.4" //Copy this into previousVersion before publishing packages...
let mutable build = buildVersion
Expand Down Expand Up @@ -175,7 +176,7 @@ Target "NuGet" (fun _ ->
Project = "FakeXrmEasy"
Version = version
NoPackageAnalysis = true
ToolPath = @".\tools\nuget\Nuget.exe"
ToolPath = nuGetCommandLine
OutputPath = nugetDir
ReleaseNotes = releaseNotes
Publish = true })
Expand All @@ -186,7 +187,7 @@ Target "NuGet" (fun _ ->
Project = "FakeXrmEasy.2013"
Version = version
NoPackageAnalysis = true
ToolPath = @".\tools\nuget\Nuget.exe"
ToolPath = nuGetCommandLine
OutputPath = nugetDir
ReleaseNotes = releaseNotes
Publish = true })
Expand All @@ -197,7 +198,7 @@ Target "NuGet" (fun _ ->
Project = "FakeXrmEasy.2015"
Version = version
NoPackageAnalysis = true
ToolPath = @".\tools\nuget\Nuget.exe"
ToolPath = nuGetCommandLine
OutputPath = nugetDir
ReleaseNotes = releaseNotes
Publish = true })
Expand All @@ -208,7 +209,7 @@ Target "NuGet" (fun _ ->
Project = "FakeXrmEasy.2016"
Version = version
NoPackageAnalysis = true
ToolPath = @".\tools\nuget\Nuget.exe"
ToolPath = nuGetCommandLine
OutputPath = nugetDir
ReleaseNotes = releaseNotes
Publish = true })
Expand Down

0 comments on commit 892106c

Please sign in to comment.