Go to file
Sourabh Shirhatti cfd963c484 Merge branch 'shirhatti/nuget' into dev 2016-09-26 17:28:55 -07:00
Build Change output directory to work with KoreBuild 2016-09-21 17:21:37 -07:00
nuget Produce fake nupkg for testing 2016-09-26 17:08:07 -07:00
src Merge branch 'shirhatti/nuget' into dev 2016-09-26 17:28:55 -07:00
.gitattributes
.gitignore
AspNetCoreModule.sln Change project structure to accomodate test projects 2016-09-26 15:07:33 -07:00
LICENSE.txt
README.md
build.cmd
build.ps1
global.json Change project structure to accomodate test projects 2016-09-26 15:07:33 -07:00
makefile.shade Produce fake nupkg for testing 2016-09-26 17:08:07 -07:00

README.md

ASP.NET Core Module

The ASP.NET Core Module is an IIS Module which is responsible for process management of ASP.NET Core http listeners and to proxy requests to the process that it manages.

Pre-requisites for building

Windows 8.1+ or Windows Server 2012 R2+

Visual C++ Build Tools

Download and install Visual Studio 2015. In Visual Studio 2015 C++ tooling is no longer installed by default, you must chose "Custom" install and select Visual C++.

Visual C++

Optionally, if you don't want to install Visual Studio you can just install the Visual C++ build tools.

MSBuild

If you have installed Visual Studio, you should already have MSBuild. If you installed the Visual C++ build tools, you will need to download and install Microsoft Build Tools 2015

Once you have installed MSBuild, you can add it your path. The default location for MSBuild is %ProgramFiles(x86)%\MSBuild\14.0\Bin

Windows Software Development Kit for Windows 8.1

Download and install the Windows SDK for Windows 8.1. From the Feature list presented, ensure you select Windows Software Development Kit.

If chose to install from the command prompt, you can run the following command.

.\sdksetup.exe /features OptionId.WindowsDesktopSoftwareDevelopmentKit

How to build


# Clean
.\build.cmd /target:clean

# Build
.\build.cmd

# Build 64-bit
.\build.cmd /property:platform=x64

# Build in Release Configuration
.\build.cmd /property:configuration=release