asp.net core web api published in IIS after moved to different IIS server pc gives error 500.19 (0x8007000d)

To get a more detailed error message: Verify that the log directory exists at the path referenced by the web config. If it does not, create it. The path shown in your config would place the “logs” directory in the root folder of the deployed site. Verify that the application pool has write access to … Read more

CMake error at CMakeLists.txt:30 (project): No CMAKE_C_COMPILER could be found

Those error messages CMake Error at … (project): No CMAKE_C_COMPILER could be found. — Configuring incomplete, errors occurred! See also “…/CMakeFiles/CMakeOutput.log”. See also “…/CMakeFiles/CMakeError.log”. or CMake Error: your CXX compiler: “CMAKE_CXX_COMPILER-NOTFOUND” was not found. Please set CMAKE_CXX_COMPILER to a valid compiler path or name. … — Configuring incomplete, errors occurred! just mean that CMake was … Read more

I upgraded C++ projects from Visual Studio 2010 to 2015 still its showing Visual Studio (2010)

This is not an error, it simply means that the project is using the toolkit that came with Visual Studio 2010. This doesn’t prevent your projects from being compiled however. To upgrade the project to the Visual Studio 2015 toolkit right click on the projects showing (Visual Studio 2010) and select the desired toolkit under … Read more