mirror of
https://github.com/logos-co/velopack.git
synced 2026-08-31 13:41:07 +00:00
Gives more details for which option needs to be checked in the visual installer, since it's now standardized for the last 2 versions of Visual Studio. I attempted to explain it in a way that won't require updates often. Not sure how to give more details about the version of VC++ without having something that would need frequent updates.
25 lines
1012 B
Markdown
25 lines
1012 B
Markdown
| [docs](..) / [contributing](.) / building-squirrel.md
|
|
|:---|
|
|
|
|
# Building Squirrel
|
|
|
|
Squirrel.Windows is a fairly typical C# / C++ project, the only special part is making sure to clone submodules via the command shown below.
|
|
|
|
For the Impatient:
|
|
|
|
```sh
|
|
git clone https://github.com/squirrel/squirrel.windows
|
|
cd squirrel.windows
|
|
git submodule update --init --recursive ## THIS IS THE PART YOU PROBABLY FORGOT
|
|
.\.NuGet\NuGet.exe restore
|
|
msbuild /p:Configuration=Release
|
|
```
|
|
|
|
**Tip:** You can compile the Squirrel.Windows solution with Visual Studio version 2013 and above (including community edition).
|
|
|
|
**Tip:** For Visual Studio versions that use the Visual Studio Installer (2017/2019 and above), you will need to have at least both Desktop .NET development and Desktop C++ development workloads checked in the Visual Studio Installer. You will also need to make sure that the individual package for the VC++ version used by Squirrel is checked.
|
|
|
|
---
|
|
| Return: [Table of Contents](../readme.md) |
|
|
|----|
|