Skip to content

Commit

Permalink
Package rothko for GHfVS, bump to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shana committed Jul 26, 2017
1 parent 0d127c9 commit 8ed259c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### New in 0.0.2

* Signing key for GHfVS

### New in 0.0.1

* Initial alpha release
2 changes: 1 addition & 1 deletion Rothko.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<owners>@authors@</owners>
<summary>@summary@</summary>
<licenseUrl>https://github.com/haacked/rothko/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/haacked/rothko</projectUrl>
<projectUrl>https://github.com/editor-tools/rothko</projectUrl>
<iconUrl>https://cloud.githubusercontent.com/assets/19977/4635932/4483417a-53de-11e4-8aad-7f06b2d3c46a.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>@description@</description>
Expand Down
6 changes: 3 additions & 3 deletions SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
using System.Reflection;

[assembly: AssemblyProductAttribute("Rothko")]
[assembly: AssemblyVersionAttribute("0.0.1")]
[assembly: AssemblyFileVersionAttribute("0.0.1")]
[assembly: AssemblyVersionAttribute("0.0.2")]
[assembly: AssemblyFileVersionAttribute("0.0.2")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "0.0.1";
internal const string Version = "0.0.2";
}
}
11 changes: 7 additions & 4 deletions script/build.fsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
#r @"..\tools\FAKE.Core\tools\FakeLib.dll"
open Fake
open Fake.XUnit2Helper
open Fake.Git.Information

let commit = getCurrentSHA1(".")

let authors = ["Phil Haack"]

// project name and description
let projectName = "Rothko"
let projectDescription = "Abstractions!"
let projectSummary = projectDescription // TODO: write a summary
let projectSummary = "This package is a modified signed build of Rothko from https://github.com/editor-tools/Rothko/commit/" + commit

// directories
let buildDir = "./src/bin"
Expand All @@ -30,7 +33,7 @@ Target "AssemblyInfo" (fun _ ->
CreateCSharpAssemblyInfo "./SolutionInfo.cs"
[ Attribute.Product projectName
Attribute.Version releaseNotes.AssemblyVersion
Attribute.FileVersion releaseNotes.AssemblyVersion]
Attribute.FileVersion releaseNotes.AssemblyVersion ]
)

Target "BuildApp" (fun _ ->
Expand All @@ -57,11 +60,11 @@ Target "Package" (fun _ ->
{p with
Authors = authors
Project = projectName
Description = projectDescription
Description = projectDescription
OutputPath = packagingDir
Summary = projectSummary
WorkingDir = packagingDir
Version = releaseNotes.AssemblyVersion
Version = releaseNotes.AssemblyVersion + "-ghfvs"
ReleaseNotes = toLines releaseNotes.Notes
AccessKey = getBuildParamOrDefault "nugetkey" ""
Publish = hasBuildParam "nugetkey" }) "Rothko.nuspec"
Expand Down

0 comments on commit 8ed259c

Please sign in to comment.