Skip to content

Commit 02f84d7

Browse files
authored
Updating README.md: using mono or dotnet
2 parents 16526be + 4cd128b commit 02f84d7

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,21 @@ Get it
2828

2929
Open it
3030
- using MonoDevelop or Visual Studio
31-
- using Texteditor gedit or GNU emacs do `msbuild clrzmq4.mono.sln` or `nuget restore && msbuild clrzmq4.netcore.sln`.
31+
- using Texteditor gedit or GNU emacs
3232

3333
Run it
3434
- You can't run ZeroMQ/clrzmq4 directly, because this is a library.
35-
- using mono framework: `mono bin/Debug/ZGuideExamples.exe`
36-
- using dotnet framwork: `dotnet run --project ZGuideExamples/ZGuideExamples.netcore.csproj`
35+
- using mono framework:
36+
```
37+
msbuild clrzmq4.mono.sln /p:Configuration=Release
38+
mono bin/Release/ZGuideExamples.exe Espresso
39+
```
40+
- using dotnet framwork
41+
```
42+
nuget restore clrzmq4.netcore.sln
43+
dotnet msbuild clrzmq4.netcore.sln
44+
dotnet run --project ZGuideExamples/ZGuideExamples.netcore.csproj Espresso
45+
```
3746

3847
Read [ZeroMQ - The Guide](http://zguide.zeromq.org/cs:all)
3948
- ZeroMQ - The Guide [Examples in C#](http://github.com/metadings/zguide/tree/master/examples/C%23)

0 commit comments

Comments
 (0)