├── .gitignore ├── .gitmodules ├── CreatePackages.ps1 ├── LAST_PUBLISHED_COMMIT ├── LICENSE.MIT ├── PackageTemplate.nuspec ├── README.md ├── TypeScriptLogo.png ├── appveyor.yml └── tools └── NuGet.CommandLine.2.2.1 ├── NuGet.CommandLine.2.2.1.nupkg └── tools └── NuGet.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/.gitmodules -------------------------------------------------------------------------------- /CreatePackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/CreatePackages.ps1 -------------------------------------------------------------------------------- /LAST_PUBLISHED_COMMIT: -------------------------------------------------------------------------------- 1 | 6b3bc735ad028ca115c06721fb1c71ffc0e7a546 2 | -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /PackageTemplate.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/PackageTemplate.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/README.md -------------------------------------------------------------------------------- /TypeScriptLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/TypeScriptLogo.png -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/appveyor.yml -------------------------------------------------------------------------------- /tools/NuGet.CommandLine.2.2.1/NuGet.CommandLine.2.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/tools/NuGet.CommandLine.2.2.1/NuGet.CommandLine.2.2.1.nupkg -------------------------------------------------------------------------------- /tools/NuGet.CommandLine.2.2.1/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefinitelyTyped/NugetAutomation/HEAD/tools/NuGet.CommandLine.2.2.1/tools/NuGet.exe --------------------------------------------------------------------------------