Skip to content

Commit

Permalink
Merge pull request #13 from opiethehokie/beta5
Browse files Browse the repository at this point in the history
update buildpack to support beta5 apps
  • Loading branch information
svennam92 committed Aug 12, 2015
2 parents 7d9b379 + ca02fd6 commit 493a996
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.3.0 Jul 20, 2015

- Add support for beta5 apps
- Remove support for beta4 apps
- Fix Mono missing trusted root certificates

## v0.2.0 Jun 22, 2015

- Add support for beta4 apps
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cloud Foundry buildpack: ASP.NET 5

A Cloud Foundry buildpack for ASP.NET 5 ([beta4][]) apps. For more information about ASP.NET 5 see:
A Cloud Foundry buildpack for ASP.NET 5 ([beta5][]) apps. For more information about ASP.NET 5 see:

* https://github.com/aspnet/home
* http://docs.asp.net/en/latest/conceptual-overview/aspnet.html
Expand Down Expand Up @@ -69,3 +69,4 @@ Open an issue on this project.

[Hello World sample]: https://github.com/IBM-Bluemix/asp.net5-helloworld
[beta4]: https://github.com/aspnet/Home/releases/tag/v1.0.0-beta4
[beta5]: https://github.com/aspnet/Home/releases/tag/v1.0.0-beta5
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.3.0
2 changes: 1 addition & 1 deletion resources/Nowin.vNext/NowinServerFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
using Microsoft.AspNet.FeatureModel;
using Microsoft.AspNet.Hosting.Server;
using Microsoft.AspNet.Owin;
using Microsoft.Framework.ConfigurationModel;
using Microsoft.Framework.Configuration;
using Nowin;

namespace Nowin.vNext
Expand Down
9 changes: 4 additions & 5 deletions resources/Nowin.vNext/project.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"version": "1.0.0-*",
"dependencies": {
"Nowin": "0.11.0",
"Microsoft.AspNet.Owin": "1.0.0-beta4",
"Microsoft.AspNet.Hosting": "1.0.0-beta4"
"Nowin": "0.17.1",
"Microsoft.AspNet.Owin": "1.0.0-beta5",
"Microsoft.AspNet.Hosting": "1.0.0-beta5"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
"dnx451": { }
}
}

0 comments on commit 493a996

Please sign in to comment.