Skip to content

Commit 8b83697

Browse files
committed
fix: clean up invalid XML comment
1 parent 5dd39d8 commit 8b83697

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### 2024-03-06 v4.1.0
4+
5+
* feat: add client credentials flow
6+
* fix: Add field CalculatedFormula to SObjectFieldMetadata
7+
* fix: Add field AdditionalData to ErrorResponse
8+
39
### 2023-06-06 v4.0.0
410

511
* feat: add FieldsToNull and IngoreNulls options to control null field serialization and to allow explicitly setting fields to null

build.props

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<PropertyGroup>
33

44
<!--Versioning-->
5-
<VersionPrefix>4.0.0</VersionPrefix>
5+
<VersionPrefix>4.1.0</VersionPrefix>
66
<VersionSuffix></VersionSuffix>
77

88
<!-- Targets -->
99
<LangVersion>8.0</LangVersion>
1010

1111
<!--NuGet-->
1212
<Authors>Anthony Reilly</Authors>
13-
<Copyright>2023 Anthony Reilly</Copyright>
13+
<Copyright>2024 Anthony Reilly</Copyright>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<PackageProjectUrl>https://github.com/anthonyreilly/NetCoreForce</PackageProjectUrl>
1616
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
@@ -25,15 +25,15 @@
2525

2626
<!-- Targets -->
2727
<PropertyGroup Condition="!$([MSBuild]::IsOSPlatform('OSX!'))">
28-
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0</LibTargetFrameworks>
29-
<AppTargetFrameworks>netcoreapp2.1;netcoreapp3.1;net6.0;net7.0</AppTargetFrameworks>
30-
<TestTargetFrameworks>netcoreapp2.1;netcoreapp3.1;net6.0;net7.0</TestTargetFrameworks>
28+
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</LibTargetFrameworks>
29+
<AppTargetFrameworks>netcoreapp2.1;netcoreapp3.1;net6.0;net7.0;net8.0</AppTargetFrameworks>
30+
<TestTargetFrameworks>netcoreapp2.1;netcoreapp3.1;net6.0;net7.0;net8.0</TestTargetFrameworks>
3131
</PropertyGroup>
3232

3333
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
34-
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0</LibTargetFrameworks>
35-
<AppTargetFrameworks>net6.0;net7.0</AppTargetFrameworks>
36-
<TestTargetFrameworks>net6.0;net7.0</TestTargetFrameworks>
34+
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</LibTargetFrameworks>
35+
<AppTargetFrameworks>net6.0;net7.0;net8.0</AppTargetFrameworks>
36+
<TestTargetFrameworks>net6.0;net7.0;net8.0</TestTargetFrameworks>
3737
</PropertyGroup>
3838

3939
</Project>

src/NetCoreForce.Client/AuthenticationClient.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public async Task TokenRefreshAsync(string refreshToken, string clientId, string
273273

274274
/// <summary>
275275
/// Client credentials OAuth Authentication Flow
276-
/// <para>https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_client_credentials_flow.htm&type=5</para>
276+
/// <para>https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_client_credentials_flow.htm</para>
277277
/// </summary>
278278
/// <param name="clientId">The Consumer Key from the connected app definition.</param>
279279
/// <param name="clientSecret">The Consumer Secret from the connected app definition. Required unless the Require Secret for Web Server Flow setting is not enabled in the connected app definition.</param>

0 commit comments

Comments
 (0)