-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoopMyWav.fsproj
33 lines (33 loc) · 1.29 KB
/
LoopMyWav.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- eto csproj said:
<TargetFramework>netstandard2.0</TargetFramework>
-->
<!-- eto gtk csproj said:
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework>
-->
<TargetFramework>netcoreapp5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Walkers.fs" />
<Compile Include="Hyper.fs" />
<Compile Include="Transients.fs" />
<Compile Include="Grain.fs" />
<Compile Include="Arguments.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.1.1" />
<PackageReference Include="Deedle" Version="2.3.0" />
<PackageReference Include="Deedle.Math" Version="2.3.0" />
<PackageReference Include="Eto.Forms" Version="2.5.10" />
<PackageReference Include="Eto.Platform.Gtk" Version="2.5.10" />
<PackageReference Include="Eto.Serialization.Xaml" Version="2.5.10" />
<PackageReference Include="MathNet.Numerics" Version="4.14.0" />
<PackageReference Include="NewtonSoft.Json" Version="12.0.3" />
<PackageReference Include="SharpLearning.Optimization" Version="0.31.8" />
<PackageReference Include="XPlot.Plotly" Version="3.0.1" />
</ItemGroup>
</Project>