docs/using/naming.md
| docs / using / naming.md |
|---|
In addition to the NuGet Package Metadata, there are other places that squirrel pulls naming information from. Here is the logic:
The shortcut name is selected from the first non-null item below:
[assembly: AssemblyProduct("MyApp") (from AssemblyInfo.cs)title property.[assembly: AssemblyDescription("MyApp") (from AssemblyInfo.cs)The local install location is determined by the id in the NuGet package metadata.
%LocalAppData%\<NuGet Package ID>Warning: Using [dots] (i.e., "."'s) in your package id will cause issues (see issue #523).
The entry in the Windows Uninstall is determined as follows:
title propertyThe Squirrel --releasify command will create update packages based on the following:
<NuGet Package ID>-<NuGet Package Version>-delta.nupkg<NuGet Package ID>-<NuGet Package Version>-full.nupkg| Return: Table of Contents |
|---|