This repository contains various security providers which simplify the process of using Security services on CloudFoundry.
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.
For more information on how to use these components see the online Steeltoe documentation.
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.
To build and run the unit tests:
- .NET Core SDK 2.0.3 or greater
- .NET Core Runtime 2.0.3
To build the packages on windows:
- git clone ...
- cd clone directory
- cd src/project (e.g. cd src/Steeltoe.Security.Authentication.CloudFoundry)
- dotnet restore
- 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:
- git clone ...
- cd clone directory
- cd test/test project (e.g. cd test/Steeltoe.Security.Authentication.CloudFoundry.Test)
- dotnet restore
- dotnet xunit -verbose
To build the packages on Linux/OSX:
- git clone ...
- cd clone directory
- cd src/project (e.g.. cd src/Steeltoe.Security.Authentication.CloudFoundry)
- 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:
- git clone ...
- cd clone directory
- cd test/test project (e.g. cd test/Steeltoe.Security.Authentication.CloudFoundry.Test)
- dotnet xunit -verbose -framework netcoreapp2.0
See the Samples repository for examples of how to use these packages.