diff options
| -rw-r--r-- | LICENSE_NOTICES | 5 | ||||
| -rw-r--r-- | README.md | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/LICENSE_NOTICES b/LICENSE_NOTICES index 2f338f3..c37df05 100644 --- a/LICENSE_NOTICES +++ b/LICENSE_NOTICES @@ -11,6 +11,11 @@ The attached notices are provided for information only. For any licenses that require disclosure of source, sources are available at https://github.com/ivarlovlie/IOL.VippsEcommerce/. +License Notice for Microsoft.NET.Sdk +--------------------------- +https://github.com/dotnet/runtime/blob/main/LICENSE.TXT + + License Notice for Microsoft.Extensions.DependencyInjection --------------------------- https://github.com/dotnet/runtime/blob/main/LICENSE.TXT @@ -30,6 +30,9 @@ services.AddVippsEcommerceService(o => { With the above example, the service will look for configuration values in the current environment using names specified in [VippsConfigurationKeyNames.cs](https://github.com/ivarlovlie/IOL.VippsEcommerce/blob/master/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyNames.cs), then in the configuration object. The environment variable name for a given property is also specified in it's XML-documentation. +> [Environment.GetEnvironmentVariable](https://docs.microsoft.com/en-us/dotnet/api/system.environment.getenvironmentvariable?view=net-5.0) is used to retrieve environment variables, that means that user-secrets and anything else than process-spesific variables (`VARIABLE=value dotnet YourBinary.dll`) does not register on Unix systems. + + ## Caching The service can cache the credentials for api-access in a file with optional AES encryption, example: |
