File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,21 @@ Get it
28
28
29
29
Open it
30
30
- 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
32
32
33
33
Run it
34
34
- 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
+ ```
37
46
38
47
Read [ ZeroMQ - The Guide] ( http://zguide.zeromq.org/cs:all )
39
48
- ZeroMQ - The Guide [ Examples in C#] ( http://github.com/metadings/zguide/tree/master/examples/C%23 )
You can’t perform that action at this time.
0 commit comments