Skip to content

Commit 27f41df

Browse files
authored
Merge pull request #516 from nttDamien/dev
Update published documentation to .NET 8
2 parents faae742 + 3398e5a commit 27f41df

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

SECURITY.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ We perform regular reviews inline with the information provided below. All rele
7575

7676
### Use basic good cryptographic practices
7777
- https://www.bestpractices.dev/en/criteria/0#0.crypto_published - ✅ uses HTTPS for WebAPI, N/A for CLI
78-
- https://www.bestpractices.dev/en/criteria/0#0.crypto_floss - ✅ uses dotnet 6.0 implementations
79-
- https://www.bestpractices.dev/en/criteria/0#0.crypto_keylength - ✅ uses dotnet 6.0 implementations
80-
- https://www.bestpractices.dev/en/criteria/0#0.crypto_working - ✅ uses dotnet 6.0 implementations
81-
- https://www.bestpractices.dev/en/criteria/0#0.crypto_password_storage - ✅ ⚠️ uses dotnet 6.0 implementations
82-
- https://www.bestpractices.dev/en/criteria/0#0.crypto_random - ✅ uses dotnet 6.0 implementatons for HTTPS
78+
- https://www.bestpractices.dev/en/criteria/0#0.crypto_floss - ✅ uses dotnet 8.0 implementations
79+
- https://www.bestpractices.dev/en/criteria/0#0.crypto_keylength - ✅ uses dotnet 8.0 implementations
80+
- https://www.bestpractices.dev/en/criteria/0#0.crypto_working - ✅ uses dotnet 8.0 implementations
81+
- https://www.bestpractices.dev/en/criteria/0#0.crypto_password_storage - ✅ ⚠️ uses dotnet 8.0 implementations
82+
- https://www.bestpractices.dev/en/criteria/0#0.crypto_random - ✅ uses dotnet 8.0 implementatons for HTTPS
8383

8484
### Secured delivery against man-in-the-middle (MITM) attacks
8585
- Delivery mechanisms that counters MITM - ✅ uses HTTPS

casdk-docs/docs/overview/enablement.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ different endpoints to provide the most flexibility to integrate to your
4444
environment:
4545

4646
* CLI
47-
You can run the application using the [CLI](../src/CarbonAware.CLI) and refer
47+
You can run the application using the [CLI](/src/CarbonAware.CLI) and refer
4848
to more documentation [here](../tutorial-basics/carbon-aware-cli.md).
4949

5050
* WebAPI
51-
You can build a container containing the [WebAPI](../src/CarbonAware.WebApi)
51+
You can build a container containing the [WebAPI](/src/CarbonAware.WebApi)
5252
and connect via REST requests and refer to more documentation
5353
[here](../tutorial-basics/carbon-aware-webapi.md).
5454

5555
* SDK
56-
You can reference the [Carbon Aware C# Library](../src/GSF.CarbonAware) in your
56+
You can reference the [Carbon Aware C# Library](/src/GSF.CarbonAware) in your
5757
projects and make use of its functionalities and features.
5858

5959
| ![Image 2](./images/readme/screenshot_cli.png) | ![Image 1](./images/readme/screenshot_web_api.png) |
@@ -87,7 +87,7 @@ providers into the carbon aware SDK.
8787
#### System requirement
8888

8989
* Command Line Interface (CLI)
90-
* .NET Core 6.0
90+
* .NET 8.0
9191
* Alternatively:
9292
* Docker
9393
* VSCode and its [Remote Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
@@ -588,7 +588,7 @@ using environment variables, you'd do this:
588588
#### Local project settings
589589

590590
For local-only settings you can use environment variables,
591-
[the Secret Manager tool](https://learn.microsoft.com/en-us/aspnet/core/security/app-secrets?view=aspnetcore-6.0&tabs=windows#secret-manager)
591+
[the Secret Manager tool](https://learn.microsoft.com/en-us/aspnet/core/security/app-secrets?tabs=windows#secret-manager)
592592
, or an untracked Development appsettings file to override the default project
593593
settings.
594594

@@ -598,7 +598,7 @@ remove the first line of (invalid) comments. Then update any settings according
598598
to your preferences.
599599

600600
> Wherever possible, the projects leverage the
601-
> [default .NET configuration](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?view=aspnetcore-6.0#default-application-configuration-sources)
601+
> [default .NET configuration](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?#default-application-configuration-sources)
602602
> expectations. Thus, they can be configured using any file matching the format:
603603
> `appsettings.<ENV>.json`. Where `<ENV>` is the value of the
604604
> `ASPNETCORE_ENVIRONMENT` environment variable. By convention projects tend to

0 commit comments

Comments
 (0)