2

Will updating the assemblies file version have any impact on a BizTalk application?

I want a simple approach to versioning the various assemblies in a BizTalk application, as we'd had a couple of occasions where for external reasons, we weren't sure the right "version" had been deployed ...

They're all currently just 1.0.0.0 ...

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

We're not looking at side-by-side deployments, anything flashy, etc.

SteveC
  • 15,808
  • 23
  • 102
  • 173

1 Answers1

3

No

Changing the AssemblyFileVersion will have no effect on the application, only changing the AssemblyVersion will. In fact at my company we change the AssemblyFileVersion as a standard, this way you can tell what version is deployed in an environment.

SteveC
  • 15,808
  • 23
  • 102
  • 173
Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54