[System.Environment]::SetEnvironmentVariable('DOTNET_CLI_UI_LANGUAGE','en-US')
$env:DOTNET_CLI_UI_LANGUAGE
en-USor
- Go to location where dotnet is installed
- Go to "dotnet-install-directory\sdk\sdk-version"
[System.Environment]::SetEnvironmentVariable('DOTNET_CLI_UI_LANGUAGE','en-US')
$env:DOTNET_CLI_UI_LANGUAGE
en-USor
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| if ($host.Name -eq 'ConsoleHost') | |
| { | |
| Import-Module PSReadLine | |
| } | |
| Import-Module -Name Terminal-Icons | |
| #Import-Module oh-my-posh |
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "background": "#ff479c", | |
| "foreground": "#ffffff", | |
| "leading_diamond": "\ue0b6", |
I wasn't able to install FILENAME.pfx under Ubuntu on Chrome or Firefox altough I had no problems installing the very same file on IE under Windows. What I did to solve the issue:
openssl pkcs12 -in FILENAME.pfx -clcerts -nokeys -out FILENAMEcert.pem
openssl pkcs12 -in FILENAME.pfx -nocerts -out FILENAMEkey.pem
openssl pkcs12 -export -in FILENAMEcert.pem -inkey FILENAMEkey.pem -out FILENAME.p12
Then install FILENAME.p12 on Chrome or Firefox under Ubuntu should work like a charm :)
| using System.Threading.Tasks; | |
| using Raven.Client.Documents; | |
| using Raven.Client.ServerWide.Operations; | |
| public class RavenDBMerger | |
| { | |
| readonly IDocumentStore _store; | |
| public RavenDBMerger(IDocumentStore store) | |
| { |