Is it necessary to change the assemblyIdentity's version attribute in a manifest file?

后端 未结 1 1417
情深已故
情深已故 2021-02-19 02:31

In the following manifest, is it necessary to change the version attribute of the assemblyIdentity element if the assembly version is specified in the

1条回答
  •  暖寄归人
    2021-02-19 02:58

    The point of the assembly information is to uniquely identify your application to Windows and it's components. This is similar to how .NET uses filename + version + ID generated + target processor arch to identify assemblies uniquely.

    If you choose not to change it then Windows components may not see new versions of your application as uniquely different from old versions.

    More information on the Application Manifests MSDN page.

    0 讨论(0)
提交回复
热议问题