-
Notifications
You must be signed in to change notification settings - Fork 2
/
ClearBank.Net.fsproj
43 lines (43 loc) · 2.18 KB
/
ClearBank.Net.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
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<PackageId>ClearBank.Net</PackageId>
<AssemblyName>ClearBank.Net</AssemblyName>
<Version>1.0.26</Version>
<TargetFSharpCoreVersion>8.0.0.0</TargetFSharpCoreVersion>
<Authors>Tuomas, Simon</Authors>
<Company>Fund Ourselves</Company>
<PackageTags>ClearBank .NET client clear bank integration payments online payment library transaction api bank uk automation england united-kingdom great-britain hsm banking gateway clearbank</PackageTags>
<Description>
Unofficial .NET client for ClearBank integration, creating online payments via their API.
Bank payment handling automation in United Kingdom.
</Description>
<RepositoryUrl>https://github.com/Thorium/ClearBank.Net.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<IsPackable>true</IsPackable>
<IsTestProject>false</IsTestProject>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="Readme.md" Link="Readme.md" Pack="true" PackagePath="\" />
<Compile Include="ClearBankApi.fs" />
<Compile Include="WebhookParsing.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Data" Version="6.4.0" />
<PackageReference Include="FSharp.Data.JsonProvider.Serializer" Version="1.0.2" />
<PackageReference Include="KeyVaultSigning" Version="1.0.10" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SwaggerProvider" Version="2.1.3" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="8.0.301" />
</ItemGroup>
</Project>