Using Tye with Dapr
I find the multi-target debugging provided by VS Code a rewarding experience for Dapr solutions with several projects; nevertheless, there are always many options to accomplish the same task. One option for this particular task is Tye.
A new open source initiative by the .NET Foundation, Project Tye, is currently under development as an experimental project. For more information, check out the documentation at https://github.com/dotnet/tye/blob/master/docs/.
Project Tye is a tool to make developing, testing, and deploying microservices and distributed applications easier. In the upcoming sections, we will explore Project Tye in conjunction with Dapr.
Installing Tye
At the time of writing, 0.10.0
is the latest public version of Tye. With the following command, you can install it in your environment:
PS C:\Repos\practical-dapr\chapter02> dotnet tool install -g Microsoft.Tye --version "0.10.0-alpha.21420.1" You can invoke the...