2020-07-28 00:53:29 +08:00
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets= "Build" xmlns= "http://schemas.microsoft.com/developer/msbuild/2003" >
2020-08-05 22:20:50 +08:00
<Import Project= "..\..\..\src\Version.props" />
2020-07-28 00:53:29 +08:00
<Target Name= "Generate Resource file" BeforeTargets= "PrepareForBuild" >
<ItemGroup >
2020-08-05 22:20:50 +08:00
<RCLines Include= "IDR_BIN_MSIINSTALLER BIN "..\\PowerToysSetup\\$(PlatformShortName)\\$(Configuration)\\PowerToysSetup-$(Version)-$(PlatformShortName).msi"" />
2020-07-28 00:53:29 +08:00
</ItemGroup>
<WriteLinesToFile File= "Generated Files\installer_resource.rc" Lines= "@(RCLines)" Overwrite= "true" Encoding= "Unicode" WriteOnlyWhenDifferent= "true" />
</Target>
<ItemGroup Label= "ProjectConfigurations" >
<ProjectConfiguration Include= "Debug|x64" >
<Configuration > Debug</Configuration>
<Platform > x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include= "Release|x64" >
<Configuration > Release</Configuration>
<Platform > x64</Platform>
</ProjectConfiguration>
</ItemGroup>
2020-09-10 21:57:16 +08:00
<Target Name= "GenerateResourceFiles" BeforeTargets= "PrepareForBuild" >
2020-12-18 19:37:40 +08:00
<Exec Command= "powershell -NonInteractive -executionpolicy Unrestricted $(SolutionDir)..\..\tools\build\convert-resx-to-rc.ps1 $(MSBuildThisFileDirectory) resource.base.h resource.h bootstrapper.base.rc bootstrapper.rc 105" />
2020-09-10 21:57:16 +08:00
</Target>
2020-07-28 00:53:29 +08:00
<PropertyGroup Label= "Globals" >
<VCProjectVersion > 16.0</VCProjectVersion>
<ProjectGuid > {D194E3AA-F824-4CA9-9A58-034DD6B7D022}</ProjectGuid>
<RootNamespace > bootstrapper</RootNamespace>
<WindowsTargetPlatformVersion > 10.0.17134.0</WindowsTargetPlatformVersion>
<ProjectName > bootstrapper</ProjectName>
</PropertyGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2020-10-14 22:36:03 +08:00
<Import Project= "..\..\..\deps\spdlog.props" />
<Import Project= "..\..\..\deps\cxxopts.props" />
2020-07-28 00:53:29 +08:00
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|x64'" Label= "Configuration" >
<ConfigurationType > Application</ConfigurationType>
<UseDebugLibraries > true</UseDebugLibraries>
<PlatformToolset > v142</PlatformToolset>
<CharacterSet > Unicode</CharacterSet>
<SpectreMitigation > Spectre</SpectreMitigation>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Release|x64'" Label= "Configuration" >
<ConfigurationType > Application</ConfigurationType>
<UseDebugLibraries > false</UseDebugLibraries>
<PlatformToolset > v142</PlatformToolset>
<WholeProgramOptimization > true</WholeProgramOptimization>
<CharacterSet > Unicode</CharacterSet>
<SpectreMitigation > Spectre</SpectreMitigation>
</PropertyGroup>
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label= "ExtensionSettings" >
</ImportGroup>
<ImportGroup Label= "Shared" >
</ImportGroup>
<ImportGroup Label= "PropertySheets" Condition= "'$(Configuration)|$(Platform)'=='Debug|x64'" >
<Import Project= "$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition= "exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label= "LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label= "PropertySheets" Condition= "'$(Configuration)|$(Platform)'=='Release|x64'" >
<Import Project= "$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition= "exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label= "LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup >
<TargetName > PowerToysSetup-$(Version)-$(PlatformShortName)</TargetName>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Release|x64'" >
<LinkIncremental > false</LinkIncremental>
<IncludePath > ../;$(IncludePath)</IncludePath>
<IntDir > $(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|x64'" >
<LinkIncremental > true</LinkIncremental>
<IncludePath > ../;$(IncludePath)</IncludePath>
<IntDir > $(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition= "'$(Configuration)|$(Platform)'=='Release|x64'" >
<ClCompile >
<WarningLevel > Level4</WarningLevel>
<FunctionLevelLinking > true</FunctionLevelLinking>
<IntrinsicFunctions > true</IntrinsicFunctions>
<SDLCheck > true</SDLCheck>
<PreprocessorDefinitions > NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary > MultiThreaded</RuntimeLibrary>
2020-11-27 19:18:23 +08:00
<MultiProcessorCompilation Condition= "'$(CIBuild)'!='true'" > true</MultiProcessorCompilation>
2020-10-14 22:36:03 +08:00
<AdditionalIncludeDirectories > ../../../src/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2020-08-05 22:20:50 +08:00
<PrecompiledHeader > Use</PrecompiledHeader>
<PrecompiledHeaderFile > pch.h</PrecompiledHeaderFile>
2020-11-13 20:57:01 +08:00
<AdditionalOptions > /await /Zc:twoPhase- %(AdditionalOptions)</AdditionalOptions>
2020-07-28 00:53:29 +08:00
</ClCompile>
<Link >
<SubSystem > Windows</SubSystem>
<EnableCOMDATFolding > true</EnableCOMDATFolding>
<OptimizeReferences > true</OptimizeReferences>
<GenerateDebugInformation > true</GenerateDebugInformation>
2020-11-27 05:31:00 +08:00
<AdditionalDependencies > WindowsApp.lib;Msi.lib;Shlwapi.lib;Comctl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
2020-07-28 00:53:29 +08:00
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition= "'$(Configuration)|$(Platform)'=='Debug|x64'" >
<ClCompile >
<WarningLevel > Level4</WarningLevel>
<SDLCheck > true</SDLCheck>
<PreprocessorDefinitions > _DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary > MultiThreadedDebug</RuntimeLibrary>
2020-11-27 19:18:23 +08:00
<MultiProcessorCompilation Condition= "'$(CIBuild)'!='true'" > true</MultiProcessorCompilation>
2020-10-14 22:36:03 +08:00
<AdditionalIncludeDirectories > ../../../src/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
2020-08-05 22:20:50 +08:00
<PrecompiledHeader > Use</PrecompiledHeader>
<PrecompiledHeaderFile > pch.h</PrecompiledHeaderFile>
2020-11-13 20:57:01 +08:00
<AdditionalOptions > /await /Zc:twoPhase- %(AdditionalOptions)</AdditionalOptions>
2020-07-28 00:53:29 +08:00
</ClCompile>
<Link >
<SubSystem > Windows</SubSystem>
<GenerateDebugInformation > true</GenerateDebugInformation>
2020-11-27 05:31:00 +08:00
<AdditionalDependencies > WindowsApp.lib;Msi.lib;Shlwapi.lib;Comctl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
2020-07-28 00:53:29 +08:00
</Link>
</ItemDefinitionGroup>
<ItemGroup >
<ClCompile Include= "bootstrapper.cpp" />
2020-08-05 22:20:50 +08:00
<ClCompile Include= "pch.cpp" >
<PrecompiledHeader Condition= "'$(Configuration)|$(Platform)'=='Debug|x64'" > Create</PrecompiledHeader>
<PrecompiledHeader Condition= "'$(Configuration)|$(Platform)'=='Release|x64'" > Create</PrecompiledHeader>
</ClCompile>
2020-11-27 05:31:00 +08:00
<ClCompile Include= "progressbar_window.cpp" />
2020-12-15 20:16:09 +08:00
<ClCompile Include= "RcResource.cpp" />
2020-07-28 00:53:29 +08:00
</ItemGroup>
<ItemGroup >
2020-08-05 22:20:50 +08:00
<ClInclude Include= "pch.h" />
2020-11-27 05:31:00 +08:00
<ClInclude Include= "progressbar_window.h" />
2020-07-28 00:53:29 +08:00
</ItemGroup>
<ItemGroup >
<None Include= "packages.config" />
</ItemGroup>
<ItemGroup >
2020-09-10 21:57:16 +08:00
<None Include= "bootstrapper.base.rc" />
<ResourceCompile Include= "Generated Files/bootstrapper.rc" />
2020-07-28 00:53:29 +08:00
</ItemGroup>
<ItemGroup >
<Image Include= "..\runner\svgs\icon.ico" />
</ItemGroup>
2020-08-05 22:20:50 +08:00
<ItemGroup >
<ProjectReference Include= "..\..\..\src\common\updating\updating.vcxproj" >
<Project > {17da04df-e393-4397-9cf0-84dabe11032e}</Project>
</ProjectReference>
2020-10-14 22:36:03 +08:00
<ProjectReference Include= "..\..\..\src\logging\logging.vcxproj" >
<Project > {7e1e3f13-2bd6-3f75-a6a7-873a2b55c60f}</Project>
</ProjectReference>
2020-08-05 22:20:50 +08:00
</ItemGroup>
2020-07-28 00:53:29 +08:00
<Import Project= "$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label= "ExtensionTargets" >
2020-10-20 06:44:57 +08:00
<Import Project= "..\..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.200902.2\build\native\Microsoft.Windows.ImplementationLibrary.targets" Condition= "Exists('..\..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.200902.2\build\native\Microsoft.Windows.ImplementationLibrary.targets')" />
2020-07-28 00:53:29 +08:00
</ImportGroup>
<Target Name= "EnsureNuGetPackageBuildImports" BeforeTargets= "PrepareForBuild" >
<PropertyGroup >
<ErrorText > This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
2020-10-20 06:44:57 +08:00
<Error Condition= "!Exists('..\..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.200902.2\build\native\Microsoft.Windows.ImplementationLibrary.targets')" Text= "$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.Windows.ImplementationLibrary.1.0.200902.2\build\native\Microsoft.Windows.ImplementationLibrary.targets'))" />
2020-07-28 00:53:29 +08:00
</Target>
2020-09-10 21:57:16 +08:00
</Project>