-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDGEMMSharp.csproj
More file actions
25 lines (21 loc) · 809 Bytes
/
DGEMMSharp.csproj
File metadata and controls
25 lines (21 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="MKL.NET" Version="1.6.0" />
<PackageReference Include="MKL.NET.win-x64" Version="2022.0.0.115" />
<PackageReference Include="NetFabric.DoublyLinkedList" Version="3.0.0" />
<PackageReference Include="Sigil" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Native\libopenblas.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>