๐ชBuilding on Windows
How to build on Windows
To build RuntimeTrim on Windows, you must be running a supported version of Windows. We recommend that you run Windows 10 or later.
Using Visual Studio 2019+
Download and install Visual Studio
Once installed, open Visual Studio and click on
Clone Repository
In the repository location field, write
https://github.com/Aptivi/RuntimeTrim.git
Press
Clone
. The clone may need to take a few minutes depending on your Internet connection.Press
Solution Explorer
ยปSwitch Views
and double click onRuntimeTrim.sln
Press
Start
or pressBuild
ยปBuild Solution
to buildNavigate to the build output folder,
KSBuild
, and double click on theRuntimeTrim.exe
file
Using the command-line
If you prefer using the command-line, follow these steps:
Open
Git Bash
on your work directoryExecute
git clone https://github.com/Aptivi/RuntimeTrim.git
Navigate to the cloned repository,
RuntimeTrim
Execute
dotnet restore
anddotnet build
After building is done, run
dotnet run
onRuntimeTrim/RuntimeTrim.csproj
Last updated