Dapr SDK for .NET
Go to file
gmanvel 02dd7eb814 changing byte[0] to Arry.Empty<byte>() (#120) 2019-10-21 09:59:18 -07:00
.github add templates 2019-10-11 10:23:01 -07:00
docs Updated docs for .NET Actor (#115) 2019-10-19 13:31:27 -07:00
properties adding generated grpc client, updating nuget project link and updating version (#105) 2019-10-14 20:38:12 -07:00
samples Removed unused usings (#122) 2019-10-21 09:53:55 -07:00
src changing byte[0] to Arry.Empty<byte>() (#120) 2019-10-21 09:59:18 -07:00
test Removed unused usings (#122) 2019-10-21 09:53:55 -07:00
.gitignore ADding launchsettings.json to user port for local launch (#111) 2019-10-17 17:57:48 -07:00
CONTRIBUTING.md Adding contribution guidance and fixing typo in readme (#107) 2019-10-15 18:08:37 -07:00
LICENSE Updating license to MIT in all .cs files. (#81) 2019-10-08 14:54:46 -07:00
README.md Fixing link for API reference (#110) 2019-10-17 10:49:43 -07:00
azure-pipelines.yml adding generated grpc client, updating nuget project link and updating version (#105) 2019-10-14 20:38:12 -07:00
code.sln adding generated grpc client, updating nuget project link and updating version (#105) 2019-10-14 20:38:12 -07:00

README.md

Dapr SDK for .NET

Dapr is a programming model for writing cloud-native applications which are distributed, dynamically scaled, and loosely coupled in nature.

Dapr SDK for .NET allows you to implement the Virtual Actor model, based on the actor design pattern. This SDK can run locally, in a container and in any distributed systems environment.

This repo builds the following packages:

  • Dapr.Client
  • Dapr.Client.Grpc
  • Dapr.AspNetCore
  • Dapr.Actors
  • Dapr.Actors.AspNetCore

Getting Started

Prerequesites

Each project is a normal C# Visual Studio 2019 project. At minimum, you need .NET Core SDK 3.0 to build and generate NuGet packages.

We recommend installing Visual Studio 2019 v16.3 or later which will set you up with all the .NET build tools and allow you to open the solution files. Community Edition is free and can be used to build everything here. Make sure you update Visual Studio to the most recent release. To find a version of .NET Core that can be used with earlier versions of Visual Studio, see .NET SDKs for Visual Studio.

Build

To build everything and generate NuGet packages, run dotnet cli commands. NuGet packages will be dropped in a bin directory at the repo root.

# Build SDK
dotnet build -c Debug  # for release, -c Release

# Run unit-test
dotnet test

# Generate nuget packages in /bin/Debug/
dotnet pack

Each project can also be built individually directly through Visual Studio.

Releases

We publish nuget packages to nuget.org for each release.

Using nugets built locally in your project

RepoRoot is the path where you cloned this repository.

# Add Dapr.Actors nuget package
dotnet add package Dapr.Actors -s <RepoRoot>/bin/<Debug|Release>/

# Add Dapr.Actors.AspNetCore nuget package
dotnet add package Dapr.Actors.AspNetCore -s <RepoRoot>/bin/<Debug|Release>/

Documentation

These articles will help get you started with Dapr runtime and Dapr Actors: