Skip to content
This repository has been archived by the owner on Jul 17, 2018. It is now read-only.

Commit

Permalink
project rename to ServiceFabric-Http
Browse files Browse the repository at this point in the history
  • Loading branch information
cwe1ss committed Apr 16, 2016
1 parent 57e9f42 commit 6051130
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,21 @@
This project contains three components:

##### C3.ServiceFabric.HttpCommunication
An implementation of `ICommunicationClient` (part of the Service Fabric SDK) for HTTP-based communication between Service Fabric services. It resolves services and contains retry logic. Please look at [HTTP Communication](https://github.com/c3-ls/ServiceFabric-HttpServiceGateway/wiki/HTTP-Communication) for details.
An implementation of `ICommunicationClient` (part of the Service Fabric SDK) for HTTP-based communication between Service Fabric services.
It resolves services and contains retry logic.
Please look at [HTTP Communication](https://github.com/c3-ls/ServiceFabric-Http/wiki/HTTP-Communication) for details.

##### C3.ServiceFabric.HttpServiceGateway
A HTTP-based gateway, implemented as an ASP.NET Core middleware. Please look at [HTTP Gateway](https://github.com/c3-ls/ServiceFabric-HttpServiceGateway/wiki/HTTP-Gateway) for details.
A HTTP-based gateway, implemented as an ASP.NET Core middleware.
Please look at [HTTP Gateway](https://github.com/c3-ls/ServiceFabric-Http/wiki/HTTP-Gateway) for details.

##### C3.ServiceFabric.AspNetCore.StatelessHost
A hosting library for stateless ASP.NET Core-based Service Fabric services. With this library, it's not required to publish the app to your local Service Fabric cluster whenever you want to start/debug it locally. Instead, you can just 'dotnet run' or 'dotnet watch' your app! This is a huge time saver during development.
Please look at [Stateless ASP.NET Core Host](https://github.com/c3-ls/ServiceFabric-HttpServiceGateway/wiki/Stateless-ASP.NET-Core-Host) for details.
A hosting library for stateless ASP.NET Core-based Service Fabric services.
With this library, it's not required to publish the app to your local Service Fabric cluster whenever you want to start/debug it locally.
Instead, you can just 'dotnet run' or 'dotnet watch' your app! This is a huge time saver during development.
Please look at [Stateless ASP.NET Core Host](https://github.com/c3-ls/ServiceFabric-Http/wiki/Stateless-ASP.NET-Core-Host) for details.

You can find more documentation in our [Wiki](https://github.com/c3-ls/ServiceFabric-HttpServiceGateway/wiki)
You can find more documentation in our [Wiki](https://github.com/c3-ls/ServiceFabric-Http/wiki)

[![Build status](https://ci.appveyor.com/api/projects/status/glormo3hm3wsdwm4/branch/master?svg=true)](https://ci.appveyor.com/project/cwe1ss/servicefabric-httpservicegateway/branch/master)

Expand Down
File renamed without changes.
9 changes: 7 additions & 2 deletions src/C3.ServiceFabric.AspNetCore.StatelessHost/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@
"version": "0.4.0-rc2-*",
"description": "Hosting library for stateless ASP.NET Core-based Service Fabric services. With this library, it's not required to publish the app to your local Service Fabric cluster whenever you want to start/debug it locally. Instead, you can just 'dotnet run' or 'dotnet watch' your app! This is a huge time saver during development.",
"authors": [ "C3 Loyalty Services" ],
"projectUrl": "https://github.com/c3-ls/ServiceFabric-HttpServiceGateway",
"licenseUrl": "https://github.com/c3-ls/ServiceFabric-HttpServiceGateway/blob/master/LICENSE",
"projectUrl": "https://github.com/c3-ls/ServiceFabric-Http",
"licenseUrl": "https://github.com/c3-ls/ServiceFabric-Http/blob/master/LICENSE",
"tags": [ "ServiceFabric", "ReliableServices", "Hosting", "AspNetCore" ],

"compilationOptions": {
"warningsAsErrors": true
},

"repository": {
"type": "git",
"url": "git://github.com/c3-ls/ServiceFabric-Http"
},

"dependencies": {
"Microsoft.AspNetCore.Hosting": "1.0.0-*",
"Microsoft.ServiceFabric.Services": "2.0.135"
Expand Down
6 changes: 3 additions & 3 deletions src/C3.ServiceFabric.HttpCommunication/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"version": "0.4.0-rc2-*",
"description": "ASP.NET Core library for communication with HTTP-based \"Azure Service Fabric\" services",
"authors": [ "C3 Loyalty Services" ],
"projectUrl": "https://github.com/c3-ls/ServiceFabric-HttpServiceGateway",
"licenseUrl": "https://github.com/c3-ls/ServiceFabric-HttpServiceGateway/blob/master/LICENSE",
"projectUrl": "https://github.com/c3-ls/ServiceFabric-Http",
"licenseUrl": "https://github.com/c3-ls/ServiceFabric-Http/blob/master/LICENSE",
"tags": ["ServiceFabric", "ReliableServices", "HttpClient", "Retry", "AspNetCore"],

"compilationOptions": {
Expand All @@ -12,7 +12,7 @@

"repository": {
"type": "git",
"url": "git://github.com/c3-ls/ServiceFabric-HttpServiceGateway"
"url": "git://github.com/c3-ls/ServiceFabric-Http"
},

"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions src/C3.ServiceFabric.HttpServiceGateway/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"version": "0.4.0-rc2-*",
"description": "ASP.NET Core gateway middleware for HTTP-based \"Azure Service Fabric\" services",
"authors": [ "C3 Loyalty Services" ],
"projectUrl": "https://github.com/c3-ls/ServiceFabric-HttpServiceGateway",
"licenseUrl": "https://github.com/c3-ls/ServiceFabric-HttpServiceGateway/blob/master/LICENSE",
"projectUrl": "https://github.com/c3-ls/ServiceFabric-Http",
"licenseUrl": "https://github.com/c3-ls/ServiceFabric-Http/blob/master/LICENSE",
"tags": ["ServiceFabric", "Gateway", "HttpGateway", "Azure", "Proxy", "HttpProxy", "AspNetCore"],

"compilationOptions": {
Expand All @@ -12,7 +12,7 @@

"repository": {
"type": "git",
"url": "git://github.com/c3-ls/ServiceFabric-HttpServiceGateway"
"url": "git://github.com/c3-ls/ServiceFabric-Http"
},

"dependencies": {
Expand Down

0 comments on commit 6051130

Please sign in to comment.