Skip to content

Commit

Permalink
Addeded additional "Building and Testing" info to the repo's readme f…
Browse files Browse the repository at this point in the history
…ile.
  • Loading branch information
rclabo committed Aug 12, 2021
1 parent bd31fa5 commit 0dadd00
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Building on the Command Line is currently only supported on Windows.

##### Execution

To build the source, clone or download and unzip the repository. From the repository root, execute:
To build the source, clone or download and unzip the repository. From the repository root, execute the `batch.bat` file from a command prompt and include the desired options from the build options table below:

```
> build [options]
Expand Down Expand Up @@ -228,6 +228,14 @@ To build the source, clone or download and unzip the repository. From the reposi
</tr>
</table>

For example the following command creates a Release build with NuGet package version 4.8.0‑beta00014b and assembly file version 4.8.0:

```
> build ‑‑Configuration:Release ‑pv:4.8.0‑beta00014b ‑v:4.8.0
```

In the above example we are using "b" at the end of the version to indicate this is not a publically released beta version but rather the ouput of a build from master which occured after beta00014 but before beta00015 was released.

NuGet packages are output by the build to the `/release/NuGetPackages/` directory. Test results (if applicable) are output to the `/release/TestResults/` directory.

You can setup Visual Studio to read the NuGet packages like any NuGet feed by following these steps:
Expand Down

0 comments on commit 0dadd00

Please sign in to comment.