26 lines
870 B
XML
26 lines
870 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>Oceanbox.GeoJson</PackageId>
|
|
<Authors></Authors>
|
|
<Company></Company>
|
|
<Version>0.0.1</Version>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="GeoJson.fs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="FSharp.Data" Version="4.2.7" />
|
|
<PackageReference Include="FSharpPlus" Version="1.2.2" />
|
|
<PackageReference Include="Thoth.Json" Version="7.0.0" />
|
|
<PackageReference Include="Thoth.Json.Net" Version="8.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="*.fsproj; *.fs" PackagePath="fable/" />
|
|
</ItemGroup>
|
|
</Project>
|