The StreamJsonRpc library offers JSON-RPC 2.0 over any .NET Stream, WebSocket, or Pipe. With bonus support for request cancellation, client proxy generation, and more.
Перейти к файлу
Andrew Arnott df0a3fa03c
Merge pull request #147 from AArnott/fixSdkInstallScript
Fix Install-DotNetSdk.ps1 for Windows machine-wide installations
2022-03-30 10:11:12 -06:00
.devcontainer Touch-ups 2021-11-18 21:43:01 -07:00
.github Update GitHub Actions to more closely resemble AzP 2022-02-04 20:34:01 -07:00
.vscode Touch-ups 2021-11-18 21:43:01 -07:00
azure-pipelines Update GitHub Actions to more closely resemble AzP 2022-02-04 20:34:01 -07:00
src Secure p/invoke native library loads 2021-12-02 10:59:00 -07:00
test Bump coverlet.msbuild from 3.1.1 to 3.1.2 (#144) 2022-03-06 14:25:10 +00:00
tools Merge pull request #147 from AArnott/fixSdkInstallScript 2022-03-30 10:11:12 -06:00
.editorconfig Remove CA1508, which has too many false positives 2021-11-22 15:49:58 -07:00
.gitattributes Checkout ps1 with LF endings 2020-09-25 12:26:36 -06:00
.gitignore Add Directory.Build.rsp file 2020-03-03 09:50:03 -07:00
Apply-Template.ps1 Patch AssemblyInfo.cs 2021-12-03 08:06:54 -07:00
CONTRIBUTING.md Beef up contrib doc explanation of init.ps1 2020-08-23 12:58:47 -06:00
Directory.Build.props Re-enable transitive P2Ps 2022-03-09 17:14:01 -07:00
Directory.Build.rsp Add Directory.Build.rsp file 2020-03-03 09:50:03 -07:00
Directory.Build.targets Get WPF inner-builds to import NuGet packages' imports 2020-08-10 09:13:44 -06:00
Expand-Template.cmd Add Expand-Template.cmd stub 2019-11-14 21:57:40 -07:00
Expand-Template.ps1 Fix Expand-Template to replace tokens in AssemblyInfo.cs 2022-01-13 08:26:38 -07:00
LICENSE Add script for proper expansion 2019-06-17 09:37:46 -06:00
Library.sln Add README as solution item 2020-05-11 09:40:59 -06:00
README.md Rename master branch to main 2021-02-04 17:33:40 -07:00
azure-pipelines.yml Use batched CI 2021-07-01 06:50:34 -06:00
global.json Update .NET SDK to 6.0.200 2022-03-08 09:02:53 -07:00
init.cmd Fix up init.cmd to set env vars from .ps1 child process 2020-08-19 12:13:49 -06:00
init.ps1 Format whitespace in init.ps1 2021-11-29 16:17:37 -07:00
nuget.config Stabilize package restore in the face of outside influences 2021-09-23 16:56:28 -06:00
strongname.snk Fix build and snk updates during template expansion 2020-07-24 08:46:23 -06:00
stylecop.json Use top-level test folder 2020-04-09 23:33:39 -06:00
version.json Disable default, redundant NB.GV behavior 2021-11-02 06:13:29 -06:00

README.md

Your Library

An awesome template for your awesome library

NuGet package

Azure Pipelines status GitHub Actions status codecov

Features

  • Follow the best and simplest patterns of build, pack and test with dotnet CLI.
  • Init script that installs prerequisites and auth helpers, supporting both non-elevation and elevation modes.
  • Static analyzers: FxCop and StyleCop
  • Read-only source tree (builds to top-level bin/obj folders)
  • Auto-versioning (via Nerdbank.GitVersioning)
  • Builds with a "pinned" .NET Core SDK to ensure reproducible builds across machines and across time.
  • Automatically pack the library and publish it as an artifact, and even push it to some NuGet feed for consumption.
  • Testing
    • Testing on .NET Framework, multiple .NET Core versions
    • Testing on Windows, Linux and OSX
    • Tests that crash or hang in Azure Pipelines automatically collect dumps and publish as a pipeline artifact for later investigation.
  • Cloud build support
    • YAML based build for long-term serviceability, and PR review opportunities for any changes.
    • Azure Pipelines and GitHub Action support
    • Emphasis on PowerShell scripts over reliance on tasks for a more locally reproducible build.
    • Code coverage published to Azure Pipelines
    • Code coverage published to codecov.io so GitHub PRs get code coverage results added as a PR comment

Consumption

Once you've expanded this template for your own use, you should run the Expand-Template.ps1 script to customize the template for your own project.

Further customize your repo by:

  1. Verify the license is suitable for your goal as it appears in the LICENSE and stylecop.json files and the Directory.Build.props file's PackageLicenseExpression property.
  2. Reset or replace the badges at the top of this file.