开发者

Is it possible to build a .NET DLL with COM visible types without VS requiring elevation?

开发者 https://www.devze.com 2023-02-19 05:31 出处:网络
An assemb开发者_如何转开发ly in a project has a type marked with ComVisible(true). When building (non-elevated), VS tries to register that DLL and fails:

An assemb开发者_如何转开发ly in a project has a type marked with ComVisible(true).

When building (non-elevated), VS tries to register that DLL and fails:

Cannot register assembly "\path\to\foo.dll" - access denied. Please make sure you're running the application as administrator. Access to the registry key 'HKEY_CLASSES_ROOT\CLSID{FFC174A1-CC90-4E25-A3F6-C30B03368250}' is denied.

We don't really want the DLL registering on the build machines. We only want to register it when we install it for the end user.

So is it possible to build without registering the DLL?


So is it possible to build without registering the DLL?

Yes. In the project settings (right click, "Properties") under "Build", there is a "register for COM interop" checkbox.

0

精彩评论

暂无评论...
验证码 换一张
取 消