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 namespace System.Management.Automation; | |
[CmdletBinding()] | |
param | |
( | |
[Parameter(Mandatory = $true, Position = 0)] [string] $ReferenceFile, | |
[Parameter(Mandatory = $true, Position = 1)] [string] $CompareFile | |
); | |
$ErrorActionPreference = 'Stop'; |
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 ColorChord.NET.API; | |
using ColorChord.NET.API.Extensions; | |
namespace IngoDingosInsanity; | |
public class Extension : IExtension | |
{ | |
public string Name => "IngoDingo's Insanity"; | |
public string Description => "Because who needs a normal system when you can have 3"; | |
public uint APIVersion => ColorChordAPI.APIVersion; |