Enable COM interop registration in project config

Added <RegisterForComInterop>True</RegisterForComInterop> to all build configurations in WelsonJS.Cryptography.vbproj to support COM interop registration for both Debug and Release builds.
This commit is contained in:
Namhyeon Go 2025-11-10 09:47:17 +09:00
parent ba7b3e3685
commit 4fb7b95c0e

View File

@ -17,18 +17,22 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<RemoveIntegerChecks>True</RemoveIntegerChecks> <RemoveIntegerChecks>True</RemoveIntegerChecks>
<RegisterForComInterop>True</RegisterForComInterop>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoveIntegerChecks>True</RemoveIntegerChecks> <RemoveIntegerChecks>True</RemoveIntegerChecks>
<RegisterForComInterop>True</RegisterForComInterop>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<RemoveIntegerChecks>True</RemoveIntegerChecks> <RemoveIntegerChecks>True</RemoveIntegerChecks>
<RegisterForComInterop>True</RegisterForComInterop>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoveIntegerChecks>True</RemoveIntegerChecks> <RemoveIntegerChecks>True</RemoveIntegerChecks>
<RegisterForComInterop>True</RegisterForComInterop>
</PropertyGroup> </PropertyGroup>
</Project> </Project>