From e5505ceefc8c965054d463fccef93417dca0422a Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Thu, 21 Jun 2018 12:32:13 -0700 Subject: [PATCH] Fixing build issues (#957) --- src/AspNetCoreModuleV2/AspNetCore/src/applicationinfo.cpp | 1 + src/AspNetCoreModuleV2/CommonLib/config_utility.h | 1 + src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp | 2 ++ src/AspNetCoreModuleV2/CommonLib/hostfxroptions.cpp | 2 ++ .../InProcessRequestHandler/inprocessapplication.cpp | 1 + 5 files changed, 7 insertions(+) diff --git a/src/AspNetCoreModuleV2/AspNetCore/src/applicationinfo.cpp b/src/AspNetCoreModuleV2/AspNetCore/src/applicationinfo.cpp index 28c7c3636e..5fa4ca4db1 100644 --- a/src/AspNetCoreModuleV2/AspNetCore/src/applicationinfo.cpp +++ b/src/AspNetCoreModuleV2/AspNetCore/src/applicationinfo.cpp @@ -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"; diff --git a/src/AspNetCoreModuleV2/CommonLib/config_utility.h b/src/AspNetCoreModuleV2/CommonLib/config_utility.h index a9e0259ea7..78efe9a04b 100644 --- a/src/AspNetCoreModuleV2/CommonLib/config_utility.h +++ b/src/AspNetCoreModuleV2/CommonLib/config_utility.h @@ -6,6 +6,7 @@ #include #include "ahutil.h" #include "stringu.h" +#include "exceptions.h" class ConfigUtility { diff --git a/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp b/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp index 07854d97da..ba45242e5b 100644 --- a/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp +++ b/src/AspNetCoreModuleV2/CommonLib/hostfxr_utility.cpp @@ -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; diff --git a/src/AspNetCoreModuleV2/CommonLib/hostfxroptions.cpp b/src/AspNetCoreModuleV2/CommonLib/hostfxroptions.cpp index a17258f5cf..fb65edf710 100644 --- a/src/AspNetCoreModuleV2/CommonLib/hostfxroptions.cpp +++ b/src/AspNetCoreModuleV2/CommonLib/hostfxroptions.cpp @@ -4,6 +4,8 @@ #include "hostfxroptions.h" #include "hostfxr_utility.h" +#include "debugutil.h" +#include "exceptions.h" HRESULT HOSTFXR_OPTIONS::Create( _In_ PCWSTR pcwzExeLocation, diff --git a/src/AspNetCoreModuleV2/InProcessRequestHandler/inprocessapplication.cpp b/src/AspNetCoreModuleV2/InProcessRequestHandler/inprocessapplication.cpp index 7ad1eb06f4..70c535f0b3 100644 --- a/src/AspNetCoreModuleV2/InProcessRequestHandler/inprocessapplication.cpp +++ b/src/AspNetCoreModuleV2/InProcessRequestHandler/inprocessapplication.cpp @@ -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;