-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathOrderTaking.fsproj
More file actions
22 lines (22 loc) · 820 Bytes
/
OrderTaking.fsproj
File metadata and controls
22 lines (22 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" />
<Compile Include="Result.fs" />
<Compile Include="Common.SimpleTypes.fs" />
<Compile Include="Common.CompoundTypes.fs" />
<Compile Include="PlaceOrder.PublicTypes.fs" />
<Compile Include="PlaceOrder.Implementation%28without effects%29.fs" />
<Compile Include="PlaceOrder.Implementation.fs" />
<Compile Include="PlaceOrder.Dto.fs" />
<Compile Include="PlaceOrder.Api.fs" />
<Compile Include="AssemblyInfo.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>
</Project>