Skip to content

Commit b5fa2db

Browse files
committed
update readme and also illuminate some of the errors
1 parent 418870b commit b5fa2db

2 files changed

Lines changed: 21 additions & 6 deletions

File tree

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,21 @@ These events can be subscribed to and listened to by your custom `Event Listener
1111
- This dotnet cli tool allows for retrieval of `Access Token` and `Refresh Token` to be used by any other application. Please refer to [How Are Apps Authenticated with the Web Server OAuth Authentication Flow](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_understanding_web_server_oauth_flow.htm)
1212

1313

14-
## Nuget Packages
15-
```
14+
## Installation
1615

17-
PM> Install-Package CometD.NetCore2.Salesforce
16+
- To include this library inside of your project run nuget package installation
17+
> Install-Package CometD.NetCore2.Salesforce
18+
Or
19+
> dotnet add package CometD.NetCore.Salesforce
20+
- To Inatall Salesforce Cli tool globally
1821

19-
```
22+
> dotnet tool install salesforce -g
2023
24+
Then to see if it was installed correctly:
2125

22-
## Saleforce
26+
> dotnet tool list -g
27+
28+
## Saleforce Setup
2329
[Video](https://www.youtube.com/watch?v=L6OWyCfQD6U)
2430
1. Sing up for development sandbox with Saleforce: [https://developer.salesforce.com/signup](https://developer.salesforce.com/signup).
2531
2. Create Connected App in Salesforce.

build/dependecies.props

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,18 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup Label="NetCore">
20+
<PackageReference Update="Microsoft.Extensions.Logging.Abstractions" Version="$(NetCoreCommonVersion)" />
21+
<PackageReference Update="Microsoft.Extensions.Logging" Version="$(NetCoreCommonVersion)" />
22+
<PackageReference Update="Microsoft.Extensions.Logging.Configuration" Version="$(NetCoreCommonVersion)" />
23+
2024
<PackageReference Update="Microsoft.Extensions.Logging.Console" Version="$(NetCoreCommonVersion)" />
2125
<PackageReference Update="Microsoft.Extensions.Logging.Debug" Version="$(NetCoreCommonVersion)" />
2226

2327
<PackageReference Update="Microsoft.Extensions.Configuration.Binder" Version="$(NetCoreCommonVersion)" />
2428
<PackageReference Update="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="$(NetCoreCommonVersion)" />
2529
<PackageReference Update="Microsoft.Extensions.Configuration.CommandLine" Version="$(NetCoreCommonVersion)" />
2630
<PackageReference Update="Microsoft.Extensions.Configuration.Json" Version="$(NetCoreCommonVersion)" />
27-
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="$(NetCoreCommonVersion)" />
31+
<PackageReference Update="Microsoft.Extensions.Configuration.UserSecrets" Version="$(NetCoreCommonVersion)" />
2832

2933
<PackageReference Update="Microsoft.Extensions.Hosting" Version="$(NetCoreCommonVersion)" />
3034
<PackageReference Update="Microsoft.Extensions.Hosting.Abstractions" Version="$(NetCoreCommonVersion)" />
@@ -35,6 +39,11 @@
3539
<PackageReference Update="Microsoft.AspNetCore.Http" Version="$(NetCoreCommonVersion)" />
3640
</ItemGroup>
3741

42+
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
43+
<PackageReference Update="Microsoft.AspNetCore.Hosting.Server.Abstractions" Version="3.0.0-preview-18571-0006" />
44+
<PackageReference Update="Microsoft.AspNetCore.Http" Version="3.0.0-preview-18571-0006" />
45+
</ItemGroup>
46+
3847
<ItemGroup Label="Shared Libraries">
3948
<PackageReference Update="Bet.AspNetCore" Version="1.0.3" />
4049
<PackageReference Update="CometD.NetCore2" Version="2.0.0" />

0 commit comments

Comments
 (0)