Go to file
Nate McMaster 26f1d4baa3 Use PackageLineup
PackageLineup is a way to manage PackageReference versions across large projects. It removes the version information from the repository and instead pulls the information from an external "lineup" file.
2017-08-16 14:10:43 -07:00
.vscode
benchmarks/Kestrel.Performance Use PackageLineup 2017-08-16 14:10:43 -07:00
build Use PackageLineup 2017-08-16 14:10:43 -07:00
samples Use PackageLineup 2017-08-16 14:10:43 -07:00
src Use PackageLineup 2017-08-16 14:10:43 -07:00
test Use PackageLineup 2017-08-16 14:10:43 -07:00
tools/CodeGenerator Use PackageLineup 2017-08-16 14:10:43 -07:00
.appveyor.yml Use PackageLineup 2017-08-16 14:10:43 -07:00
.gitattributes
.gitignore
.travis.yml
CONTRIBUTING.md Use PackageLineup 2017-08-16 14:10:43 -07:00
Directory.Build.props Use PackageLineup 2017-08-16 14:10:43 -07:00
Directory.Build.targets Use PackageLineup 2017-08-16 14:10:43 -07:00
KestrelHttpServer.sln Use PackageLineup 2017-08-16 14:10:43 -07:00
LICENSE.txt
NuGet.config Use PackageLineup 2017-08-16 14:10:43 -07:00
NuGetPackageVerifier.json
README.md Use PackageLineup 2017-08-16 14:10:43 -07:00
ToProjectReferences.ps1
build.cmd
build.ps1
build.sh
version.xml

README.md

KestrelHttpServer

Join the chat at https://gitter.im/aspnet/KestrelHttpServer

AppVeyor: AppVeyor

Travis: Travis

This repo contains a cross-platform web server for ASP.NET Core.

This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the Home repo.

Building from source

To run a complete build on command line only, execute build.cmd or build.sh without arguments.

Before opening this project in Visual Studio or VS Code, execute build.cmd /t:Restore (Windows) or ./build.sh /t:Restore (Linux/macOS). This will execute only the part of the build script that downloads and initializes a few required build tools and packages.

See developer documentation for more details.