Skip to content

Commit

Permalink
setting com visible to true for vba applications
Browse files Browse the repository at this point in the history
  • Loading branch information
sjalex committed Apr 19, 2009
1 parent b802fc4 commit 17501d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion NModbus/src/FtdAdapter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
[assembly: AssemblyProduct("NModbus")]
[assembly: AssemblyCopyright("Licensed under MIT License.")]
[assembly: AssemblyDescription("Provides support for the FTD2XX USB driver.")]
[assembly: ComVisible(false)]
// required for VBA applications
[assembly: ComVisible(true)]
[assembly: CLSCompliant(false)]
[assembly: Guid("60741108-f477-476c-8139-c50ac621089f")]
[assembly: AssemblyVersion("1.9.0.0")]
Expand Down
3 changes: 2 additions & 1 deletion NModbus/src/Modbus.Extensions/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
[assembly: AssemblyProduct("NModbus")]
[assembly: AssemblyCopyright("Licensed under MIT License.")]
[assembly: AssemblyDescription("Provides utiltiy extensions for the NModbus library.")]
[assembly: ComVisible(false)]
// required for VBA applications
[assembly: ComVisible(true)]
[assembly: CLSCompliant(false)]
[assembly: Guid("A0218720-E559-434d-AB0D-CC03E6D69F46")]
[assembly: AssemblyVersion("1.9.0.0")]
Expand Down
3 changes: 2 additions & 1 deletion NModbus/src/Modbus/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
[assembly: AssemblyProduct("NModbus")]
[assembly: AssemblyCopyright("Licensed under MIT License.")]
[assembly: AssemblyDescription("Provides connectivity to Modbus slave compatible devices and applications.")]
[assembly: ComVisible(false)]
// required for VBA applications
[assembly: ComVisible(true)]
[assembly: CLSCompliant(false)]
[assembly: Guid("a2ec5378-e1b7-4bb0-b696-1c657407eeb9")]
[assembly: AssemblyVersion("1.9.0.0")]
Expand Down

0 comments on commit 17501d3

Please sign in to comment.