winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

AppInstallerTestExeInstaller.vcxproj (7543B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      3   <PropertyGroup Label="Globals">
      4     <VCProjectVersion>15.0</VCProjectVersion>
      5     <ProjectGuid>{6CB84692-5994-407D-B9BD-9216AF77FE83}</ProjectGuid>
      6     <Keyword>Win32Proj</Keyword>
      7     <RootNamespace>AppInstallerTestExeInstaller</RootNamespace>
      8     <WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
      9     <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion>
     10     <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
     11   </PropertyGroup>
     12   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
     13   <ItemGroup Label="ProjectConfigurations">
     14     <ProjectConfiguration Include="Debug|Win32">
     15       <Configuration>Debug</Configuration>
     16       <Platform>Win32</Platform>
     17     </ProjectConfiguration>
     18     <ProjectConfiguration Include="Release|Win32">
     19       <Configuration>Release</Configuration>
     20       <Platform>Win32</Platform>
     21     </ProjectConfiguration>
     22     <ProjectConfiguration Include="Debug|x64">
     23       <Configuration>Debug</Configuration>
     24       <Platform>x64</Platform>
     25     </ProjectConfiguration>
     26     <ProjectConfiguration Include="Release|x64">
     27       <Configuration>Release</Configuration>
     28       <Platform>x64</Platform>
     29     </ProjectConfiguration>
     30     <ProjectConfiguration Include="Debug|ARM64">
     31       <Configuration>Debug</Configuration>
     32       <Platform>ARM64</Platform>
     33     </ProjectConfiguration>
     34     <ProjectConfiguration Include="Release|ARM64">
     35       <Configuration>Release</Configuration>
     36       <Platform>ARM64</Platform>
     37     </ProjectConfiguration>
     38   </ItemGroup>
     39   <PropertyGroup Label="Configuration">
     40     <ConfigurationType>Application</ConfigurationType>
     41     <PlatformToolset>v140</PlatformToolset>
     42     <PlatformToolset Condition="'$(VisualStudioVersion)' == '15.0'">v141</PlatformToolset>
     43     <PlatformToolset Condition="'$(VisualStudioVersion)' == '16.0'">v142</PlatformToolset>
     44     <PlatformToolset Condition="'$(VisualStudioVersion)' == '17.0'">v143</PlatformToolset>
     45     <CharacterSet>Unicode</CharacterSet>
     46   </PropertyGroup>
     47   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
     48     <LinkIncremental>true</LinkIncremental>
     49     <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\$(ProjectName)\</OutDir>
     50   </PropertyGroup>
     51   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
     52     <LinkIncremental>true</LinkIncremental>
     53     <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\$(ProjectName)\</OutDir>
     54   </PropertyGroup>
     55   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     56     <LinkIncremental>true</LinkIncremental>
     57     <OutDir>$(SolutionDir)x86\$(Configuration)\$(ProjectName)\</OutDir>
     58   </PropertyGroup>
     59   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     60     <LinkIncremental>false</LinkIncremental>
     61     <OutDir>$(SolutionDir)x86\$(Configuration)\$(ProjectName)\</OutDir>
     62   </PropertyGroup>
     63   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
     64     <LinkIncremental>false</LinkIncremental>
     65     <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\$(ProjectName)\</OutDir>
     66   </PropertyGroup>
     67   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
     68     <LinkIncremental>false</LinkIncremental>
     69     <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\$(ProjectName)\</OutDir>
     70   </PropertyGroup>
     71   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
     72   <ImportGroup Label="ExtensionSettings">
     73   </ImportGroup>
     74   <ImportGroup Label="Shared">
     75   </ImportGroup>
     76   <ImportGroup Label="PropertySheets">
     77     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     78   </ImportGroup>
     79   <Import Project="$(ProjectDir)\..\vcpkg.props" />
     80   <PropertyGroup Label="UserMacros" />
     81   <ItemDefinitionGroup>
     82     <ClCompile>
     83       <PrecompiledHeader>NotUsing</PrecompiledHeader>
     84       <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
     85       <PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
     86       <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     87       <WarningLevel>Level4</WarningLevel>
     88       <AdditionalOptions>%(AdditionalOptions) /permissive- /bigobj /Zi</AdditionalOptions>
     89     </ClCompile>
     90   </ItemDefinitionGroup>
     91   <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
     92     <ClCompile>
     93       <Optimization>Disabled</Optimization>
     94       <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     95       <TreatWarningAsError Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</TreatWarningAsError>
     96       <TreatWarningAsError Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</TreatWarningAsError>
     97       <LanguageStandard Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">stdcpp17</LanguageStandard>
     98       <LanguageStandard Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">stdcpp17</LanguageStandard>
     99       <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
    100     </ClCompile>
    101     <Link>
    102       <SubSystem>Console</SubSystem>
    103       <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
    104     </Link>
    105   </ItemDefinitionGroup>
    106   <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
    107     <ClCompile>
    108       <PreprocessorDefinitions>WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    109       <TreatWarningAsError Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</TreatWarningAsError>
    110       <LanguageStandard Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">stdcpp17</LanguageStandard>
    111     </ClCompile>
    112   </ItemDefinitionGroup>
    113   <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
    114     <ClCompile>
    115       <Optimization>MaxSpeed</Optimization>
    116       <FunctionLevelLinking>true</FunctionLevelLinking>
    117       <IntrinsicFunctions>true</IntrinsicFunctions>
    118       <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    119       <TreatWarningAsError Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">true</TreatWarningAsError>
    120       <TreatWarningAsError Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</TreatWarningAsError>
    121       <TreatWarningAsError Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</TreatWarningAsError>
    122       <LanguageStandard Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">stdcpp17</LanguageStandard>
    123       <LanguageStandard Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">stdcpp17</LanguageStandard>
    124       <LanguageStandard Condition="'$(Configuration)|$(Platform)'=='Release|x64'">stdcpp17</LanguageStandard>
    125     </ClCompile>
    126     <Link>
    127       <SubSystem>Console</SubSystem>
    128       <EnableCOMDATFolding>true</EnableCOMDATFolding>
    129       <OptimizeReferences>true</OptimizeReferences>
    130       <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
    131     </Link>
    132   </ItemDefinitionGroup>
    133   <ItemGroup>
    134     <ClCompile Include="main.cpp" />
    135   </ItemGroup>
    136   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
    137   <ImportGroup Label="ExtensionTargets">
    138   </ImportGroup>
    139   <Target Name="AfterBuild">
    140     <Copy SourceFiles="$(OutDir)\$(TargetFileName)" DestinationFolder="$(OutDir)\..\AppInstallerCLITests" ContinueOnError="true" />
    141   </Target>
    142 </Project>