-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathDomain.fsproj
31 lines (25 loc) · 1.1 KB
/
Domain.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<WarningLevel>5</WarningLevel>
<IsTestProject>false</IsTestProject>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
</PropertyGroup>
<ItemGroup>
<Compile Include="Infrastructure.fs" />
<Compile Include="Cart.fs" />
<Compile Include="ContactPreferences.fs" />
<Compile Include="Favorites.fs" />
<Compile Include="SavedForLater.fs" />
<Compile Include="InventoryItem.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' == 'net461' " />
<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' == 'netstandard2.0' " />
<PackageReference Include="FsCodec.NewtonsoftJson" Version="2.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\Equinox.Core\Equinox.Core.fsproj" />
</ItemGroup>
</Project>