-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMatrixMultiplication.fsproj
More file actions
29 lines (29 loc) · 1.02 KB
/
MatrixMultiplication.fsproj
File metadata and controls
29 lines (29 loc) · 1.02 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup>
<Title>ImageProcessing</Title>
<Description>ImageProcessing does the thing!</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<None Include="App.config" />
<Compile Include="Matrices.fs" />
<Compile Include="Tuner.fs" />
<Compile Include="Main.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.2.5" />
<PackageReference Include="Brahma.FSharp" Version="2.0.6" />
<PackageReference Include="FSharp.Quotations.Evaluator" Version="2.1.0" />
</ItemGroup>
</Project>