2023-05-22 15:56:49 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-06-13 08:05:34 -04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2024-01-16 14:33:41 -05:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2024-02-09 14:58:28 -05:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-06-13 08:05:34 -04:00
|
|
|
|
</PropertyGroup>
|
2023-06-25 16:52:34 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!-- Windows -->
|
|
|
|
|
<None Include="..\runtimes\win-x64\native\*.dll" Pack="true" PackagePath="runtimes\win-x64\native\%(Filename)%(Extension)" />
|
|
|
|
|
<!-- Linux -->
|
|
|
|
|
<None Include="..\runtimes\linux-x64\native\*.so" Pack="true" PackagePath="runtimes\linux-x64\native\%(Filename)%(Extension)" />
|
|
|
|
|
<!-- MacOS -->
|
|
|
|
|
<None Include="..\runtimes\osx\native\*.dylib" Pack="true" PackagePath="runtimes\osx\native\%(Filename)%(Extension)" />
|
2023-07-09 13:30:47 -04:00
|
|
|
|
<Content Include="..\runtimes\osx\native\*.metal" Pack="true" PackagePath="contentFiles\any\any;content">
|
|
|
|
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
|
|
|
|
</Content>
|
2023-06-25 16:52:34 -04:00
|
|
|
|
</ItemGroup>
|
2023-06-13 08:05:34 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
|
|
|
|
|
</ItemGroup>
|
2023-05-22 15:56:49 -04:00
|
|
|
|
</Project>
|