Skip to content

Commit

Permalink
Added Tests runtime DLL copy for Windows x64/arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Czaplewski authored and Noah Czaplewski committed Dec 12, 2024
1 parent 0a6595b commit 101336c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion FaissMask.Test/FaissMask.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
Expand Down Expand Up @@ -37,6 +37,14 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Visible>false</Visible>
</Content>
<Content Include="..\FaissMask\runtimes\win-x64\native\*.*" Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'X64'">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Visible>false</Visible>
</Content>
<Content Include="..\FaissMask\runtimes\win-arm64\native\*.*" Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)' == 'arm64'">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Visible>false</Visible>
</Content>
</ItemGroup>

</Project>

0 comments on commit 101336c

Please sign in to comment.