2021-04-04 21:01:40 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
|
|
<Target Name="Runtime ID" AfterTargets="Build">
|
|
|
|
<Message Text="Runtime ID: $(RuntimeIdentifier)" Importance="high"/>
|
|
|
|
</Target>
|
|
|
|
|
2023-10-16 18:39:53 +00:00
|
|
|
<ItemGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))">
|
2023-12-21 21:04:20 +00:00
|
|
|
<Content Include=".\moonlibs\x64\**\*.*">
|
2021-04-04 21:01:40 +00:00
|
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
2022-02-09 01:22:37 +00:00
|
|
|
<ItemGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))">
|
2023-10-16 18:39:53 +00:00
|
|
|
<Content Include=".\moonlibs\lib64\**\*.*">
|
2021-04-04 21:01:40 +00:00
|
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
2022-02-09 01:22:37 +00:00
|
|
|
<ItemGroup Condition="$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))">
|
2022-01-26 00:25:44 +00:00
|
|
|
<Content Include=".\moonlibs\osx\**\*.*" >
|
2021-04-04 21:01:40 +00:00
|
|
|
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|