Skip to content

Commit

Permalink
renamed host_resolver_t.h and host_resolver_t.cpp to not have "_t"
Browse files Browse the repository at this point in the history
  • Loading branch information
VSadov committed Jun 25, 2020
1 parent a8cd903 commit fc627ce
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/installer/corehost/cli/apphost/standalone/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -21,12 +21,12 @@ include_directories(..)

set(SOURCES
../bundle_marker.cpp
./hostfxr_resolver_t.cpp
./hostfxr_resolver.cpp
)

set(HEADERS
../bundle_marker.h
../../../hostfxr_resolver_t.h
../../../hostfxr_resolver.h
)

if(CLR_CMAKE_TARGET_WIN32)
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
#include "pal.h"
#include "fxr_resolver.h"
#include "trace.h"
#include "hostfxr_resolver_t.h"
#include "hostfxr_resolver.h"

hostfxr_main_bundle_startupinfo_fn hostfxr_resolver_t::resolve_main_bundle_startupinfo()
{
4 changes: 2 additions & 2 deletions src/installer/corehost/cli/apphost/static/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -22,13 +22,13 @@ include_directories(../../json)

set(SOURCES
../bundle_marker.cpp
./hostfxr_resolver_t.cpp
./hostfxr_resolver.cpp
./hostpolicy_resolver.cpp
)

set(HEADERS
../bundle_marker.h
../../../hostfxr_resolver_t.h
../../../hostfxr_resolver.h
)

if(CLR_CMAKE_TARGET_WIN32)
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
#include <assert.h>
#include "trace.h"
#include "hostfxr.h"
#include "hostfxr_resolver_t.h"
#include "hostfxr_resolver.h"

extern "C"
{
2 changes: 1 addition & 1 deletion src/installer/corehost/cli/dotnet/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ if(CLR_CMAKE_TARGET_WIN32)
endif()

list(APPEND SOURCES
../apphost/standalone/hostfxr_resolver_t.cpp
../apphost/standalone/hostfxr_resolver.cpp
)

include(../exe.cmake)
2 changes: 1 addition & 1 deletion src/installer/corehost/cli/exe.cmake
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ list(APPEND SOURCES
${CMAKE_CURRENT_LIST_DIR}/../corehost.cpp
)
list(APPEND HEADERS
${CMAKE_CURRENT_LIST_DIR}/../hostfxr_resolver_t.h
${CMAKE_CURRENT_LIST_DIR}/../hostfxr_resolver.h
)

add_executable(${DOTNET_PROJECT_NAME} ${SOURCES} ${RESOURCES})
2 changes: 1 addition & 1 deletion src/installer/corehost/corehost.cpp
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
#include "fx_ver.h"
#include "trace.h"
#include "utils.h"
#include "hostfxr_resolver_t.h"
#include "hostfxr_resolver.h"

#if defined(FEATURE_APPHOST)
#include "bundle_marker.h"
File renamed without changes.

0 comments on commit fc627ce

Please sign in to comment.