docs/getting-started/2-packaging.md
| docs / getting-started / 2-packaging.md |
|---|
Packaging is the process of building, packing, and preparing MyApp release packages for distribution.
The first step in preparing the application for distribution is to build the application.
Set MyApp Version - set the initial application version.
Properties\AssemblyInfo.cs
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
Switch to Release - switch your build configuration to Release.
Build MyApp - build your application to ensure the latest changes are included in the package we will be creating.
Squirrel uses NuGet for bundling application files and various application properties (e.g., application name, version, description) in a single release package.
Section NuGet Package Metadata provides additional details on using NuGet and .nuspec files to automate the packing of your application. We will be going through the process using the NuGet Package Explorer to manually create a NuGet package.
Properties\Assembly.cslib folder and the net45 folder to the project. Squirrel is expecting a single lib / net45 directory provided regardless of whether your app is a net45 application.bin\Release needed by MyApp to execute (including the various files required by Squirrel).
MyApp.sln directory). Follow the given naming format (e.g., MyApp.1.0.0.nupkg).Releasifying is the process of preparing the MyApp.1.0.0.nupkg for distribution.
You use the Squirrel.exe tool that was included in the Squirrel.Windows package you installed in the MyApp.sln previously.
Use the Package Manager Console to execute Squirrel.exe --releasify command.
PM> Squirrel --releasify MyApp.1.0.0.nupkg
Tip: If you get an error stating that ...'Squirrel' is not recognized... then you may simply need to restart Visual Studio so the Package Manager Console will have loaded all the package tools.
The Squirrel --releasify command completes the following:
Releases Directory - creates a Releases directory (in the MyApp.sln directory by default).Setup.exe - creates a Setup.exe file which includes the latest version of the application to be installed.RELEASES File - creates a file that provides a list of all release files for MyApp to be used during the update processMyApp.1.0.0-full.nupkg - copies the package you created to the Releases directory.MyApp.*.*.*-delta.nupkg - if you are releasing an update, releasify creates a delta file package to reduce the update package size (see Updating for details).C:\Projects\MyApp\Releases
| Previous: 1. Integrating | Next: 3. Distributing |
|---|