-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathFsCodec.SystemTextJson.fsproj
More file actions
33 lines (26 loc) · 1003 Bytes
/
FsCodec.SystemTextJson.fsproj
File metadata and controls
33 lines (26 loc) · 1003 Bytes
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>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Pickler.fs" />
<Compile Include="UnionConverter.fs" />
<Compile Include="TypeSafeEnumConverter.fs" />
<Compile Include="RejectNullStringConverter.fs" />
<Compile Include="UnionOrTypeSafeEnumConverterFactory.fs" />
<Compile Include="RejectNullConverter.fs" />
<Compile Include="Options.fs" />
<Compile Include="Serdes.fs" />
<Compile Include="Codec.fs" />
<Compile Include="CodecJsonElement.fs" />
<Compile Include="Interop.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="4.3.0" PrivateAssets="All" />
<PackageReference Include="FSharp.Core" Version="4.5.4" />
<PackageReference Include="System.Text.Json" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../FsCodec.Box/FsCodec.Box.fsproj" />
</ItemGroup>
</Project>