├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── ChocolateyPackageProvider.cs ├── ChocolateyProvider.csproj ├── ChocolateyProvider.sln ├── LICENSE ├── Properties └── AssemblyInfo.cs ├── README.md ├── RequestHelper.cs ├── RequestLogger.cs ├── Resources ├── Messages.Designer.cs └── Messages.resx ├── Sdk ├── Constants.cs ├── ErrorCategory.cs └── Request.cs ├── install-provider.ps1 ├── packages.config └── provider.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /ChocolateyPackageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/ChocolateyPackageProvider.cs -------------------------------------------------------------------------------- /ChocolateyProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/ChocolateyProvider.csproj -------------------------------------------------------------------------------- /ChocolateyProvider.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/ChocolateyProvider.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/LICENSE -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/README.md -------------------------------------------------------------------------------- /RequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/RequestHelper.cs -------------------------------------------------------------------------------- /RequestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/RequestLogger.cs -------------------------------------------------------------------------------- /Resources/Messages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/Resources/Messages.Designer.cs -------------------------------------------------------------------------------- /Resources/Messages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/Resources/Messages.resx -------------------------------------------------------------------------------- /Sdk/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/Sdk/Constants.cs -------------------------------------------------------------------------------- /Sdk/ErrorCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/Sdk/ErrorCategory.cs -------------------------------------------------------------------------------- /Sdk/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/Sdk/Request.cs -------------------------------------------------------------------------------- /install-provider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/install-provider.ps1 -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/packages.config -------------------------------------------------------------------------------- /provider.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/chocolatey-oneget/HEAD/provider.manifest --------------------------------------------------------------------------------