Skip to content
Discussion options

You must be logged in to vote

Hi @zhangguanghuib - it looks like the DLLs are not being Content Included, which is why they aren't being copied to the installed extension folder. In the .csproj file for the extension project that is supposed to include the files, the resources should be defined with <Content Include="path_to_resource_to_include">.

So for the sample you provided, you just need to change the ItemGroup where the resources are defined in SAG.HardwareStation.PaymentTerminal.csproj starting on line 20:

  <ItemGroup>
    <Content Include="DBSDLL\x86\ECR32XP.dll">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Include="DBSDLL\x64\ECR64Win7.dll">
      <CopyToOutputDire…

Replies: 3 comments 6 replies

Comment options

You must be logged in to vote
6 replies
@zhangguanghuib
Comment options

@madyke
Comment options

@zhangguanghuib
Comment options

@madyke
Comment options

Answer selected by madyke
@zhangguanghuib
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
StoreCommerce Questions or issues related to creating Store Commerce customizations
3 participants