├── LICENSE.txt ├── README.md ├── TheDotFactory.sln └── TheDotFactory ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── InputBox.cs ├── InputBox.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── OutputConfigurationForm.Designer.cs ├── OutputConfigurationForm.cs ├── OutputConfigurationForm.resx ├── OutputConfigurationManager.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings.cs ├── TheDotFactory.csproj └── app.config /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/README.md -------------------------------------------------------------------------------- /TheDotFactory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory.sln -------------------------------------------------------------------------------- /TheDotFactory/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/AboutForm.Designer.cs -------------------------------------------------------------------------------- /TheDotFactory/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/AboutForm.cs -------------------------------------------------------------------------------- /TheDotFactory/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/AboutForm.resx -------------------------------------------------------------------------------- /TheDotFactory/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/InputBox.cs -------------------------------------------------------------------------------- /TheDotFactory/InputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/InputBox.resx -------------------------------------------------------------------------------- /TheDotFactory/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/MainForm.Designer.cs -------------------------------------------------------------------------------- /TheDotFactory/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/MainForm.cs -------------------------------------------------------------------------------- /TheDotFactory/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/MainForm.resx -------------------------------------------------------------------------------- /TheDotFactory/OutputConfigurationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/OutputConfigurationForm.Designer.cs -------------------------------------------------------------------------------- /TheDotFactory/OutputConfigurationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/OutputConfigurationForm.cs -------------------------------------------------------------------------------- /TheDotFactory/OutputConfigurationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/OutputConfigurationForm.resx -------------------------------------------------------------------------------- /TheDotFactory/OutputConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/OutputConfigurationManager.cs -------------------------------------------------------------------------------- /TheDotFactory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/Program.cs -------------------------------------------------------------------------------- /TheDotFactory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TheDotFactory/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TheDotFactory/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/Properties/Resources.resx -------------------------------------------------------------------------------- /TheDotFactory/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TheDotFactory/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/Properties/Settings.settings -------------------------------------------------------------------------------- /TheDotFactory/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/Settings.cs -------------------------------------------------------------------------------- /TheDotFactory/TheDotFactory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/TheDotFactory.csproj -------------------------------------------------------------------------------- /TheDotFactory/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavius/the-dot-factory/HEAD/TheDotFactory/app.config --------------------------------------------------------------------------------