ASP.NET Security Providers for CloudFoundry
Перейти к файлу
Jason Konicki 1a122b00d5 Add moved notice to the readme 2019-05-15 09:53:36 -04:00
config Add Sourcelink, x-plat compilation [#158000056, #163396106] 2019-03-14 18:06:44 -05:00
src fix https://github.com/SteeltoeOSS/Security/issues/18 (#19) 2019-04-25 17:51:00 -05:00
test update stylecop, fix test 2019-03-27 17:32:43 -05:00
.appveyor.yml Sign Nuget packages 2018-10-18 13:44:37 -05:00
.gitattributes Initial checkin 2016-09-02 09:26:26 -06:00
.gitignore Add Stylecop 2017-12-15 11:53:26 -07:00
.travis.yml build 2.2.0, don't build tags, update sdk used in Travis 2018-10-12 11:49:39 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2017-09-15 14:39:20 -04:00
LICENSE URL Cleanup (#13) 2019-03-27 13:58:33 -05:00
License.txt URL Cleanup (#13) 2019-03-27 13:58:33 -05:00
README.md Add moved notice to the readme 2019-05-15 09:53:36 -04:00
Security.sln Refactor common auth components to new Base library, enable HttpClien… (#9) 2019-01-17 12:09:23 -06:00
nuget.config VS2017 updates 2017-04-21 13:14:53 -06:00
open_source_licenses.txt URL Cleanup (#16) 2019-03-27 14:05:22 -05:00
stylecop.json update stylecop, fix test 2019-03-27 17:32:43 -05:00
targetframework.props Add Sourcelink, x-plat compilation [#158000056, #163396106] 2019-03-14 18:06:44 -05:00
versions.props Update default version file 2017-06-21 12:13:36 -06:00

README.md

ASP.NET Security Providers

NOTICE: This repository has been relocated as a sub-directory under the Steeltoe repository. All issues and future development will be done under that repository.

This repository contains various security providers which simplify the process of using Security services on CloudFoundry.

Windows Master (Stable): AppVeyor Master

Windows Dev (Less Stable): AppVeyor Dev

Linux/OS X Master (Stable): Travis Master

Linux/OS X Dev (Less Stable): Travis Dev

.NET Runtime & Framework Support

The components are intended to support both .NET 4.6.1+ and .NET Core (CoreCLR/CoreFX).

Where appropriate, the components are built and unit tested on Windows, Linux and OSX.

Where appropriate, the components and samples have been tested on .NET Core SDK, .NET 4.6.1+, and on ASP.NET Core 2.0.

Usage

For more information on how to use these components see the online Steeltoe documentation.

Nuget Feeds

All new development is done on the dev branch. More stable versions of the components can be found on the master branch. The latest prebuilt packages from each branch can be found on one of two MyGet feeds. Released version can be found on nuget.org.

Building Pre-requisites

To build and run the unit tests:

  1. .NET Core SDK 2.0.3 or greater
  2. .NET Core Runtime 2.0.3

Building Packages & Running Tests - Windows

To build the packages on windows:

  1. git clone ...
  2. cd clone directory
  3. cd src/project (e.g. cd src/Steeltoe.Security.Authentication.CloudFoundry)
  4. dotnet restore
  5. dotnet pack --configuration Release or Debug

The resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src/Steeltoe.Security.Authentication.CloudFoundry/bin)

To run the unit tests:

  1. git clone ...
  2. cd clone directory
  3. cd test/test project (e.g. cd test/Steeltoe.Security.Authentication.CloudFoundry.Test)
  4. dotnet restore
  5. dotnet xunit -verbose

Building Packages & Running Tests - Linux/OSX

To build the packages on Linux/OSX:

  1. git clone ...
  2. cd clone directory
  3. cd src/project (e.g.. cd src/Steeltoe.Security.Authentication.CloudFoundry)
  4. dotnet pack --configuration Release or Debug

The resulting artifacts can be found in the bin folder under the corresponding project. (e.g. src/Steeltoe.Security.Authentication.CloudFoundry/bin

To run the unit tests:

  1. git clone ...
  2. cd clone directory
  3. cd test/test project (e.g. cd test/Steeltoe.Security.Authentication.CloudFoundry.Test)
  4. dotnet xunit -verbose -framework netcoreapp2.0

Sample Applications

See the Samples repository for examples of how to use these packages.