-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfsharpExamples.fsproj
More file actions
31 lines (30 loc) · 1.1 KB
/
fsharpExamples.fsproj
File metadata and controls
31 lines (30 loc) · 1.1 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
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="01HelloWorldRepl.fsx" />
<Compile Include="02SimilarToLinqWithPipes.fs" />
<Compile Include="cards/DrawCards.fs" />
<Compile Include="cards/ShuffleCards.fs" />
<Compile Include="03PipingFunctions.fs" />
<Compile Include="04TypesAndObjects.fs" />
<Compile Include="05ListsAndCollections.fs" />
<Compile Include="06JsonNetSerialization.fs" />
<Compile Include="07PatternMatching.fs" />
<Compile Include="08Html.fs" />
<!-- needs to be last-->
<Compile Include="Program.fs" />
<Content Include="people.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="reportSample.snapshot.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Data" Version="4.2.7" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>