├── .gitignore ├── CompileCSharp.sln └── CompileCSharp ├── App.config ├── CompileCSharp.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs └── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/.gitignore -------------------------------------------------------------------------------- /CompileCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp.sln -------------------------------------------------------------------------------- /CompileCSharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/App.config -------------------------------------------------------------------------------- /CompileCSharp/CompileCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/CompileCSharp.csproj -------------------------------------------------------------------------------- /CompileCSharp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Form1.Designer.cs -------------------------------------------------------------------------------- /CompileCSharp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Form1.cs -------------------------------------------------------------------------------- /CompileCSharp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Form1.resx -------------------------------------------------------------------------------- /CompileCSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Program.cs -------------------------------------------------------------------------------- /CompileCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompileCSharp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CompileCSharp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Properties/Resources.resx -------------------------------------------------------------------------------- /CompileCSharp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CompileCSharp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/CompileCSharpWindowsForm/HEAD/CompileCSharp/Properties/Settings.settings --------------------------------------------------------------------------------