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
To build the dotnet core components you need the `dotnet` command line utility installed.
2
2
It can be obtained for your chosen platform [here](https://www.microsoft.com/net/core#macosx).
3
3
4
-
* First run `./fake.sh GenerateApi` (linux/osx) or `fake.bat GenerateApi` (windows) to trigger code generation and complete a standard mono/.NET build.
5
-
* cd into the `projects/client/RabbitMQ.Client` directory and run `dotnet build`.
6
-
* To run the tests cd into `projects/client/Unit.Runner` and run `dotnet run`. This will run the entire test suite. There is currently no way to only run a subset of tests.
4
+
* Run `./fake.sh GenerateApi` (linux/osx) or `fake.bat GenerateApi` (windows) to trigger code generation and complete a standard mono/.NET build.
5
+
* cd into the `projects/client/RabbitMQ.Client` directory
6
+
* Run `dotnet restore`
7
+
* Run `dotnet build`
8
+
* To run the tests cd into `projects/client/Unit.Runner`
9
+
* Run `dotnet restore`
10
+
* Run `dotnet run`. This will run the entire test suite. There is currently no way to only run a subset of tests.
0 commit comments