├── .gitignore ├── Binaries ├── Chocolatey-Packages │ ├── guidgen-console.2.0.0.2.nupkg │ ├── guidgen-console.2.0.0.3.nupkg │ ├── guidgen-console.2.0.0.4.nupkg │ ├── guidgen-console.2.0.0.5.nupkg │ ├── guidgen-console.2.0.0.6.nupkg │ ├── guidgen-console.2.0.0.7.nupkg │ └── guidgen-console.2.0.0.8.nupkg ├── GuidGen.exe ├── GuidGen.exe.config └── versions │ ├── 2.0.0.3 │ ├── GuidGen.exe │ ├── NET2_0 │ │ └── GuidGen.exe │ ├── NET3_5 │ │ └── GuidGen.exe │ ├── NET4_0 │ │ └── GuidGen.exe │ ├── NET4_5_2 │ │ └── GuidGen.exe │ ├── NET4_6_1 │ │ └── GuidGen.exe │ └── guidgen.exe.config │ ├── 2.0.0.4 │ ├── GuidGen.exe │ ├── GuidGen.exe.config │ ├── NET2_0 │ │ └── GuidGen.exe │ ├── NET3_5 │ │ └── GuidGen.exe │ ├── NET4_0 │ │ └── GuidGen.exe │ ├── NET4_5_2 │ │ └── GuidGen.exe │ └── NET4_6_1 │ │ └── GuidGen.exe │ ├── 2.0.0.5 │ ├── GuidGen.exe │ ├── GuidGen.exe.config │ ├── dotNet2_0 │ │ └── GuidGen.exe │ ├── dotNet3_5 │ │ └── GuidGen.exe │ ├── dotNet4_0 │ │ └── GuidGen.exe │ ├── dotNet4_5 │ │ └── GuidGen.exe │ └── dotNet4_6 │ │ └── GuidGen.exe │ ├── 2.0.0.6 │ ├── GuidGen.exe │ ├── GuidGen.exe.config │ ├── NET2_0 │ │ └── GuidGen.exe │ ├── NET3_5 │ │ └── GuidGen.exe │ ├── NET4_0 │ │ └── GuidGen.exe │ ├── NET4_5 │ │ └── GuidGen.exe │ ├── NET4_6 │ │ └── GuidGen.exe │ └── NET4_7 │ │ └── GuidGen.exe │ ├── 2.0.0.7 │ ├── GuidGen.exe │ ├── GuidGen.exe.config │ ├── NET2_0 │ │ └── GuidGen.exe │ ├── NET3_5 │ │ └── GuidGen.exe │ ├── NET4_0 │ │ └── GuidGen.exe │ ├── NET4_5 │ │ └── GuidGen.exe │ ├── NET4_6 │ │ └── GuidGen.exe │ ├── NET4_7 │ │ └── GuidGen.exe │ └── NET4_8 │ │ └── GuidGen.exe │ └── 2.0.0.8 │ ├── GuidGen.exe │ ├── GuidGen.exe.config │ ├── NET2_0 │ └── GuidGen.exe │ ├── NET3_5 │ └── GuidGen.exe │ ├── NET4_0 │ └── GuidGen.exe │ ├── NET4_5 │ └── GuidGen.exe │ ├── NET4_6 │ └── GuidGen.exe │ ├── NET4_7 │ └── GuidGen.exe │ └── NET4_8 │ └── GuidGen.exe ├── README.md └── source ├── Choco.Installer ├── chocolatey.guidgen-console.nuspec ├── make-chocolatey.ps1 └── tools │ └── chocolateyInstall.ps1 ├── GuidGen.Console ├── App.ico ├── AssemblyInfo.cs ├── Cmdline.cs ├── ConsoleClipboardOut.cs ├── ConsoleEx.cs ├── ConsoleExitStream.cs ├── Formats │ ├── Base64CombinedFormat.cs │ ├── Base64GuidFormat.cs │ ├── BaseGuidFormat.cs │ ├── BaseGuidSearchFormat.cs │ ├── GuidFormat.cs │ ├── IPAddressGuidFormat.cs │ ├── Int128OutputFormat.cs │ ├── Int32OutputFormat.cs │ ├── Int64OutputFormat.cs │ ├── MD5OutputFormat.cs │ ├── SearchFormat.cs │ └── VersionGuidFormat.cs ├── Found.cs ├── GuidFormats.cs ├── GuidGen.NET20.csproj ├── GuidGen.NET35.csproj ├── GuidGen.NET40.csproj ├── GuidGen.NET45.csproj ├── GuidGen.NET46.csproj ├── GuidGen.NET47.csproj ├── GuidGen.NET48.csproj ├── Guider.cs ├── Guidgen.cs ├── IGuidFormatter.cs ├── IGuidSearcher.cs ├── IValid.cs ├── Replacement.cs ├── Tools.cs └── app.config ├── GuidGen.UnitTesting ├── ClipboardTest.cs ├── FormatTests.cs ├── GuidGen.UnitTesting.csproj └── Properties │ └── AssemblyInfo.cs ├── GuidGen.sln └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/Chocolatey-Packages/guidgen-console.2.0.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/Chocolatey-Packages/guidgen-console.2.0.0.2.nupkg -------------------------------------------------------------------------------- /Binaries/Chocolatey-Packages/guidgen-console.2.0.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/Chocolatey-Packages/guidgen-console.2.0.0.3.nupkg -------------------------------------------------------------------------------- /Binaries/Chocolatey-Packages/guidgen-console.2.0.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/Chocolatey-Packages/guidgen-console.2.0.0.4.nupkg -------------------------------------------------------------------------------- /Binaries/Chocolatey-Packages/guidgen-console.2.0.0.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/Chocolatey-Packages/guidgen-console.2.0.0.5.nupkg -------------------------------------------------------------------------------- /Binaries/Chocolatey-Packages/guidgen-console.2.0.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/Chocolatey-Packages/guidgen-console.2.0.0.6.nupkg -------------------------------------------------------------------------------- /Binaries/Chocolatey-Packages/guidgen-console.2.0.0.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/Chocolatey-Packages/guidgen-console.2.0.0.7.nupkg -------------------------------------------------------------------------------- /Binaries/Chocolatey-Packages/guidgen-console.2.0.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/Chocolatey-Packages/guidgen-console.2.0.0.8.nupkg -------------------------------------------------------------------------------- /Binaries/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/GuidGen.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/GuidGen.exe.config -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.3/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.3/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.3/NET2_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.3/NET2_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.3/NET3_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.3/NET3_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.3/NET4_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.3/NET4_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.3/NET4_5_2/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.3/NET4_5_2/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.3/NET4_6_1/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.3/NET4_6_1/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.3/guidgen.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.3/guidgen.exe.config -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.4/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.4/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.4/GuidGen.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.4/GuidGen.exe.config -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.4/NET2_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.4/NET2_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.4/NET3_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.4/NET3_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.4/NET4_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.4/NET4_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.4/NET4_5_2/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.4/NET4_5_2/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.4/NET4_6_1/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.4/NET4_6_1/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.5/GuidGen.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.5/GuidGen.exe.config -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.5/dotNet2_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.5/dotNet2_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.5/dotNet3_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.5/dotNet3_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.5/dotNet4_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.5/dotNet4_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.5/dotNet4_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.5/dotNet4_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.5/dotNet4_6/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.5/dotNet4_6/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/GuidGen.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/GuidGen.exe.config -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/NET2_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/NET2_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/NET3_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/NET3_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/NET4_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/NET4_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/NET4_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/NET4_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/NET4_6/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/NET4_6/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.6/NET4_7/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.6/NET4_7/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/GuidGen.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/GuidGen.exe.config -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/NET2_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/NET2_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/NET3_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/NET3_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/NET4_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/NET4_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/NET4_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/NET4_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/NET4_6/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/NET4_6/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/NET4_7/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/NET4_7/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.7/NET4_8/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.7/NET4_8/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/GuidGen.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/GuidGen.exe.config -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/NET2_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/NET2_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/NET3_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/NET3_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/NET4_0/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/NET4_0/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/NET4_5/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/NET4_5/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/NET4_6/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/NET4_6/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/NET4_7/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/NET4_7/GuidGen.exe -------------------------------------------------------------------------------- /Binaries/versions/2.0.0.8/NET4_8/GuidGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/Binaries/versions/2.0.0.8/NET4_8/GuidGen.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/README.md -------------------------------------------------------------------------------- /source/Choco.Installer/chocolatey.guidgen-console.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/Choco.Installer/chocolatey.guidgen-console.nuspec -------------------------------------------------------------------------------- /source/Choco.Installer/make-chocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/Choco.Installer/make-chocolatey.ps1 -------------------------------------------------------------------------------- /source/Choco.Installer/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/Choco.Installer/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /source/GuidGen.Console/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/App.ico -------------------------------------------------------------------------------- /source/GuidGen.Console/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Cmdline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Cmdline.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/ConsoleClipboardOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/ConsoleClipboardOut.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/ConsoleEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/ConsoleEx.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/ConsoleExitStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/ConsoleExitStream.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/Base64CombinedFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/Base64CombinedFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/Base64GuidFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/Base64GuidFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/BaseGuidFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/BaseGuidFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/BaseGuidSearchFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/BaseGuidSearchFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/GuidFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/GuidFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/IPAddressGuidFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/IPAddressGuidFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/Int128OutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/Int128OutputFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/Int32OutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/Int32OutputFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/Int64OutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/Int64OutputFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/MD5OutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/MD5OutputFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/SearchFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/SearchFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Formats/VersionGuidFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Formats/VersionGuidFormat.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Found.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Found.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidFormats.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidGen.NET20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidGen.NET20.csproj -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidGen.NET35.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidGen.NET35.csproj -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidGen.NET40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidGen.NET40.csproj -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidGen.NET45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidGen.NET45.csproj -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidGen.NET46.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidGen.NET46.csproj -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidGen.NET47.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidGen.NET47.csproj -------------------------------------------------------------------------------- /source/GuidGen.Console/GuidGen.NET48.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/GuidGen.NET48.csproj -------------------------------------------------------------------------------- /source/GuidGen.Console/Guider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Guider.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Guidgen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Guidgen.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/IGuidFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/IGuidFormatter.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/IGuidSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/IGuidSearcher.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/IValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/IValid.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Replacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Replacement.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/Tools.cs -------------------------------------------------------------------------------- /source/GuidGen.Console/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.Console/app.config -------------------------------------------------------------------------------- /source/GuidGen.UnitTesting/ClipboardTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.UnitTesting/ClipboardTest.cs -------------------------------------------------------------------------------- /source/GuidGen.UnitTesting/FormatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.UnitTesting/FormatTests.cs -------------------------------------------------------------------------------- /source/GuidGen.UnitTesting/GuidGen.UnitTesting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.UnitTesting/GuidGen.UnitTesting.csproj -------------------------------------------------------------------------------- /source/GuidGen.UnitTesting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.UnitTesting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/GuidGen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/GuidGen.sln -------------------------------------------------------------------------------- /source/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmcdaniel/GuidgenConsole/HEAD/source/logo.png --------------------------------------------------------------------------------