Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Identifies the application deployed in a ClickOnce deployment.
<assemblyIdentity
name
version
publicKeyToken
processorArchitecture
language
/>
Elements and Attributes
The assemblyIdentity element is required. It contains no child elements and has the following attributes.
| Attribute | Description |
|---|---|
|
Required. Identifies the name of the application. If |
|
Required. Specifies the version number of the application in the following format: major.minor.build.revision |
|
Optional. Specifies a 16-character hexadecimal string that represents the last 8 bytes of the |
|
Required. Specifies the processor. The valid values are |
|
Required. Identifies the two part language codes (for example, en-US) of the assembly. This element is in the |
Examples
The following code example illustrates an assemblyIdentity element in a ClickOnce application manifest. This code example is part of a larger example provided in ClickOnce Application Manifest.
<!-- Identify the application. -->
<assemblyIdentity name="DatumCorpApp.exe"
version="1.0.0.0" publicKeyToken="0123456789abcdef"
processorArchitecture="x86" language="neutral"/>