You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-3
Original file line number
Diff line number
Diff line change
@@ -60,16 +60,27 @@ If you want to include Akka.NET in your project, you can [install it directly fr
60
60
To install Akka.NET Distributed Actor Framework, run the following command in the Package Manager Console
61
61
62
62
```
63
-
PM> Install-Package Akka
64
-
PM> Install-Package Akka.Remote
63
+
PM> Install-Package Akka.Hosting
65
64
```
66
65
66
+
> [Akka.Hosting](https://github.com/akkadotnet/Akka.Hosting) includes the base Akka NuGet package and also provides an easy interface to integrate Akka.NET with the most-used parts of the Microsoft.Extensions ecosystem: Configuration, Logging, Hosting, and DependencyInjection. We encourage developers to adopt it.
67
+
67
68
And if you need F# support:
68
69
69
70
```
70
71
PM> Install-Package Akka.FSharp
71
72
```
72
73
74
+
### Akka.NET Project Templates
75
+
76
+
To create your own Akka.NET projects using [our templates (Akka.Templates)](https://github.com/akkadotnet/akkadotnet-templates), install them via the `dotnet` CLI:
77
+
78
+
```
79
+
dotnet new install "Akka.Templates::*"
80
+
```
81
+
82
+
This will make our templates available via `dotnet new` on the CLI _and_ as new project templates inside any .NET IDE such as Visual Studio or JetBrains Rider. You can view the full list of templates included in our package here: https://github.com/akkadotnet/akkadotnet-templates#available-templates
83
+
73
84
## Builds
74
85
Please see [Building Akka.NET](http://getakka.net/community/building-akka-net.html).
75
86
@@ -79,7 +90,7 @@ To access nightly Akka.NET builds, please [see the instructions here](http://get
79
90
If you need help getting started with Akka.NET, there's a number of great community resources online:
80
91
81
92
* Subscribe to the Akka.NET project feed on Twitter: https://twitter.com/AkkaDotNet (@AkkaDotNet)
82
-
* Join the Akka.NET project Gitter chat: https://gitter.im/akkadotnet/akka.net
93
+
* Join the Akka.NET Discord: https://discord.gg/GSCfPwhbWP
83
94
* Ask Akka.NET questions on Stack Overflow: http://stackoverflow.com/questions/tagged/akka.net
84
95
85
96
If you and your company are interested in getting professional Akka.NET support, you can [contact Petabridge for dedicated Akka.NET support](https://petabridge.com/).
0 commit comments