Vvvvc.exe complains about missing packages

Hey,

I’m suspecting this is a bug, but might have gotten something wrong. I’m trying to build GammaLauncher for win-Arm using nuke. When building from the editor it goes all well, but when trying with vvvvc.exe, it complains about a missing package :

[ERR] Compile: Unhandled exception. VL.Lang.CompileException: Compilation failed: Error: Missing package: RestSharp
[ERR] Compile:    at Program.Main(String[] args)
[ERR] Compile:    at Program.<Main>(String[] args)

The package is indeed installed in the default location, and the IDE is totally happy when building the patch.

I’m attempting to run vvvvc against GammaLauncher.vl with the following arguments:

--output-type WinExe --platform x64 --clean

Repro steps

Thanks in advance!

There’s usually no need to set the platform variable. Also your template file was setting it to x64 which was incompatible with arm64.
The important variable when building an executable is the rid (runtime identifier), see my PR

After those changes it compiled just fine over here - no idea about the missing package error. I had to branch off from one commit before your main because that one seems to have syntax errors.

Thanks @Elias, will come back to it this week :-)