Skip to content

Commit

Permalink
Merge pull request #611 from Jevonius/add-comvisible-false
Browse files Browse the repository at this point in the history
Add `ComVisible(false)` to `CommonAssemblyInfo.cs` to resolve #604
  • Loading branch information
jonorossi authored Aug 2, 2022
2 parents 1973e70 + 6d77098 commit eb5c0c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion buildscripts/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,7 @@
// limitations under the License.

using System;
[assembly: CLSCompliant(true)]
using System.Runtime.InteropServices;

[assembly: CLSCompliant(true)]
[assembly: ComVisible(false)]

0 comments on commit eb5c0c2

Please sign in to comment.