Skip to content

sketch7/MessagePack.MediaTypeFormatter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ff7233a · Apr 2, 2020

History

8 Commits
Apr 2, 2020
Apr 2, 2020
Apr 2, 2020
Apr 2, 2020
Apr 2, 2020
Apr 2, 2020
Apr 2, 2020
Mar 8, 2018
Apr 2, 2020
Apr 2, 2020
Jul 24, 2018
Apr 2, 2020
Sep 17, 2019
Mar 8, 2018
Mar 8, 2018
Mar 8, 2018
Apr 2, 2020

Repository files navigation

MessagePack MediaTypeFormatter

CircleCI NuGet version

Media type formatter for MessagePack.

Quick links

Change logs | Project Repository

Installation

Available for .NET Standard 2.0+

NuGet

PM> Install-Package Sketch7.MessagePack.MediaTypeFormatter

csproj

<PackageReference Include="Sketch7.MessagePack.MediaTypeFormatter" Version="*" />

Usage

var messagePackMediaTypeFormatter = new MessagePackMediaTypeFormatter(ContractlessStandardResolver.Instance);

Contributing

Setup Machine for Development

Install/setup the following:

  • NodeJS v8+
  • Visual Studio Code or similar code editor
  • Git + SourceTree, SmartGit or similar (optional)

Commands

# run tests
npm test

# bump version
npm version minor --no-git-tag # major | minor | patch | prerelease

# nuget pack (only)
npm run pack

# nuget publish dev (pack + publish + clean)
npm run publish:dev