This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"shell_integration": true, | |
"patch_pwsh_bleed": true, | |
"console_title_template": "{{.UserName}}@{{.HostName}} at {{.Shell}} in {{.Folder}}{{if .Root}} as root{{else}}", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JoinColumns=LAMBDA(left, right, | |
LET( | |
s, SEQUENCE(ROWS(left) + ROWS(right)), | |
IF(s > ROWS(left), INDEX(right, s - ROWS(left)), INDEX(left, s)) | |
) | |
); | |
AverageRoll=LAMBDA(dieSides, | |
(1+dieSides)/2 | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace Validator | |
{ | |
public class ArgsParser | |
{ | |
public event Action OnExecute; | |
public event Action<string> OnUnresolvedKey; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<PropertyGroup> | |
<WindowsKitVersion Condition="$(WindowsKitVersion)==''">10</WindowsKitVersion> | |
<SaveAsm Condition="$(SaveAsm)==''">True</SaveAsm> | |
<ShadersSubDir Condition="'$(ShadersSubDir)'==''">$(OutputPath)\Shaders</ShadersSubDir> | |
<ShadersAsmSubDir Condition="'$(ShadersAsmSubDir)'==''">Shaders</ShadersAsmSubDir> | |
<ShaderModel Condition="$(ShaderModel)==''">5_1</ShaderModel> | |
<ShaderAsmExtension Condition="$(ShaderAsmExtension)==''">asm</ShaderAsmExtension> | |
<ShaderBinExtension Condition="$(ShaderBinExtension)==''">cso</ShaderBinExtension> | |
<FxcArgs Condition="'$(Configuration)'=='Debug'">$(FxcArgs) /Od /Zi</FxcArgs> |