├── .gitattributes ├── .gitignore ├── .travis.yml ├── App.config ├── GitDependencies ├── DependencyManifest.cs ├── Log.cs └── README.md ├── GitDepsPacker.csproj ├── LICENSE ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── StatHelper.cs ├── Wildcard.cs └── WriteStream.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.suo 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/.travis.yml -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/App.config -------------------------------------------------------------------------------- /GitDependencies/DependencyManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/GitDependencies/DependencyManifest.cs -------------------------------------------------------------------------------- /GitDependencies/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/GitDependencies/Log.cs -------------------------------------------------------------------------------- /GitDependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/GitDependencies/README.md -------------------------------------------------------------------------------- /GitDepsPacker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/GitDepsPacker.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/README.md -------------------------------------------------------------------------------- /StatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/StatHelper.cs -------------------------------------------------------------------------------- /Wildcard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/Wildcard.cs -------------------------------------------------------------------------------- /WriteStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/UE4GitDepsPacker/HEAD/WriteStream.cs --------------------------------------------------------------------------------