Fixing build issues (#957)

This commit is contained in:
Justin Kotalik 2018-06-21 12:32:13 -07:00 committed by GitHub
parent 93de3f83ce
commit e5505ceefc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#include "resources.h"
#include "SRWExclusiveLock.h"
#include "GlobalVersionUtility.h"
#include "exceptions.h"
const PCWSTR APPLICATION_INFO::s_pwzAspnetcoreInProcessRequestHandlerName = L"aspnetcorev2_inprocess.dll";
const PCWSTR APPLICATION_INFO::s_pwzAspnetcoreOutOfProcessRequestHandlerName = L"aspnetcorev2_outofprocess.dll";

View File

@ -6,6 +6,7 @@
#include <httpserv.h>
#include "ahutil.h"
#include "stringu.h"
#include "exceptions.h"
class ConfigUtility
{

View File

@ -7,6 +7,8 @@
#include "EventLog.h"
#include "ntassert.h"
#include "fx_ver.h"
#include "debugutil.h"
#include "exceptions.h"
namespace fs = std::experimental::filesystem;

View File

@ -4,6 +4,8 @@
#include "hostfxroptions.h"
#include "hostfxr_utility.h"
#include "debugutil.h"
#include "exceptions.h"
HRESULT HOSTFXR_OPTIONS::Create(
_In_ PCWSTR pcwzExeLocation,

View File

@ -10,6 +10,7 @@
#include "utility.h"
#include "EventLog.h"
#include "SRWExclusiveLock.h"
#include "exceptions.h"
IN_PROCESS_APPLICATION* IN_PROCESS_APPLICATION::s_Application = NULL;
hostfxr_main_fn IN_PROCESS_APPLICATION::s_fMainCallback = NULL;