Skip to content

Commit

Permalink
Update test CSPROJ with binary copy
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrakiburrahman committed Oct 6, 2024
1 parent 0e3134a commit 721762a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/local/local.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y $(ProjectDir)..\..\src\DeltaLake\bin\Debug\net8.0\delta_rs_bridge.dll $(OutDir)" Condition=" '$(OS)' == 'Windows_NT' " />
<Exec Command="copy /Y $(ProjectDir)..\..\src\DeltaLake\bin\Debug\net8.0\delta_kernel_ffi.dll $(OutDir)" Condition=" '$(OS)' == 'Windows_NT' " />
<Exec Command="cp $(ProjectDir)..\..\src\DeltaLake\bin\Debug/net8.0/libdelta_rs_bridge.so $(OutDir)" Condition=" '$(OS)' == 'Unix' " />
<Exec Command="cp $(ProjectDir)..\..\src\DeltaLake\bin\Debug/net8.0/libdelta_kernel_ffi.so $(OutDir)" Condition=" '$(OS)' == 'Unix' " />
<Exec Command="cp $(ProjectDir)..\..\src\DeltaLake\bin\Debug/net8.0/libdelta_rs_bridge.dylib $(OutDir)" Condition=" '$(OS)' == 'OSX' " />
<Exec Command="cp $(ProjectDir)..\..\src\DeltaLake\bin\Debug/net8.0/libdelta_kernel_ffi.dylib $(OutDir)" Condition=" '$(OS)' == 'OSX' " />
</Target>

</Project>

0 comments on commit 721762a

Please sign in to comment.