-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGraphBLAS-sharp.Benchmarks.fsproj
33 lines (33 loc) · 1.22 KB
/
GraphBLAS-sharp.Benchmarks.fsproj
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
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\GraphBLAS-sharp\GraphBLAS-sharp.fsproj">
<Name>GraphBLAS-sharp.fsproj</Name>
</ProjectReference>
<ProjectReference Include="..\..\tests\GraphBLAS-sharp.Tests\GraphBLAS-sharp.Tests.fsproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="Helpers.fs" />
<Compile Include="Columns.fs" />
<Compile Include="Configs.fs" />
<Compile Include="Matrix/SpGeMM/Masked.fs" />
<Compile Include="Matrix/SpGeMM/Expand.fs" />
<Compile Include="Matrix/Map2/Map2.fs" />
<Compile Include="Matrix/Map2/MathNET.fs" />
<Compile Include="Matrix/Kronecker.fs" />
<Compile Include="Vector/Map2.fs" />
<Compile Include="Algorithms/BFS.fs" />
<Compile Include="Program.fs" />
<Folder Include="Datasets" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>