Skip to content

Commit

Permalink
Change deploy folder for Image3dAPI.tlb and Image3dAPI.dll from lib t…
Browse files Browse the repository at this point in the history
…o bin
  • Loading branch information
asamitov committed Dec 1, 2022
1 parent 721eaa4 commit 70e9c0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions PackagingGE/Image3dAPI.net.targets
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<Target Name="InjectReference" BeforeTargets="ResolveAssemblyReferences">
<ItemGroup Condition="'$(Platform)' == 'Win32' or '$(Platform)' == 'x86'">
<Reference Include="Image3dAPI">
<HintPath>$(MSBuildThisFileDirectory)..\native\lib\Win32\Image3dAPI.dll</HintPath>
<HintPath>$(MSBuildThisFileDirectory)..\native\bin\Win32\Image3dAPI.dll</HintPath>
<EmbedInteropTypes>true</EmbedInteropTypes>
</Reference>
</ItemGroup>
<ItemGroup Condition="'$(Platform)' == 'x64'">
<Reference Include="Image3dAPI">
<HintPath>$(MSBuildThisFileDirectory)..\native\lib\x64\Image3dAPI.dll</HintPath>
<HintPath>$(MSBuildThisFileDirectory)..\native\bin\x64\Image3dAPI.dll</HintPath>
<EmbedInteropTypes>true</EmbedInteropTypes>
</Reference>
</ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions PackagingGE/Image3dAPI.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
<file src="../Image3dAPI/IImage3d_p.c" target="build/native/include/Image3dAPI/" />

<!-- COM type libraries -->
<file src="../x64/Release/Image3dAPI.tlb" target="build/native/lib/x64/" />
<file src="../Win32/Release/Image3dAPI.tlb" target="build/native/lib/Win32/" />
<file src="../x64/Release/Image3dAPI.tlb" target="build/native/bin/x64/" />
<file src="../Win32/Release/Image3dAPI.tlb" target="build/native/bin/Win32/" />
<!-- .NET type libraries -->
<file src="../x64/Release/Image3dAPI.dll" target="build/native/lib/x64/" />
<file src="../Win32/Release/Image3dAPI.dll" target="build/native/lib/Win32/" />
<file src="../x64/Release/Image3dAPI.dll" target="build/native/bin/x64/" />
<file src="../Win32/Release/Image3dAPI.dll" target="build/native/bin/Win32/" />

<!-- documentation files -->
<file src="../changelog.txt" target="build/native/docs/" />
Expand Down

0 comments on commit 70e9c0b

Please sign in to comment.