-
Notifications
You must be signed in to change notification settings - Fork 0
/
Presto.fsproj
37 lines (32 loc) · 1.26 KB
/
Presto.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
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Include="Presto.StandardLibrary\StdLib.pst">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="examples\OpenYouTube.pst" />
<None Include="examples\PartialFunctionApplication.pst" />
<None Include="examples\OneBillionRowChallenge.pst" />
<None Include="examples\5.TemperatureConverter.pst" />
<None Include="examples\4.SimpleCalculator.pst" />
<None Include="examples\3.UserInput.pst" />
<None Include="examples\2.BasicArithmetic.pst" />
<None Include="examples\ListFirst.pst" />
<None Include="examples\1.HelloWorld.pst" />
<None Include="Examples\Test.pst" />
<None Include="README.md" />
<None Include="BootstrappedCompiler.pst" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Presto.Library\Presto.Library.fsproj" />
<ProjectReference Include="Presto.Runtime\Presto.Runtime.csproj" />
<ProjectReference Include="Presto.SelfHosting\Presto.SelfHosting.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="examples\web_ui\" />
</ItemGroup>
</Project>