/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Servers/IIS/build/debug.props
30 строк
1 KB
Hao Kung
Use libnethost to find hostfxr (#39810)
02 мар 2022, 03:06
Не верифицирован
02 мар 2022, 03:06
6378cda
Код
Авторство
О чём код?
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- Common debug configuration --> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> <!-- there is no debug version of libnethost.lib currently --> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>false</WholeProgramOptimization> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> <ClCompile> <StringPooling>true</StringPooling> <Optimization>Disabled</Optimization> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <!-- Default runtime is static multithreaded debug but we need to use MT due libnethost not having a debug version --> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> <!-- Without a debug version of libnethost.lib we cannot use _DEBUG --> <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> </ClCompile> <Link> <OptimizeReferences>false</OptimizeReferences> <EnableCOMDATFolding>false</EnableCOMDATFolding> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> </Project>