a378d53f4e | ||
---|---|---|
config | ||
src | ||
test | ||
.appveyor.yml | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
Common.sln | ||
License.txt | ||
README.md | ||
nuget.config | ||
open_source_licenses.txt | ||
stylecop.json | ||
targetframework.props | ||
versions.props |
README.md
Steeltoe Common Packages
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 several packages that are common to other Steeltoe components.
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:
- .NET Core SDK 2.0.3 or greater
- .NET Core Runtime 2.0.3
Building Packages & Running Tests - Windows
To build the packages on windows:
- git clone ...
- cd
<clone directory>
- cd src\
<project>
(e.g. cd src\Steeltoe.Common) - 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.Common\bin)
To run the unit tests:
- git clone ...
- cd
<clone directory>
- cd test\
<test project>
(e.g. cd test\Steeltoe.Common.Test) - dotnet restore
- dotnet xunit -verbose
Building Packages & Running Tests - Linux/OSX
To build the packages on Linux/OSX:
- git clone ...
- cd
<clone directory>
- cd src/
<project>
(e.g.. cd src/Steeltoe.Common) - 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.Common/bin
To run the unit tests
- git clone ...
- cd
<clone directory>
- cd test\
<test project>
(e.g. cd test/Steeltoe.Common.Test) - dotnet restore
- dotnet xunit -verbose -framework netcoreapp2.0