UNIXworkcode

1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <Import Project="..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.props" Condition="Exists('..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.props')" /> 4 <Import Project="..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.props" Condition="Exists('..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.props')" /> 5 <Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.props')" /> 6 <ItemGroup Label="ProjectConfigurations"> 7 <ProjectConfiguration Include="Debug|Win32"> 8 <Configuration>Debug</Configuration> 9 <Platform>Win32</Platform> 10 </ProjectConfiguration> 11 <ProjectConfiguration Include="Release|Win32"> 12 <Configuration>Release</Configuration> 13 <Platform>Win32</Platform> 14 </ProjectConfiguration> 15 <ProjectConfiguration Include="Debug|x64"> 16 <Configuration>Debug</Configuration> 17 <Platform>x64</Platform> 18 </ProjectConfiguration> 19 <ProjectConfiguration Include="Release|x64"> 20 <Configuration>Release</Configuration> 21 <Platform>x64</Platform> 22 </ProjectConfiguration> 23 24 </ItemGroup> 25 <PropertyGroup Label="Globals"> 26 <VCProjectVersion>16.0</VCProjectVersion> 27 <Keyword>Win32Proj</Keyword> 28 <ProjectGuid>{3541f08b-e6cc-4c23-a0d3-51983aab33c6}</ProjectGuid> 29 <RootNamespace>testapp</RootNamespace> 30 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> 31 <WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained> 32 <WindowsPackageType>None</WindowsPackageType> 33 <AppxPackage>false</AppxPackage> 34 <ProjectName>idav</ProjectName> 35 </PropertyGroup> 36 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 37 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 38 <ConfigurationType>Application</ConfigurationType> 39 <UseDebugLibraries>true</UseDebugLibraries> 40 <PlatformToolset>v143</PlatformToolset> 41 <CharacterSet>Unicode</CharacterSet> 42 </PropertyGroup> 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 44 <ConfigurationType>Application</ConfigurationType> 45 <UseDebugLibraries>false</UseDebugLibraries> 46 <PlatformToolset>v143</PlatformToolset> 47 <WholeProgramOptimization>true</WholeProgramOptimization> 48 <CharacterSet>Unicode</CharacterSet> 49 </PropertyGroup> 50 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 51 <ConfigurationType>Application</ConfigurationType> 52 <UseDebugLibraries>true</UseDebugLibraries> 53 <PlatformToolset>v143</PlatformToolset> 54 <CharacterSet>Unicode</CharacterSet> 55 </PropertyGroup> 56 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 57 <ConfigurationType>Application</ConfigurationType> 58 <UseDebugLibraries>false</UseDebugLibraries> 59 <PlatformToolset>v143</PlatformToolset> 60 <WholeProgramOptimization>true</WholeProgramOptimization> 61 <CharacterSet>Unicode</CharacterSet> 62 </PropertyGroup> 63 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 64 <ImportGroup Label="ExtensionSettings"> 65 </ImportGroup> 66 <ImportGroup Label="Shared"> 67 </ImportGroup> 68 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 69 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 70 </ImportGroup> 71 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 72 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 73 </ImportGroup> 74 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 75 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 76 </ImportGroup> 77 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 78 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 79 </ImportGroup> 80 <PropertyGroup Label="UserMacros" /> 81 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 82 <OutDir>$(SolutionDir)..\..\build\vs\$(Platform)\$(Configuration)\</OutDir> 83 <IntDir>..\..\..\build\vs\testapp\$(Platform)\$(Configuration)\</IntDir> 84 </PropertyGroup> 85 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 86 <ClCompile> 87 <WarningLevel>Level3</WarningLevel> 88 <SDLCheck>true</SDLCheck> 89 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 90 <ConformanceMode>true</ConformanceMode> 91 </ClCompile> 92 <Link> 93 <SubSystem>Console</SubSystem> 94 <GenerateDebugInformation>true</GenerateDebugInformation> 95 </Link> 96 </ItemDefinitionGroup> 97 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 98 <ClCompile> 99 <WarningLevel>Level3</WarningLevel> 100 <FunctionLevelLinking>true</FunctionLevelLinking> 101 <IntrinsicFunctions>true</IntrinsicFunctions> 102 <SDLCheck>true</SDLCheck> 103 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 104 <ConformanceMode>true</ConformanceMode> 105 </ClCompile> 106 <Link> 107 <SubSystem>Console</SubSystem> 108 <EnableCOMDATFolding>true</EnableCOMDATFolding> 109 <OptimizeReferences>true</OptimizeReferences> 110 <GenerateDebugInformation>true</GenerateDebugInformation> 111 </Link> 112 </ItemDefinitionGroup> 113 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 114 <ClCompile> 115 <WarningLevel>Level3</WarningLevel> 116 <SDLCheck>true</SDLCheck> 117 <PreprocessorDefinitions>_DEBUG;_CONSOLE;UI_WINUI;%(PreprocessorDefinitions)</PreprocessorDefinitions> 118 <ConformanceMode>true</ConformanceMode> 119 <AdditionalIncludeDirectories>C:\Users\Olaf\Projekte\toolkit\ui;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 120 </ClCompile> 121 <Link> 122 <SubSystem>Windows</SubSystem> 123 <GenerateDebugInformation>true</GenerateDebugInformation> 124 </Link> 125 </ItemDefinitionGroup> 126 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 127 <ClCompile> 128 <WarningLevel>Level3</WarningLevel> 129 <FunctionLevelLinking>true</FunctionLevelLinking> 130 <IntrinsicFunctions>true</IntrinsicFunctions> 131 <SDLCheck>true</SDLCheck> 132 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 133 <ConformanceMode>true</ConformanceMode> 134 </ClCompile> 135 <Link> 136 <SubSystem>Console</SubSystem> 137 <EnableCOMDATFolding>true</EnableCOMDATFolding> 138 <OptimizeReferences>true</OptimizeReferences> 139 <GenerateDebugInformation>true</GenerateDebugInformation> 140 </Link> 141 </ItemDefinitionGroup> 142 <ItemGroup> 143 <ClCompile Include="main.c" /> 144 </ItemGroup> 145 <ItemGroup> 146 <None Include="packages.config" /> 147 </ItemGroup> 148 <ItemGroup> 149 <ProjectReference Include="..\..\..\ui\winui\winui.vcxproj"> 150 <Project>{59f97886-bf49-4b3f-9ef6-fa7a84f3ab56}</Project> 151 </ProjectReference> 152 <ProjectReference Include="..\ucx\ucx.vcxproj"> 153 <Project>{27da0164-3475-43e2-a1a4-a5d07d305749}</Project> 154 </ProjectReference> 155 </ItemGroup> 156 <ItemGroup> 157 <Manifest Include="app.manifest" /> 158 </ItemGroup> 159 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 160 <ImportGroup Label="ExtensionTargets"> 161 <Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.targets')" /> 162 <Import Project="..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.targets" Condition="Exists('..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.targets')" /> 163 <Import Project="..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.targets" Condition="Exists('..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.targets')" /> 164 <Import Project="..\packages\Microsoft.Windows.ImplementationLibrary.1.0.230824.2\build\native\Microsoft.Windows.ImplementationLibrary.targets" Condition="Exists('..\packages\Microsoft.Windows.ImplementationLibrary.1.0.230824.2\build\native\Microsoft.Windows.ImplementationLibrary.targets')" /> 165 </ImportGroup> 166 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> 167 <PropertyGroup> 168 <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> 169 </PropertyGroup> 170 <Error Condition="!Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.props'))" /> 171 <Error Condition="!Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.CppWinRT.2.0.230225.1\build\native\Microsoft.Windows.CppWinRT.targets'))" /> 172 <Error Condition="!Exists('..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.props'))" /> 173 <Error Condition="!Exists('..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.SDK.BuildTools.10.0.22621.1\build\Microsoft.Windows.SDK.BuildTools.targets'))" /> 174 <Error Condition="!Exists('..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.props'))" /> 175 <Error Condition="!Exists('..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.WindowsAppSDK.1.3.230331000\build\native\Microsoft.WindowsAppSDK.targets'))" /> 176 <Error Condition="!Exists('..\packages\Microsoft.Windows.ImplementationLibrary.1.0.230824.2\build\native\Microsoft.Windows.ImplementationLibrary.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.ImplementationLibrary.1.0.230824.2\build\native\Microsoft.Windows.ImplementationLibrary.targets'))" /> 177 </Target> 178 </Project>