Skip to content

Commit 15e29b2

Browse files
committed
build: updated packages and readme
1 parent c809c14 commit 15e29b2

2 files changed

Lines changed: 12 additions & 17 deletions

File tree

README.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# NetCoreForce
22

3-
## A .NET Standard and .NET Core Salesforce REST API toolkit and API wrapper
3+
## A .NET Standard and .NET Core Salesforce REST API integration library
44
*This project is not offered, sponsored, or endorsed by Salesforce.*
55

66
### [CHANGELOG](CHANGELOG.md)
77

88
CI main:
9-
[![](https://github.com/anthonyreilly/NetCoreForce/workflows/CI/badge.svg?branch=main)](https://github.com/anthonyreilly/NetCoreForce/actions?query=workflow%3ACI+branch%3Amain)
9+
[![CI](https://github.com/anthonyreilly/NetCoreForce/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/anthonyreilly/NetCoreForce/actions/workflows/ci.yml)
1010
CI dev:
11-
[![](https://github.com/anthonyreilly/NetCoreForce/workflows/CI/badge.svg?branch=dev)](https://github.com/anthonyreilly/NetCoreForce/actions?query=workflow%3ACI+branch%3Adev)
11+
[![CI](https://github.com/anthonyreilly/NetCoreForce/actions/workflows/ci.yml/badge.svg?branch=dev)](https://github.com/anthonyreilly/NetCoreForce/actions/workflows/ci.yml)
1212

13-
NetCoreForce v4 currently targeting netstandard 2.0 & 2.1, supports .NET Core 2.1,3.1,6.0, and 7.0 apps.
13+
NetCoreForce currently targeting netstandard 2.0 & 2.1, supports .NET Core 2.1 - 9.0
1414

1515
For .NET Core 1.x support, use NetCoreForce v2.7
1616

@@ -35,20 +35,14 @@ For .NET Core 1.x support, use NetCoreForce v2.7
3535
* [NetCoreForce.Models](https://www.nuget.org/packages/NetCoreForce.Models/)
3636
* [NetCoreForce.ModelGenerator](https://www.nuget.org/packages/NetCoreForce.ModelGenerator/)
3737

38-
### An effort is made to minimize the dependencies:
38+
### Designed to minimize dependencies:
3939
* [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json) (JSON Serialization)
4040
* [System.Text.Encodings.Web](https://www.nuget.org/packages/System.Text.Encodings.Web) (URL formatting)
4141
* [Microsoft.Bcl.AsyncInterfaces](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/)
4242
- Only included in .netstandard2.0, .netcoreapp2.0 targets
4343
- Provides await using, async disposables
4444

45-
### Experimental Projects:
46-
* Please note: The LINQ library has barely been tested, and is not recommended for production use. Consider it an alpha release.
47-
* [NetCoreForce.Linq](src/NetCoreForce.Linq) - an experimental LINQ-to-SOQL query provider
48-
* [NetCoreForce.Linq.Tests](src/NetCoreForce.Linq.Tests) - LINQ Unit tests (offline/mocked)
49-
* NuGet package: [NetCoreForce.Linq](https://www.nuget.org/packages/NetCoreForce.Linq/)
50-
* Retains a dependency on [System.Interactive.Async](https://www.nuget.org/packages/System.Interactive.Async/)
51-
45+
(Migration from Newtonsoft.Json to System.Text.Json is planned)
5246

5347
Feedback and suggestions welcome.
5448

src/NetCoreForce.Client/NetCoreForce.Client.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), build.props))\build.props" />
2+
<Import
3+
Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), build.props))\build.props" />
34
<PropertyGroup>
45
<AssemblyName>NetCoreForce.Client</AssemblyName>
56
<Product>NetCoreForce.Client</Product>
@@ -10,7 +11,7 @@
1011
<!--NuGet-->
1112
<Authors>$(Authors)</Authors>
1213
<Copyright>$(Copyright)</Copyright>
13-
<Description>A .NET Standard and .NET Core Salesforce REST API toolkit and API wrapper</Description>
14+
<Description>A .NET Standard and .NET Core Salesforce REST API integration library</Description>
1415
<IsPackable>true</IsPackable>
1516
<PackageId>NetCoreForce.Client</PackageId>
1617
<PackageLicenseExpression>$(PackageLicenseExpression)</PackageLicenseExpression>
@@ -41,15 +42,15 @@
4142

4243
<Choose>
4344

44-
<When Condition=" '$(TargetFramework)' == 'NET6_0_OR_GREATER'">
45+
<When Condition=" '$(TargetFramework)' == 'NET8_0_OR_GREATER'">
4546
<ItemGroup>
46-
<PackageReference Include="System.Text.Encodings.Web" Version="7.0.0" />
47+
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.6" />
4748
</ItemGroup>
4849
</When>
4950

5051
<Otherwise>
5152
<ItemGroup>
52-
<PackageReference Include="System.Text.Encodings.Web" Version="5.0.1" />
53+
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
5354
</ItemGroup>
5455
</Otherwise>
5556

0 commit comments

Comments
 (0)