From b49738dc710bb6e8b88858bd4ee62c68176a3155 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 4 Aug 2017 11:27:34 +0200 Subject: [PATCH 1/3] Add MyGet-specific version override. --- build.cmd | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.cmd b/build.cmd index 269b98b3..a3318066 100644 --- a/build.cmd +++ b/build.cmd @@ -19,6 +19,9 @@ IF NOT EXIST build.fsx ( SET BuildTarget= if "%BuildRunner%" == "MyGet" ( SET BuildTarget=NuGet + + echo ### %PackageVersion% > RELEASE_NOTES.md + echo * git build >> RELEASE_NOTES.md ) packages\FAKE\tools\FAKE.exe build.fsx %* %BuildTarget% \ No newline at end of file From 73a72b519ef46b8766fbb5923e4880e37784b037 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 4 Aug 2017 11:30:42 +0200 Subject: [PATCH 2/3] Add a reference to MyGet in the README. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7751c4f3..d1198083 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ Instructions ============ The simplest way to use OpenTK in your project is to install the [NuGet package](http://www.nuget.org/packages/OpenTK/). +If you want to try out the latest development build from the `develop` branch, we also have a [MyGet feed](https://www.myget.org/F/opentk-develop/api/v3/index.json). Note what installing NuGet package will add reference to OpenTK.dll, but OpenTK.dll.config will not be copied to the project output directory automatically, so you need to add it to your project From ead44aaf8054be057f392ce112daf8fa402c3b2f Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Fri, 4 Aug 2017 13:58:39 +0200 Subject: [PATCH 3/3] Add comment explaining the release notes overwrite. --- build.cmd | 1 + 1 file changed, 1 insertion(+) diff --git a/build.cmd b/build.cmd index a3318066..2b2c27c9 100644 --- a/build.cmd +++ b/build.cmd @@ -20,6 +20,7 @@ SET BuildTarget= if "%BuildRunner%" == "MyGet" ( SET BuildTarget=NuGet + :: Replace the existing release notes file with one for this build only echo ### %PackageVersion% > RELEASE_NOTES.md echo * git build >> RELEASE_NOTES.md )