From f8778e21e97d1cc1ff560f561d9147d1acadf0f8 Mon Sep 17 00:00:00 2001 From: Toby Henderson Date: Tue, 1 Jul 2014 12:30:19 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bcc19204..6f5a0829 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,16 @@ openrasta-core [![Build status](https://ci.appveyor.com/api/projects/status/1vk1auv7md2acu37)](https://ci.appveyor.com/project/holytshirt/openrasta-core-424) -OpenRasta core libraries +OpenRasta core library +This the core OpenRasta library which allows you to run an in-memory instance of openrasta. + +`` +PM> Install-Package openrasta-core +`` + +If you want to host it as part of ASP.Net pipeline then install the OpenRasta ASPnet hosting. + +`` +PM> Install-Package openrasta-hosting-aspnet +`` From 0ba479340cf279b0882eca026793b6ec1e7bc4ea Mon Sep 17 00:00:00 2001 From: Toby Henderson Date: Tue, 1 Jul 2014 12:39:29 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 6f5a0829..59613ab0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ -openrasta-core -============== +# openrasta-core [![Build status](https://ci.appveyor.com/api/projects/status/1vk1auv7md2acu37)](https://ci.appveyor.com/project/holytshirt/openrasta-core-424) -[![Build status](https://ci.appveyor.com/api/projects/status/1vk1auv7md2acu37)](https://ci.appveyor.com/project/holytshirt/openrasta-core-424) OpenRasta core library From c6046b1682717db2f452c436395f286ff9a5788c Mon Sep 17 00:00:00 2001 From: Anton Jefcoate Date: Wed, 13 Aug 2014 10:11:05 +0100 Subject: [PATCH 3/3] Added patch HttpMethod verb to enum We need this for documentation purposes in OpenRastaSwagger project. --- src/OpenRasta/Web/HttpMethod.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/OpenRasta/Web/HttpMethod.cs b/src/OpenRasta/Web/HttpMethod.cs index 27a0c565..2d82e1d0 100644 --- a/src/OpenRasta/Web/HttpMethod.cs +++ b/src/OpenRasta/Web/HttpMethod.cs @@ -19,7 +19,8 @@ public enum HttpMethod POST, PUT, DELETE, - OPTIONS + OPTIONS, + PATCH } } @@ -44,4 +45,4 @@ public enum HttpMethod // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#endregion \ No newline at end of file +#endregion