| Lintop8 2006-01-30, 8:48 pm |
| In vb.net you can have one file shared between all projects in a
solution which contains product information....
ie. In the AssemblyInfo.vb file for each project you would put
<Assembly: AssemblyInformationalVersion(VERSION_OVE
RALL_VERSION)>
<Assembly: AssemblyProduct(VERSION_PRODUCT_NAME)>
<Assembly: AssemblyCopyright(VERSION_COPYRIGHT)>
<Assembly: AssemblyTrademark(VERSION_TRADEMARK)>
Where VERSION_* are constants defined in a shared file. This way all
assemblies can be identified as belonging to the same product. (Right
click on any assembly to get the info)
I am trying to work out how I can do this for Biztalk ??? Each Biztalk
project can contain up to 10 assemblies, and it is a bugger trying to
work out if the right ones have been deployed!
The above Assembly information can be accessed on the project property
pages, however the is no way that I can see of binding this info to an
external file.
Was anyone managed to solve this problem?
|