chore: makes project netstandard2.0 compatible
This commit is contained in:
6
src/Shared/IPaymoApiClient.cs
Normal file
6
src/Shared/IPaymoApiClient.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Novaloop.PaymoApi.Shared
|
||||||
|
{
|
||||||
|
public interface IPaymoApiClient
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@ using System.Net.Http;
|
|||||||
|
|
||||||
namespace Novaloop.PaymoApi.Shared
|
namespace Novaloop.PaymoApi.Shared
|
||||||
{
|
{
|
||||||
public class PaymoApiClient
|
public class PaymoApiClient : IPaymoApiClient
|
||||||
{
|
{
|
||||||
public PaymoApiClient(HttpClient client)
|
public PaymoApiClient(HttpClient client)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net5.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user