Interfaces and components used across other Steeltoe packages
Перейти к файлу
Tim Hess ffeeccded1 Merge branch 'dev' 2019-02-22 10:44:07 -06:00
config Update asp.net core test ref 2018-07-26 09:16:24 -06:00
src Pluggable HttpClient-side load balancing (both loadbalancer-first and discovery-first options available), config-based service discovery [#161604101, #164080439] 2019-02-22 10:42:27 -06:00
test Pluggable HttpClient-side load balancing (both loadbalancer-first and discovery-first options available), config-based service discovery [#161604101, #164080439] 2019-02-22 10:42:27 -06:00
.appveyor.yml Sign Nuget packages 2018-10-18 13:44:21 -05:00
.gitattributes Initial checkin 2017-10-09 10:15:35 -06:00
.gitignore Enable cross platform compilation of the solution. 2018-12-21 17:37:40 -05:00
.travis.yml build 2.2.0, don't build tags, update sdk used in Travis 2018-10-12 11:49:53 -05:00
Common.sln use the new CI process [#153640396] 2018-04-02 10:43:45 -05:00
License.txt Initial checkin 2017-10-09 10:15:35 -06:00
README.md housekeeping 2018-04-02 10:30:34 -05:00
nuget.config Initial checkin 2017-10-09 10:15:35 -06:00
open_source_licenses.txt Initial checkin 2017-10-09 10:15:35 -06:00
stylecop.json Add Stylecop.json 2017-12-12 14:03:49 -07:00
targetframework.props Enable cross platform compilation of the solution. 2018-12-21 17:37:40 -05:00
versions.props Initial checkin 2017-10-09 10:15:35 -06:00

README.md

Steeltoe Common Packages

This repository contains several packages that are common to other Steeltoe components.

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

Nuget Feeds

All new development is done on the dev branch. More stable versions of the packages 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.Common)
  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.Common\bin)

To run the unit tests:

  1. git clone ...
  2. cd <clone directory>
  3. cd test\ <test project> (e.g. cd test\Steeltoe.Common.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.Common)
  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.Common/bin

To run the unit tests

  1. git clone ...
  2. cd <clone directory>
  3. cd test\ <test project> (e.g. cd test/Steeltoe.Common.Test)
  4. dotnet restore
  5. dotnet xunit -verbose -framework netcoreapp2.0