2019-09-05 00:26:26 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2022-05-11 18:35:18 +08:00
|
|
|
|
2019-09-05 00:26:26 +08:00
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
<VCProjectVersion>15.0</VCProjectVersion>
|
2019-12-16 18:12:36 +08:00
|
|
|
<ProjectGuid>{64A80062-4D8B-4229-8A38-DFA1D7497749}</ProjectGuid>
|
2019-09-05 00:26:26 +08:00
|
|
|
<Keyword>Win32Proj</Keyword>
|
2019-12-24 22:06:58 +08:00
|
|
|
<RootNamespace>$safeprojectname$</RootNamespace>
|
2019-09-05 00:26:26 +08:00
|
|
|
<ProjectName>ModuleTemplate</ProjectName>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2022-05-11 18:35:18 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
2019-09-05 00:26:26 +08:00
|
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
2022-02-07 22:08:30 +08:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2019-09-05 00:26:26 +08:00
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
</PropertyGroup>
|
2022-05-11 18:35:18 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
2019-09-05 00:26:26 +08:00
|
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
2022-02-07 22:08:30 +08:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2019-09-05 00:26:26 +08:00
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
</ImportGroup>
|
|
|
|
<ImportGroup Label="Shared">
|
|
|
|
</ImportGroup>
|
2022-05-11 18:35:18 +08:00
|
|
|
<ImportGroup Label="PropertySheets">
|
2019-09-05 00:26:26 +08:00
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
</ImportGroup>
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
2022-05-11 18:35:18 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
2019-09-05 00:26:26 +08:00
|
|
|
<LinkIncremental>true</LinkIncremental>
|
|
|
|
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\</OutDir>
|
|
|
|
</PropertyGroup>
|
2022-05-11 18:35:18 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
2019-09-05 00:26:26 +08:00
|
|
|
<LinkIncremental>false</LinkIncremental>
|
|
|
|
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\modules\</OutDir>
|
|
|
|
</PropertyGroup>
|
2022-05-11 18:35:18 +08:00
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
|
2019-09-05 00:26:26 +08:00
|
|
|
<ClCompile>
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
<Optimization>Disabled</Optimization>
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
<PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
<ConformanceMode>true</ConformanceMode>
|
|
|
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
|
|
<LanguageStandard>stdcpplatest</LanguageStandard>
|
|
|
|
</ClCompile>
|
|
|
|
<Link>
|
|
|
|
<SubSystem>Windows</SubSystem>
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
|
|
|
|
</Link>
|
|
|
|
</ItemDefinitionGroup>
|
2022-05-11 18:35:18 +08:00
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
2019-09-05 00:26:26 +08:00
|
|
|
<ClCompile>
|
|
|
|
<WarningLevel>Level3</WarningLevel>
|
|
|
|
<Optimization>MaxSpeed</Optimization>
|
|
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
|
<SDLCheck>true</SDLCheck>
|
|
|
|
<PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
<ConformanceMode>true</ConformanceMode>
|
|
|
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
|
|
<LanguageStandard>stdcpplatest</LanguageStandard>
|
|
|
|
</ClCompile>
|
|
|
|
<Link>
|
|
|
|
<SubSystem>Windows</SubSystem>
|
|
|
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
|
<OptimizeReferences>true</OptimizeReferences>
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
|
|
|
|
</Link>
|
|
|
|
</ItemDefinitionGroup>
|
2019-12-16 18:12:36 +08:00
|
|
|
<ItemDefinitionGroup>
|
|
|
|
<ClCompile>
|
|
|
|
<AdditionalIncludeDirectories>$(SolutionDir)src\;$(SolutionDir)src\modules;$(SolutionDir)src\common\Telemetry;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
</ClCompile>
|
|
|
|
</ItemDefinitionGroup>
|
2019-09-05 00:26:26 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<ClInclude Include="pch.h" />
|
|
|
|
<ClInclude Include="resource.h" />
|
|
|
|
<ClInclude Include="trace.h" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ClCompile Include="dllmain.cpp" />
|
|
|
|
<ClCompile Include="pch.cpp">
|
2024-03-22 18:29:14 +08:00
|
|
|
<PrecompiledHeader Condition="'$(UsePrecompiledHeaders)' != 'false'">Create</PrecompiledHeader>
|
2019-09-05 00:26:26 +08:00
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="trace.cpp" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ResourceCompile Include="$projectname$.rc" />
|
|
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
</ImportGroup>
|
|
|
|
</Project>
|