├── .build.custom └── nugetPrepare.post.step ├── .build ├── Castle.Core.dll ├── Castle.Windsor.dll ├── UppercuT.xml ├── analyze.step ├── analyzers │ ├── cover.step │ ├── fxcop.step │ ├── gallio.test.step │ ├── mbunit2.test.step │ ├── metrics.step │ ├── moma.step │ ├── ncover.cover.step │ ├── ndepend.step │ ├── nitriq.step │ ├── nunit.test.step │ ├── opencover.cover.step │ ├── test.step │ └── xunit.test.step ├── compile.step ├── csharp.functions ├── customize.bat ├── customize.build ├── customizers │ └── item.template ├── default.build ├── default.build.settings ├── deploymentBuilder.step ├── environmentBuilder.step ├── gemsBuild.step ├── gemsPrepare.step ├── generateBuildInfo.step ├── ilmerge.build ├── manifestBuilder.step ├── nugetBuild.step ├── nugetPrepare.step ├── obfuscate.step ├── open.build ├── package.step ├── policyChecks.step ├── uc.exe ├── uc.exe.config ├── updateAssemblies.build ├── uppercut.dll ├── uppercut.tasks.dll ├── versionBuilder.step ├── versioners │ ├── git.step │ ├── hg.step │ ├── svn.step │ └── tfs.step └── zip.build ├── .gitignore ├── .uppercut ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── SimpleChocolateyServer.snk ├── lib ├── NAnt │ ├── CollectionGen.dll │ ├── Interop.MsmMergeTypeLib.dll │ ├── Interop.StarTeam.dll │ ├── Interop.WindowsInstaller.dll │ ├── NAnt.CompressionTasks.dll │ ├── NAnt.Contrib.Tasks.dll │ ├── NAnt.Core.dll │ ├── NAnt.DotNetTasks.dll │ ├── NAnt.MSNetTasks.dll │ ├── NAnt.NUnit.dll │ ├── NAnt.NUnit1Tasks.dll │ ├── NAnt.NUnit2Tasks.dll │ ├── NAnt.SourceControlTasks.dll │ ├── NAnt.VSNetTasks.dll │ ├── NAnt.VisualCppTasks.dll │ ├── NAnt.Win32Tasks.dll │ ├── NAnt.exe │ ├── NAnt.exe.config │ ├── NCoverExplorer.NAntTasks.dll │ ├── NDoc.Documenter.NAnt.dll │ ├── SLiNgshoT.Core.dll │ ├── SLiNgshoT.exe │ ├── SourceSafe.Interop.dll │ ├── ThoughtWorks.CruiseControl.MSBuild.dll │ ├── extensions │ │ └── common │ │ │ ├── 2.0 │ │ │ └── NAnt.MSBuild.dll │ │ │ └── 4.0 │ │ │ └── NAnt.MSBuild.dll │ ├── lib │ │ └── common │ │ │ ├── 2.0 │ │ │ ├── nunit-console-runner.dll │ │ │ ├── nunit-console.exe │ │ │ ├── nunit-console.exe.config │ │ │ ├── nunit.core.dll │ │ │ ├── nunit.core.interfaces.dll │ │ │ ├── nunit.framework.dll │ │ │ └── nunit.util.dll │ │ │ └── neutral │ │ │ ├── ICSharpCode.SharpCvsLib.Console.dll │ │ │ ├── ICSharpCode.SharpCvsLib.dll │ │ │ ├── ICSharpCode.SharpZipLib.dll │ │ │ ├── NDoc.Core.dll │ │ │ ├── NDoc.Documenter.Msdn.dll │ │ │ ├── NDoc.ExtendedUI.dll │ │ │ ├── NUnitCore.dll │ │ │ └── netDumbster.dll │ ├── log4net.dll │ └── scvs.exe ├── NuGet-Chocolatey │ ├── NuGet.Core.dll │ ├── NuGet.Core.pdb │ ├── NuGet.Server.Core.dll │ ├── NuGet.Server.Core.pdb │ ├── NuGet.Server.V2.dll │ ├── NuGet.Server.V2.pdb │ ├── NuGet.Server.dll │ └── NuGet.Server.pdb └── NuGet │ ├── LICENSE.txt │ └── NuGet.exe ├── nuget ├── chocolatey.server.nuspec └── tools │ ├── LICENSE.txt │ ├── VERIFICATION.txt │ ├── chocolateyInstall.ps1 │ ├── chocolateybeforemodify.ps1 │ └── chocolateyuninstall.ps1 ├── src ├── SimpleChocolateyServer.sln └── SimpleChocolateyServer │ ├── 7za.exe │ ├── App_Data │ └── Packages │ │ └── Readme.txt │ ├── App_Start │ └── NuGetODataConfig.cs │ ├── Content │ └── images │ │ ├── MarksUsePolicy.pdf │ │ └── chocolatey.png │ ├── Controllers │ └── InstallController.cs │ ├── Default.aspx │ ├── ForReference.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SimpleChocolateyServer.csproj │ ├── Web.config │ ├── Web.config.install.xdt │ ├── favicon.ico │ └── packages.config ├── test.bat ├── zip.bat └── zip.sh /.build.custom/nugetPrepare.post.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build.custom/nugetPrepare.post.step -------------------------------------------------------------------------------- /.build/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/Castle.Core.dll -------------------------------------------------------------------------------- /.build/Castle.Windsor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/Castle.Windsor.dll -------------------------------------------------------------------------------- /.build/UppercuT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/UppercuT.xml -------------------------------------------------------------------------------- /.build/analyze.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyze.step -------------------------------------------------------------------------------- /.build/analyzers/cover.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/cover.step -------------------------------------------------------------------------------- /.build/analyzers/fxcop.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/fxcop.step -------------------------------------------------------------------------------- /.build/analyzers/gallio.test.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/gallio.test.step -------------------------------------------------------------------------------- /.build/analyzers/mbunit2.test.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/mbunit2.test.step -------------------------------------------------------------------------------- /.build/analyzers/metrics.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/metrics.step -------------------------------------------------------------------------------- /.build/analyzers/moma.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/moma.step -------------------------------------------------------------------------------- /.build/analyzers/ncover.cover.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/ncover.cover.step -------------------------------------------------------------------------------- /.build/analyzers/ndepend.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/ndepend.step -------------------------------------------------------------------------------- /.build/analyzers/nitriq.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/nitriq.step -------------------------------------------------------------------------------- /.build/analyzers/nunit.test.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/nunit.test.step -------------------------------------------------------------------------------- /.build/analyzers/opencover.cover.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/opencover.cover.step -------------------------------------------------------------------------------- /.build/analyzers/test.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/test.step -------------------------------------------------------------------------------- /.build/analyzers/xunit.test.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/analyzers/xunit.test.step -------------------------------------------------------------------------------- /.build/compile.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/compile.step -------------------------------------------------------------------------------- /.build/csharp.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/csharp.functions -------------------------------------------------------------------------------- /.build/customize.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/customize.bat -------------------------------------------------------------------------------- /.build/customize.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/customize.build -------------------------------------------------------------------------------- /.build/customizers/item.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/customizers/item.template -------------------------------------------------------------------------------- /.build/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/default.build -------------------------------------------------------------------------------- /.build/default.build.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/default.build.settings -------------------------------------------------------------------------------- /.build/deploymentBuilder.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/deploymentBuilder.step -------------------------------------------------------------------------------- /.build/environmentBuilder.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/environmentBuilder.step -------------------------------------------------------------------------------- /.build/gemsBuild.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/gemsBuild.step -------------------------------------------------------------------------------- /.build/gemsPrepare.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/gemsPrepare.step -------------------------------------------------------------------------------- /.build/generateBuildInfo.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/generateBuildInfo.step -------------------------------------------------------------------------------- /.build/ilmerge.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/ilmerge.build -------------------------------------------------------------------------------- /.build/manifestBuilder.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/manifestBuilder.step -------------------------------------------------------------------------------- /.build/nugetBuild.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/nugetBuild.step -------------------------------------------------------------------------------- /.build/nugetPrepare.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/nugetPrepare.step -------------------------------------------------------------------------------- /.build/obfuscate.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/obfuscate.step -------------------------------------------------------------------------------- /.build/open.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/open.build -------------------------------------------------------------------------------- /.build/package.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/package.step -------------------------------------------------------------------------------- /.build/policyChecks.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/policyChecks.step -------------------------------------------------------------------------------- /.build/uc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/uc.exe -------------------------------------------------------------------------------- /.build/uc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/uc.exe.config -------------------------------------------------------------------------------- /.build/updateAssemblies.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/updateAssemblies.build -------------------------------------------------------------------------------- /.build/uppercut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/uppercut.dll -------------------------------------------------------------------------------- /.build/uppercut.tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/uppercut.tasks.dll -------------------------------------------------------------------------------- /.build/versionBuilder.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/versionBuilder.step -------------------------------------------------------------------------------- /.build/versioners/git.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/versioners/git.step -------------------------------------------------------------------------------- /.build/versioners/hg.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/versioners/hg.step -------------------------------------------------------------------------------- /.build/versioners/svn.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/versioners/svn.step -------------------------------------------------------------------------------- /.build/versioners/tfs.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/versioners/tfs.step -------------------------------------------------------------------------------- /.build/zip.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.build/zip.build -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.uppercut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/.uppercut -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/README.md -------------------------------------------------------------------------------- /SimpleChocolateyServer.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/SimpleChocolateyServer.snk -------------------------------------------------------------------------------- /lib/NAnt/CollectionGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/CollectionGen.dll -------------------------------------------------------------------------------- /lib/NAnt/Interop.MsmMergeTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/Interop.MsmMergeTypeLib.dll -------------------------------------------------------------------------------- /lib/NAnt/Interop.StarTeam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/Interop.StarTeam.dll -------------------------------------------------------------------------------- /lib/NAnt/Interop.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/Interop.WindowsInstaller.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.CompressionTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.CompressionTasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.Contrib.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.Contrib.Tasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.Core.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.DotNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.DotNetTasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.MSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.MSNetTasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.NUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.NUnit.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.NUnit1Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.NUnit1Tasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.NUnit2Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.NUnit2Tasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.SourceControlTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.SourceControlTasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.VSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.VSNetTasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.VisualCppTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.VisualCppTasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.Win32Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.Win32Tasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NAnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.exe -------------------------------------------------------------------------------- /lib/NAnt/NAnt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NAnt.exe.config -------------------------------------------------------------------------------- /lib/NAnt/NCoverExplorer.NAntTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NCoverExplorer.NAntTasks.dll -------------------------------------------------------------------------------- /lib/NAnt/NDoc.Documenter.NAnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/NDoc.Documenter.NAnt.dll -------------------------------------------------------------------------------- /lib/NAnt/SLiNgshoT.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/SLiNgshoT.Core.dll -------------------------------------------------------------------------------- /lib/NAnt/SLiNgshoT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/SLiNgshoT.exe -------------------------------------------------------------------------------- /lib/NAnt/SourceSafe.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/SourceSafe.Interop.dll -------------------------------------------------------------------------------- /lib/NAnt/ThoughtWorks.CruiseControl.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/ThoughtWorks.CruiseControl.MSBuild.dll -------------------------------------------------------------------------------- /lib/NAnt/extensions/common/2.0/NAnt.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/extensions/common/2.0/NAnt.MSBuild.dll -------------------------------------------------------------------------------- /lib/NAnt/extensions/common/4.0/NAnt.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/extensions/common/4.0/NAnt.MSBuild.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/2.0/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/2.0/nunit-console-runner.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/2.0/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/2.0/nunit-console.exe -------------------------------------------------------------------------------- /lib/NAnt/lib/common/2.0/nunit-console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/2.0/nunit-console.exe.config -------------------------------------------------------------------------------- /lib/NAnt/lib/common/2.0/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/2.0/nunit.core.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/2.0/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/2.0/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/2.0/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/2.0/nunit.framework.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/2.0/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/2.0/nunit.util.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/ICSharpCode.SharpCvsLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/ICSharpCode.SharpCvsLib.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/NDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/NDoc.Core.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/NDoc.Documenter.Msdn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/NDoc.Documenter.Msdn.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/NDoc.ExtendedUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/NDoc.ExtendedUI.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/NUnitCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/NUnitCore.dll -------------------------------------------------------------------------------- /lib/NAnt/lib/common/neutral/netDumbster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/lib/common/neutral/netDumbster.dll -------------------------------------------------------------------------------- /lib/NAnt/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/log4net.dll -------------------------------------------------------------------------------- /lib/NAnt/scvs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NAnt/scvs.exe -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Core.dll -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Core.pdb -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Server.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Server.Core.dll -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Server.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Server.Core.pdb -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Server.V2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Server.V2.dll -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Server.V2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Server.V2.pdb -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Server.dll -------------------------------------------------------------------------------- /lib/NuGet-Chocolatey/NuGet.Server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet-Chocolatey/NuGet.Server.pdb -------------------------------------------------------------------------------- /lib/NuGet/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet/LICENSE.txt -------------------------------------------------------------------------------- /lib/NuGet/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/lib/NuGet/NuGet.exe -------------------------------------------------------------------------------- /nuget/chocolatey.server.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/nuget/chocolatey.server.nuspec -------------------------------------------------------------------------------- /nuget/tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/nuget/tools/LICENSE.txt -------------------------------------------------------------------------------- /nuget/tools/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/nuget/tools/VERIFICATION.txt -------------------------------------------------------------------------------- /nuget/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/nuget/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /nuget/tools/chocolateybeforemodify.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/nuget/tools/chocolateybeforemodify.ps1 -------------------------------------------------------------------------------- /nuget/tools/chocolateyuninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/nuget/tools/chocolateyuninstall.ps1 -------------------------------------------------------------------------------- /src/SimpleChocolateyServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer.sln -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/7za.exe -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/App_Data/Packages/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/App_Data/Packages/Readme.txt -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/App_Start/NuGetODataConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/App_Start/NuGetODataConfig.cs -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/Content/images/MarksUsePolicy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/Content/images/MarksUsePolicy.pdf -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/Content/images/chocolatey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/Content/images/chocolatey.png -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/Controllers/InstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/Controllers/InstallController.cs -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/Default.aspx -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/ForReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/ForReference.cs -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/SimpleChocolateyServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/SimpleChocolateyServer.csproj -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/Web.config -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/Web.config.install.xdt -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/favicon.ico -------------------------------------------------------------------------------- /src/SimpleChocolateyServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/src/SimpleChocolateyServer/packages.config -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/test.bat -------------------------------------------------------------------------------- /zip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/zip.bat -------------------------------------------------------------------------------- /zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey-community/simple-server/HEAD/zip.sh --------------------------------------------------------------------------------