LaunchDarkly has published an SDK contributor's guide that provides a detailed explanation of how our SDKs work. See below for additional information on how to contribute to this project.
The LaunchDarkly SDK team monitors the issue tracker in this repository. Bug reports and feature requests specific to this package should be filed in this issue tracker. The SDK team will respond to all newly filed issues within two business days.
We encourage pull requests and other contributions from the community. Before submitting pull requests, ensure that all temporary or unintended code is removed. Don't worry about adding reviewers to the pull request; the LaunchDarkly SDK team will add themselves. The SDK team will acknowledge all pull requests within two business days.
This project has multiple target frameworks as described in README.md
. Download and install the latest .NET SDK tools first.
The project has no external package dependencies.
To install all required packages:
dotnet restore
To build all targets of the project without running any tests:
dotnet build src/LaunchDarkly.Cache
Or, to build only one target (in this case .NET Standard 2.0):
dotnet build src/LaunchDarkly.Cache -f netstandard2.0
To run all unit tests, for all targets:
dotnet test test/LaunchDarkly.Cache.Tests
Or, to run tests only for one target (in this case .NET Core 2.1):
dotnet test test/LaunchDarkly.Cache.Tests -f netcoreapp2.1