From e94bc3edbb44f584f55c87261d44a294db26bfc5 Mon Sep 17 00:00:00 2001 From: Ivar Løvlie <38570165+ivarlovlie@users.noreply.github.com> Date: Wed, 31 Mar 2021 22:56:19 +0200 Subject: Update LICENSE_NOTICES --- LICENSE_NOTICES | 5 +++++ 1 file changed, 5 insertions(+) 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 -- cgit v1.3 From 8379ccc31d788ec6e27a750a2705d721f835e64b Mon Sep 17 00:00:00 2001 From: Ivar Løvlie <38570165+ivarlovlie@users.noreply.github.com> Date: Wed, 31 Mar 2021 23:52:17 +0200 Subject: Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4a7819b..59610a9 100644 --- a/README.md +++ b/README.md @@ -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 environement 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: -- cgit v1.3 From 41ce031b02f9e826256aa324ab769c0907919bb7 Mon Sep 17 00:00:00 2001 From: Ivar Løvlie <38570165+ivarlovlie@users.noreply.github.com> Date: Wed, 31 Mar 2021 23:52:37 +0200 Subject: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59610a9..d52c985 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ 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 environement variables, that means that user-secrets and anything else than process-spesific variables (`VARIABLE=value dotnet YourBinary.dll`) does not register on Unix systems. +> [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 -- cgit v1.3