Skip to content

Commit

Permalink
added build targets to support 4.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wireless90 committed Jan 9, 2024
1 parent 22caa61 commit 8f06127
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions IotaSDK.NET/IotaSDK.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,14 @@
</Content>
</ItemGroup>

<ItemGroup>
<None Include="build\net48\IotaSDK.targets">
<Pack>true</Pack>
<PackagePath>build\net48\</PackagePath>
</None>
</ItemGroup>




</Project>
8 changes: 8 additions & 0 deletions IotaSDK.NET/build/net48/IotaSDK.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project>
<Target Name="CopyNativeLibraries" AfterTargets="Build">
<Copy SourceFiles="$(MSBuildThisFileDirectory)..\..\contentFiles\any\net48\iota_sdk.dll"
DestinationFolder="$(OutputPath)" />
<Copy SourceFiles="$(MSBuildThisFileDirectory)..\..\contentFiles\any\net48\libiota_sdk.so"
DestinationFolder="$(OutputPath)" />
</Target>
</Project>

0 comments on commit 8f06127

Please sign in to comment.