Skip to content

Commit

Permalink
fix: clean up invalid XML comment
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyreilly committed Mar 7, 2024
1 parent 5dd39d8 commit 8b83697
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### 2024-03-06 v4.1.0

* feat: add client credentials flow
* fix: Add field CalculatedFormula to SObjectFieldMetadata
* fix: Add field AdditionalData to ErrorResponse

### 2023-06-06 v4.0.0

* feat: add FieldsToNull and IngoreNulls options to control null field serialization and to allow explicitly setting fields to null
Expand Down
16 changes: 8 additions & 8 deletions build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<PropertyGroup>

<!--Versioning-->
<VersionPrefix>4.0.0</VersionPrefix>
<VersionPrefix>4.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>

<!-- Targets -->
<LangVersion>8.0</LangVersion>

<!--NuGet-->
<Authors>Anthony Reilly</Authors>
<Copyright>2023 Anthony Reilly</Copyright>
<Copyright>2024 Anthony Reilly</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/anthonyreilly/NetCoreForce</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
Expand All @@ -25,15 +25,15 @@

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

<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0</LibTargetFrameworks>
<AppTargetFrameworks>net6.0;net7.0</AppTargetFrameworks>
<TestTargetFrameworks>net6.0;net7.0</TestTargetFrameworks>
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</LibTargetFrameworks>
<AppTargetFrameworks>net6.0;net7.0;net8.0</AppTargetFrameworks>
<TestTargetFrameworks>net6.0;net7.0;net8.0</TestTargetFrameworks>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion src/NetCoreForce.Client/AuthenticationClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public async Task TokenRefreshAsync(string refreshToken, string clientId, string

/// <summary>
/// Client credentials OAuth Authentication Flow
/// <para>https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_client_credentials_flow.htm&type=5</para>
/// <para>https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_client_credentials_flow.htm</para>
/// </summary>
/// <param name="clientId">The Consumer Key from the connected app definition.</param>
/// <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>
Expand Down

0 comments on commit 8b83697

Please sign in to comment.