Contribute by adding more apps, since it is very difficult to add them one by one.
To add an app go to the Apps.cs
file, all the apps will be there.
{
'Development': { // This is where the category will be called, within that category are the apps.
'vscode': { // ID of the app
'name': 'Visual Studio Code', // Name of the app
'icon': 'vscode.png', // Icon
'downloadUrl': 'https://code.visualstudio.com/sha/download?build=stable&os=win32-x64-user', // Download URL
'type': 'exe', // Type of executable (exe or msi)
'params': '/silent', // Parameters to add to the executable
'afterParams': 'taskkill /f /im Code.exe' // Post-install command
}
}
}
- Add the icon image to the
icons
folder (it must be in low quality, to save space). - Add
<None Remove="icons\icon.png" />
in the<ItemGroup>
inautoinstall.csproj
. - Add
<Resource Include="icons\icon.png" />
in the second<ItemGroup>
inautoinstall.csproj
.