You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Options.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ Don't customize paths to background and icon, — just follow conventions.
27
27
*[Application package.json](#AppMetadata)
28
28
*[Development package.json](#DevMetadata)
29
29
*[.build](#BuildMetadata)
30
+
*[.build.appx](#AppXOptions)
30
31
*[.build.dmg](#DmgOptions)
31
32
*[.build.dmg.window](#DmgWindow)
32
33
*[.build.fileAssociations](#FileAssociation)
@@ -93,6 +94,19 @@ Don't customize paths to background and icon, — just follow conventions.
93
94
| forceCodeSigning | <aname="BuildMetadata-forceCodeSigning"></a>Whether to fail if application will be not signed (to prevent unsigned app if code signing configuration is not correct).
Please see [Windows AppX docs](https://msdn.microsoft.com/en-us/library/windows/apps/br211453.aspx).
101
+
102
+
| Name | Description
103
+
| --- | ---
104
+
| backgroundColor | <aname="AppXOptions-backgroundColor"></a>The background color of the app tile. Please see [Visual Elements](https://msdn.microsoft.com/en-us/library/windows/apps/br211471.aspx).
105
+
| publisher | <aname="AppXOptions-publisher"></a>* Describes the publisher information. The Publisher attribute must match the publisher subject information of the certificate used to sign a package. For now, required.
106
+
| displayName | <aname="AppXOptions-displayName"></a>A friendly name that can be displayed to users. Corresponds to [Properties.DisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211432.aspx).
107
+
| publisherDisplayName | <aname="AppXOptions-publisherDisplayName"></a>A friendly name for the publisher that can be displayed to users. Corresponds to [Properties.PublisherDisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211460.aspx).
108
+
| identityName | <aname="AppXOptions-identityName"></a>Describes the contents of the package. The Name attribute is case-sensitive. Corresponds to [Identity.Name](https://msdn.microsoft.com/en-us/library/windows/apps/br211441.aspx).
Please see [Windows AppX docs](https://msdn.microsoft.com/en-us/library/windows/apps/br211453.aspx).
186
+
*/
182
187
exportinterfaceAppXOptions{
183
-
// readonly flatten?: boolean
188
+
/*
189
+
The background color of the app tile. Please see [Visual Elements](https://msdn.microsoft.com/en-us/library/windows/apps/br211471.aspx).
190
+
*/
184
191
readonlybackgroundColor?: string|null
192
+
185
193
readonlymakeappxArgs?: Array<string>|null
186
194
195
+
/*
196
+
Describes the publisher information. The Publisher attribute must match the publisher subject information of the certificate used to sign a package. For now, required.
197
+
*/
187
198
readonlypublisher?: string|null
188
-
}
199
+
200
+
/*
201
+
A friendly name that can be displayed to users. Corresponds to [Properties.DisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211432.aspx).
202
+
*/
203
+
readonlydisplayName?: string|null
204
+
205
+
/*
206
+
A friendly name for the publisher that can be displayed to users. Corresponds to [Properties.PublisherDisplayName](https://msdn.microsoft.com/en-us/library/windows/apps/br211460.aspx).
207
+
*/
208
+
readonlypublisherDisplayName?: string|null
209
+
210
+
/*
211
+
Describes the contents of the package. The Name attribute is case-sensitive. Corresponds to [Identity.Name](https://msdn.microsoft.com/en-us/library/windows/apps/br211441.aspx).
0 commit comments