├── EasyRepo.exe ├── EasyRepoSetup.exe ├── ICSharpCode.SharpZipLib.dll ├── README.md └── Source ├── EasyRepo.sln ├── EasyRepo ├── App.config ├── EasyRepo.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── form_init.Designer.cs ├── form_init.cs ├── form_init.resx ├── form_manager.Designer.cs ├── form_manager.cs ├── form_manager.resx ├── icon.ico └── packages.config ├── EasyRepoSetup ├── App.config ├── EasyRepoSetup.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.manifest ├── form_setup.Designer.cs ├── form_setup.cs ├── form_setup.resx └── icon.ico └── packages ├── SevenZipExtractor.1.0.12 ├── SevenZipExtractor.1.0.12.nupkg ├── build │ ├── 7zDll │ │ ├── x64 │ │ │ └── 7z.dll │ │ └── x86 │ │ │ └── 7z.dll │ └── SevenZipExtractor.targets └── lib │ └── net45 │ └── SevenZipExtractor.dll ├── SharpZipLib.1.0.0 ├── .signature.p7s ├── SharpZipLib.1.0.0.nupkg └── lib │ ├── net45 │ ├── ICSharpCode.SharpZipLib.dll │ └── ICSharpCode.SharpZipLib.xml │ └── netstandard2.0 │ ├── ICSharpCode.SharpZipLib.dll │ └── ICSharpCode.SharpZipLib.xml └── SharpZipLib.1.1.0 ├── .signature.p7s ├── SharpZipLib.1.1.0.nupkg └── lib ├── net45 ├── ICSharpCode.SharpZipLib.dll ├── ICSharpCode.SharpZipLib.pdb └── ICSharpCode.SharpZipLib.xml └── netstandard2.0 ├── ICSharpCode.SharpZipLib.dll ├── ICSharpCode.SharpZipLib.pdb └── ICSharpCode.SharpZipLib.xml /EasyRepo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/EasyRepo.exe -------------------------------------------------------------------------------- /EasyRepoSetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/EasyRepoSetup.exe -------------------------------------------------------------------------------- /ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/README.md -------------------------------------------------------------------------------- /Source/EasyRepo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo.sln -------------------------------------------------------------------------------- /Source/EasyRepo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/App.config -------------------------------------------------------------------------------- /Source/EasyRepo/EasyRepo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/EasyRepo.csproj -------------------------------------------------------------------------------- /Source/EasyRepo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/Program.cs -------------------------------------------------------------------------------- /Source/EasyRepo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/EasyRepo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/EasyRepo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/EasyRepo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/EasyRepo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/EasyRepo/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/Properties/app.manifest -------------------------------------------------------------------------------- /Source/EasyRepo/form_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/form_init.Designer.cs -------------------------------------------------------------------------------- /Source/EasyRepo/form_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/form_init.cs -------------------------------------------------------------------------------- /Source/EasyRepo/form_init.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/form_init.resx -------------------------------------------------------------------------------- /Source/EasyRepo/form_manager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/form_manager.Designer.cs -------------------------------------------------------------------------------- /Source/EasyRepo/form_manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/form_manager.cs -------------------------------------------------------------------------------- /Source/EasyRepo/form_manager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/form_manager.resx -------------------------------------------------------------------------------- /Source/EasyRepo/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/icon.ico -------------------------------------------------------------------------------- /Source/EasyRepo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepo/packages.config -------------------------------------------------------------------------------- /Source/EasyRepoSetup/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/App.config -------------------------------------------------------------------------------- /Source/EasyRepoSetup/EasyRepoSetup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/EasyRepoSetup.csproj -------------------------------------------------------------------------------- /Source/EasyRepoSetup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/Program.cs -------------------------------------------------------------------------------- /Source/EasyRepoSetup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/EasyRepoSetup/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/EasyRepoSetup/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/EasyRepoSetup/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/EasyRepoSetup/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/EasyRepoSetup/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/app.manifest -------------------------------------------------------------------------------- /Source/EasyRepoSetup/form_setup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/form_setup.Designer.cs -------------------------------------------------------------------------------- /Source/EasyRepoSetup/form_setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/form_setup.cs -------------------------------------------------------------------------------- /Source/EasyRepoSetup/form_setup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/form_setup.resx -------------------------------------------------------------------------------- /Source/EasyRepoSetup/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/EasyRepoSetup/icon.ico -------------------------------------------------------------------------------- /Source/packages/SevenZipExtractor.1.0.12/SevenZipExtractor.1.0.12.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SevenZipExtractor.1.0.12/SevenZipExtractor.1.0.12.nupkg -------------------------------------------------------------------------------- /Source/packages/SevenZipExtractor.1.0.12/build/7zDll/x64/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SevenZipExtractor.1.0.12/build/7zDll/x64/7z.dll -------------------------------------------------------------------------------- /Source/packages/SevenZipExtractor.1.0.12/build/7zDll/x86/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SevenZipExtractor.1.0.12/build/7zDll/x86/7z.dll -------------------------------------------------------------------------------- /Source/packages/SevenZipExtractor.1.0.12/build/SevenZipExtractor.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SevenZipExtractor.1.0.12/build/SevenZipExtractor.targets -------------------------------------------------------------------------------- /Source/packages/SevenZipExtractor.1.0.12/lib/net45/SevenZipExtractor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SevenZipExtractor.1.0.12/lib/net45/SevenZipExtractor.dll -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.0.0/SharpZipLib.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.0.0/SharpZipLib.1.0.0.nupkg -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.0.0/lib/net45/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.0.0/lib/net45/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.0.0/lib/net45/ICSharpCode.SharpZipLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.0.0/lib/net45/ICSharpCode.SharpZipLib.xml -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.0.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.0.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.0.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.0.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.xml -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/.signature.p7s -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/SharpZipLib.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/SharpZipLib.1.1.0.nupkg -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/lib/net45/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/lib/net45/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/lib/net45/ICSharpCode.SharpZipLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/lib/net45/ICSharpCode.SharpZipLib.pdb -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/lib/net45/ICSharpCode.SharpZipLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/lib/net45/ICSharpCode.SharpZipLib.xml -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb -------------------------------------------------------------------------------- /Source/packages/SharpZipLib.1.1.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwertyuiop1379/EasyRepo/HEAD/Source/packages/SharpZipLib.1.1.0/lib/netstandard2.0/ICSharpCode.SharpZipLib.xml --------------------------------------------------------------------------------