Skip to content

Commit

Permalink
try fix include of unmanged dlls in nugets (need to be checked)
Browse files Browse the repository at this point in the history
  • Loading branch information
jogibear9988 committed Aug 22, 2024
1 parent 9bff215 commit 4f09795
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions src/S7CommPlusDriver/S7CommPlusDriver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Content Include="x64\libcrypto-3.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="x64\libssl-3.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
Expand All @@ -24,11 +16,17 @@
<ProjectReference Include="..\Zlib.net\Zlib.net.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="x86\libcrypto-3.dll">
<Content Include="x64\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="x86\libssl-3.dll">
<Pack>true</Pack>
<PackagePath>runtimes/native/x64</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="x86\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>runtimes/native/x86</PackagePath>
</None>
</ItemGroup>
<PropertyGroup>
Expand Down

0 comments on commit 4f09795

Please sign in to comment.