I am currently creating the 1.35.0 version of VSCodium in the portable app format but I have a problem;
It was proposed that I use the build in portable mode and the problem is that I have a error when I install on a VSCodium already installed and with only this in my installer.ini;
[FilesToPreserve]
PreserveFile1=App\VSCodium\data\user-data\User\settings.json
[DirectoriesToPreserve]
PreserveDirectory1=App\VSCodium\data
It is giving me this.
It's like the installater want to open a file when it's a directory.
So when someone will update the app, they will lose every data they have...
EDIT: Now when there is a update everything is still there but not the settings.json that I include for removing auto-update, telemetry, etc. So if someone does an upgrade they lose their settings. And now my problem is that I don't know how to say to the installater to keep or don't touch everything in the App\VSCodium\data AND the settings.json in App\VSCodium\data\user-data\User\settings.json even if it exist (because I include it in the paf.exe).
EDIT2: So finaly all I have to do is a filemove.. And the release will be tomorrow.