Fix incorrect reference to running two commands (#269)

This commit is contained in:
Sarah Marshall 2020-06-19 17:55:12 -07:00 коммит произвёл GitHub
Родитель a22724461e
Коммит c285352607
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -59,7 +59,7 @@ To build on other platforms:
2. Run [bootstrap.sh](./bootstrap.sh)
* This script prepares and builds the native (C++) full-state simulator.
* You only need to run it once.
3. From the command line, run these two commands:
3. From the command line, run:
* `dotnet build Simulation.sln`
The `Simulation.sln` solution does not include the full-state simulator. To integrate any changes with the rest of the simulation components, you need to manually build it using `make` in the `src\Simulation\Native\build` folder.
@ -72,7 +72,7 @@ All unit tests are part of the `Simulation.sln` solution. To run the tests:
* From [Visual Studio](https://docs.microsoft.com/en-us/visualstudio/test/getting-started-with-unit-testing?view=vs-2019#run-unit-tests):
* Open Test Explorer by choosing Test > Windows > Test Explorer from the top menu bar.
* Run your unit tests by clicking Run All.
* From the command line run:
* From the command line, run:
* `dotnet test Simulation.sln`