-
Notifications
You must be signed in to change notification settings - Fork 11
Code Development
perpetualKid edited this page Jan 7, 2025
·
2 revisions
Before building the source for first time (or after some major version upgrades when announced here), you will need to restore dotnet tools such as the Monogame effect code compiler mgfxc. Unfortunately as of now, dotnet build does not restore tools itself (dotnet bugtracker).
Use a Powershell or Developer Commandline, change to the "Source" folder, and run dotnet tool restore
cd .\Source
dotnet tool restoreThe outcome should look similar to this:

Once done, you can build the source from Visual Studio (Build --> Rebuild Solution) or run dotnet build from command line.
