Skip to content

Commit eca476d

Browse files
committed
file missing
1 parent ee97319 commit eca476d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Target Name="CopyNativeFiles" AfterTargets="Build">
3+
<Copy
4+
SourceFiles="$(PackageRoot)\runtimes\osx-arm64\*.dylib"
5+
DestinationFolder="$(OutDir)\runtimes\osx-arm64\"
6+
SkipUnchangedFiles="true" />
7+
<Copy
8+
SourceFiles="$(PackageRoot)\runtimes\win-arm64\native\*.dll"
9+
DestinationFolder="$(OutDir)\runtimes\win-arm64\native\"
10+
SkipUnchangedFiles="true" />
11+
<Copy
12+
SourceFiles="$(PackageRoot)\runtimes\win-x64\native\*.dll"
13+
DestinationFolder="$(OutDir)\runtimes\win-x64\native\"
14+
SkipUnchangedFiles="true" />
15+
<Copy
16+
SourceFiles="$(PackageRoot)\runtimes\win-x86\native\*.dll"
17+
DestinationFolder="$(OutDir)\runtimes\win-x86\native\"
18+
SkipUnchangedFiles="true" />
19+
</Target>
20+
</Project>

0 commit comments

Comments
 (0)