Skip to content

Commit

Permalink
Update development-tips.md (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
fletcherm authored Jan 28, 2023
1 parent e02aecd commit b766ec1
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions documents/development-tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

## Quick start

These environment and build steps were tested on a Windows 11 PC and macOS Catalina laptop. Updated 2021-12-28.
These environment and build steps were tested on a Windows 11 PC and macOS Ventura laptop. Updated 2023-01-28.

We expect the overall process to remain the same; however some steps may shift slightly over time. We'll keep this updated to the best of our ability.

### Prerequisites

* .NET Core SDK 6
* 6.0.101 at the time of this writing
* .NET Core SDK
* 7.0.102 at the time of this writing
* x64 was used; not sure about other versions
* Ubuntu Linux 21.10
* Following [Microsoft's installation instructions](https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu#2110-)
Expand All @@ -34,18 +34,20 @@ sudo apt-get update; \
* `choco install dotnetcore-sdk`
* macOS
* Installed via [Homebrew](https://brew.sh) - [Homebrew .NET Core SDK](https://formulae.brew.sh/cask/dotnet-sdk)
* `brew cask install dotnet-sdk`
* `brew install --cask dotnet-sdk`
* (not sure how to install a specific version with this command -- cross your fingers that future versions are backward compatible)

## Build

* Debug
* `dotnet build`
* Yep, that's it!
* Artifacts are dumped to `MBBSEmu\bin\Debug\netcoreapp5.0`
* Artifacts are dumped to `MBBSEmu\bin\Debug\net7.0`
* The last directory name may change based on major .net version changes
* Release
* `dotnet build --configuration Release`
* Artifacts are dumped to `MBBSEmu\bin\Release\netcoreapp5.0`
* Artifacts are dumped to `MBBSEmu\bin\Release\net7.0`
* The last directory name may change based on major .net version changes

## Run the tests

Expand Down

0 comments on commit b766ec1

Please sign in to comment.