Skip to content

Commit a3fb66b

Browse files
authored
Merge pull request #24 from CoolCoderSuper/net_standard
Switch .NET Standard 2.0
2 parents 404067d + 29c0c28 commit a3fb66b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

QuickBooksSharp/Authentication/AuthenticationService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public string GenerateAuthorizationPromptUrl(string clientId, IEnumerable<string
2424
{
2525
return new Url("https://appcenter.intuit.com/connect/oauth2")
2626
.SetQueryParam("client_id", clientId)
27-
.SetQueryParam("scope", string.Join(' ', scopes))
27+
.SetQueryParam("scope", string.Join(" ", scopes))
2828
.SetQueryParam("redirect_uri", redirectUrl)
2929
.SetQueryParam("response_type", "code")
3030
.SetQueryParam("state", state)

QuickBooksSharp/QuickBooksSharp.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.1;net6.0;</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net6.0;</TargetFrameworks>
55
<Authors>Better Reports</Authors>
66
<Company>Better Reports</Company>
77
<Product></Product>
@@ -13,6 +13,7 @@
1313
<Nullable>enable</Nullable>
1414
<PackageTags>quickbooks online intuit qbo accounting</PackageTags>
1515
<PackageReleaseNotes>DateOnly properties generated for .NET6+</PackageReleaseNotes>
16+
<LangVersion>latest</LangVersion>
1617
</PropertyGroup>
1718

1819
<ItemGroup>

0 commit comments

Comments
 (0)