Создание приложения ClickOnce (mage.exe) в 64-битной Windows 7 и 32-битной Windows XP - PullRequest
6 голосов
/ 22 декабря 2011

Мое приложение создает приложение ClickOnce с помощью инструмента командной строки Mage .Если я создаю приложение ClickOnce в 32-разрядной версии Windows XP (Visual Studio 2008) и дважды щелкаю файл xxx.application, оно работает нормально.

Тот же проект выполняется в 64-разрядной версии Windows 7 (Visual Studio 2008), и приложение ClickOnce создается нормально, но при запуске файла xx.application возникает ошибка (см. ниже).

Я использую MS-SDK 6.0A "... Program Files \ Microsoft SDKs\ Windows \ v6.0A \ Bin \ mage.exe "

Почему это так?

Сообщение об ошибке

PLATFORM VERSION INFO

    Windows                  : 6.1.7601.65536 (Win32NT)
    Common Language Runtime  : 4.0.30319.239
    System.Deployment.dll    : 4.0.30319.1 (RTMRel.030319-0100)
    clr.dll                  : 4.0.30319.239 (RTMGDR.030319-2300)
    dfdll.dll                : 4.0.30319.1 (RTMRel.030319-0100)
    dfshim.dll               : 4.0.31106.0 (Main.031106-0000)


SOURCES

    Deployment url           : file:///C:/m4/branches/oebb2.2.0/Deployment/M4Desktop.application


IDENTITIES

    Deployment Identity      : M4Desktop.app, Version=2.2.0.26921,
    Culture=neutral, PublicKeyToken=7825390df6ab8bb8,
    processorArchitecture=msil

APPLICATION SUMMARY

    * Installable application.


ERROR SUMMARY

    Below is a summary of the errors, details of these
    errors are listed later in the log.
    * Activation of C:\m4\branches\oebb2.2.0\Deployment\M4Desktop.application resulted in
      exception. Following failure messages were detected:
      + Exception reading manifest from file:///C:/m4/branches/oebb2.2.0/Deployment/M4Desktop_2.2.0.26921/M4Desktop.exe.manifest:

        the manifest may not be valid or the file could not be opened.

      + Application manifest is not semantically valid.
      + Specified <entryPoint> is not valid. Check that the path to the entrypoint is
        well-formed and the entrypoint exists in the deployment.


COMPONENT STORE TRANSACTION FAILURE SUMMARY

    No transaction error was detected.


WARNINGS

    There were no warnings during this operation.

OPERATION PROGRESS STATUS     * [22.12.2011 10:42:49] : Activation of
C:\m4\branches\oebb2.2.0\Deployment\M4Desktop.application has started.
    * [22.12.2011 10:42:49] : Processing of deployment manifest has
successfully completed.     * [22.12.2011 10:42:49] : Installation of the
application has started.


ERROR DETAILS     Following errors were detected during this operation.
    * [22.12.2011 10:42:49]
System.Deployment.Application.InvalidDeploymentException
(ManifestParse)

      - Exception reading manifest from file:///C:/m4/branches/oebb2.2.0/Deployment/M4Desktop_2.2.0.26921/M4Desktop.exe.manifest:
        the manifest may not be valid or the file could not be opened.
      - Source: System.Deployment
      - Stack trace:

        at System.Deployment.Application.ManifestReader.FromDocument(String localPath, ManifestType manifestType, Uri sourceUri)
        at System.Deployment.Application.DownloadManager.DownloadApplicationManifest(AssemblyManifest deploymentManifest, String targetDir, Uri deploymentUri, IDownloadNotification notification, DownloadOptions options, Uri&appSourceUri, String& appManifestPath)
        at System.Deployment.Application.DownloadManager.DownloadApplicationManifest(AssemblyManifest deploymentManifest, String targetDir, Uri deploymentUri, Uri&appSourceUri, String& appManifestPath)
        at System.Deployment.Application.ApplicationActivator.DownloadApplication(SubscriptionState subState, ActivationDescription actDesc, Int64 transactionId, TempDirectory& downloadTemp)
        at System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState&subState, ActivationDescription actDesc)
        at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
        at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)

        --- Inner Exception ---
        System.Deployment.Application.InvalidDeploymentException (ManifestSemanticValidation)
        - Application manifest is not semantically valid.
        - Source: System.Deployment
        - Stack trace:
              at System.Deployment.Application.Manifest.AssemblyManifest.ValidateSemanticsForApplicationRole()
              at System.Deployment.Application.ManifestReader.FromDocument(String localPath, ManifestType manifestType, Uri sourceUri)

        --- Inner Exception ---
        System.Deployment.Application.InvalidDeploymentException (InvalidManifest)
        - Specified <entryPoint> is not valid. Check that the path to the entrypoint is well-formed and the entrypoint exists in the deployment.
        - Source: System.Deployment
        - Stack trace:
            at System.Deployment.Application.Manifest.AssemblyManifest.ValidateSemanticsForApplicationRole()

COMPONENT STORE TRANSACTION DETAILS

1 Ответ

5 голосов
/ 09 января 2012

В моем случае проблема заключалась в несовпадении значений processorArchitecture между тегами <assemblyIdentity> и <entryPoint>.

При создании манифеста с помощью командной строки Mage я не добавил опцию -p x86.

Некоторые DLL-файлы, включенные в приложение ClickOnce, были созданы с x86 solution, но Mage генерировал assemblyIdentity с processorArchitecture=x86 по умолчанию.

Я работаю как с Visual Studio 2008 в 64-битной версии Windows 7, так и с 32-битной Windows XP.

См. Ниже соответствующие части файла манифеста.

Не работает манифест

  <asmv1:assemblyIdentity
      name="M4Desktop.exe"
      version="2.2.0.27055"
      publicKeyToken="7825390df6ab8bb8"
      language="neutral"
      processorArchitecture="msil"
      type="win32" />
  <application />
  <entryPoint>
    <assemblyIdentity
        name="M4DesktopUpdater"
        version="1.0.0.0"
        publicKeyToken="D2F6EAED73E3B4FE"
        language="neutral"
        processorArchitecture="x86" />
    <commandLine
        file="M4DesktopUpdater.exe"
        parameters="" />
  </entryPoint>

Рабочий манифест

  <asmv1:assemblyIdentity
      name="M4Desktop.exe"
      version="2.2.0.27055"
      publicKeyToken="7825390df6ab8bb8"
      language="neutral"
      processorArchitecture="x86"
      type="win32" />
  <application />
  <entryPoint>
    <assemblyIdentity
        name="M4DesktopUpdater"
        version="1.0.0.0"
        publicKeyToken="D2F6EAED73E3B4FE"
        language="neutral"
        processorArchitecture="x86" />
    <commandLine
        file="M4DesktopUpdater.exe"
        parameters="" />
  </entryPoint>
...