├── .gitattributes ├── .gitignore ├── GARCTool.sln └── GARCTool ├── GARCTool.cs ├── GARCTool.csproj ├── Interface.Designer.cs ├── Interface.cs ├── Interface.resx ├── Program.cs └── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/.gitignore -------------------------------------------------------------------------------- /GARCTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool.sln -------------------------------------------------------------------------------- /GARCTool/GARCTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/GARCTool.cs -------------------------------------------------------------------------------- /GARCTool/GARCTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/GARCTool.csproj -------------------------------------------------------------------------------- /GARCTool/Interface.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Interface.Designer.cs -------------------------------------------------------------------------------- /GARCTool/Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Interface.cs -------------------------------------------------------------------------------- /GARCTool/Interface.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Interface.resx -------------------------------------------------------------------------------- /GARCTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Program.cs -------------------------------------------------------------------------------- /GARCTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GARCTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GARCTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Properties/Resources.resx -------------------------------------------------------------------------------- /GARCTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GARCTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwsch/GARCTool/HEAD/GARCTool/Properties/Settings.settings --------------------------------------------------------------------------------