-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathFsCodec.SystemTextJson.fsproj
More file actions
38 lines (30 loc) · 1.35 KB
/
FsCodec.SystemTextJson.fsproj
File metadata and controls
38 lines (30 loc) · 1.35 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
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Microsoft.DotNet.PackageValidation" Version="1.0.0-preview.7.21379.12" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageValidationBaselineVersion>3.0.0</PackageValidationBaselineVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="Pickler.fs" />
<Compile Include="UnionConverter.fs" />
<Compile Include="TypeSafeEnumConverter.fs" />
<Compile Include="RejectNullStringConverter.fs" />
<Compile Include="UnionOrTypeSafeEnumConverterFactory.fs" />
<Compile Include="Options.fs" />
<Compile Include="Interop.fs" />
<Compile Include="Encoding.fs" />
<Compile Include="Serdes.fs" />
<Compile Include="Codec.fs" />
<Compile Include="CodecJsonElement.fs" />
<Compile Include="StringIdConverter.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" />
<PackageReference Include="FSharp.Core" Version="4.5.4" />
<PackageReference Include="System.Text.Json" Version="10.0.0-rc.2.25502.107" />
</ItemGroup>
<ItemGroup>
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="../FsCodec.Box/FsCodec.Box.fsproj" />
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="FsCodec.Box" Version="[3.1.0, 4.0.0)" />
</ItemGroup>
</Project>