Skip to content

Instantly share code, notes, and snippets.

@dumbledad
Created December 27, 2013 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dumbledad/8147542 to your computer and use it in GitHub Desktop.
Save dumbledad/8147542 to your computer and use it in GitHub Desktop.
Problematic VC++ project file that I am asking about on SO http://stackoverflow.com/q/20526080/575530
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Profile|ARM">
<Configuration>Profile</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Profile|Win32">
<Configuration>Profile</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Profile|x64">
<Configuration>Profile</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|ARM">
<Configuration>Debug</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM">
<Configuration>Release</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{c5593810-9678-4b1a-8d4b-47927a14d9ad}</ProjectGuid>
<RootNamespace>DXAML2</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage>
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
<AppContainerApplication>true</AppContainerApplication>
<SccProjectName>SAK</SccProjectName>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
<SccProvider>SAK</SccProvider>
<ExpressionBlendVersion>5.0.40218.0</ExpressionBlendVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'" Label="PropertySheets">
<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|Win32'">
<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)'=='Debug|ARM'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'" Label="PropertySheets">
<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|ARM'">
<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)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Profile|x64'" Label="PropertySheets">
<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 Label="UserMacros" />
<PropertyGroup>
<PackageCertificateKeyFile>DXAML2_TemporaryKey.pfx</PackageCertificateKeyFile>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<PackageCertificateThumbprint>70D8997DF16DDCFCFC224FBC839BFDCF03AC9182</PackageCertificateThumbprint>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<IncludePath>$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath)</IncludePath>
<RunCodeAnalysis>false</RunCodeAnalysis>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<CustomBuildAfterTargets>
</CustomBuildAfterTargets>
<LibraryPath>$(LibraryPath)</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">
<IncludePath>$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);%(KINECTSDK_DIR)\inc;%(KINECTSDK10_DIR)\inc</IncludePath>
<LinkIncremental>false</LinkIncremental>
<CustomBuildAfterTargets>Build</CustomBuildAfterTargets>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>true</RunCodeAnalysis>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">
<LinkIncremental>false</LinkIncremental>
<CustomBuildAfterTargets>Build</CustomBuildAfterTargets>
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">
<LinkIncremental>false</LinkIncremental>
<CustomBuildAfterTargets>Build</CustomBuildAfterTargets>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>true</RunCodeAnalysis>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>true</RunCodeAnalysis>
</PropertyGroup>
<ItemDefinitionGroup>
<Link>
<AdditionalDependencies>d2d1.lib;d3d11.lib;dxgi.lib;dwrite.lib;dxguid.lib;xaudio2.lib;xinput.lib;mfcore.lib;mfplat.lib;mfreadwrite.lib;mfuuid.lib;%(AdditionalDependencies);shcore.lib</AdditionalDependencies>
</Link>
<ClCompile>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<DisableSpecificWarnings>4453</DisableSpecificWarnings>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
<ClCompile>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<EnablePREfast Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</EnablePREfast>
<EnablePREfast Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</EnablePREfast>
<EnablePREfast Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">true</EnablePREfast>
</ClCompile>
<Link>
<Profile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</Profile>
<AdditionalLibraryDirectories Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
</AdditionalLibraryDirectories>
</Link>
<Link>
<Profile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</Profile>
</Link>
<Link>
<Profile Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">false</Profile>
</Link>
<CustomBuildStep>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
</Command>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Profile'">
<ClCompile>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<FunctionLevelLinking Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">true</FunctionLevelLinking>
<BrowseInformation Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">true</BrowseInformation>
<IntrinsicFunctions Condition="'$(Configuration)|$(Platform)'=='Profile|x64'" />
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Profile|x64'"> %(AdditionalOptions)</AdditionalOptions>
<EnablePREfast Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">true</EnablePREfast>
<EnablePREfast Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">true</EnablePREfast>
<EnablePREfast Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">true</EnablePREfast>
</ClCompile>
<Link>
<Profile Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">true</Profile>
</Link>
<Link>
<Profile Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">true</Profile>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">/debugtype:cv,fixup %(AdditionalOptions)</AdditionalOptions>
</Link>
<Link>
<Profile Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">true</Profile>
</Link>
<CustomBuildStep>
<Command Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">codecoverage.bat $(TargetPath)</Command>
</CustomBuildStep>
<CustomBuildStep>
<TreatOutputAsContent Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">true</TreatOutputAsContent>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">$(TargetFileName).instr;%(Outputs)</Outputs>
</CustomBuildStep>
<CustomBuildStep>
<Command Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">codecoverage.bat $(TargetPath)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">$(TargetFileName).instr;%(Outputs)</Outputs>
<TreatOutputAsContent Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">true</TreatOutputAsContent>
</CustomBuildStep>
<CustomBuildStep>
<Command Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">$(MSBuildProjectDirectory)\codecoverage.bat $(TargetPath)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">$(TargetFileName).instr;$(TargetFileName).covsym;%(Outputs)</Outputs>
<TreatOutputAsContent Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">false</TreatOutputAsContent>
<Message Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Performing Code Coverage Instrumentation</Message>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemGroup>
<Image Include="add-cropped-300.png" />
<Image Include="add-cropped.png" />
<Image Include="Assets\cat.png" />
<Image Include="Assets\cube.png" />
<Image Include="Assets\flat.png" />
<Image Include="Assets\Logo.png" />
<Image Include="Assets\SmallLogo.png" />
<Image Include="Assets\StoreLogo.png" />
<Image Include="Assets\SplashScreen.png" />
<Image Include="colorButton2-cropped-300.png" />
<Image Include="colorButton2-cropped.png" />
<Image Include="colorButton2_off.png" />
<Image Include="colorButton2_on_1.png" />
<Image Include="colorButton2_on_2.png" />
<Image Include="colorButton3_on.png" />
<Image Include="default.png" />
<Image Include="nav 300.png" />
<Image Include="nav.png" />
<Image Include="pik crop.png" />
<Image Include="remove2-cropped-300.png" />
<Image Include="remove2-cropped.png" />
<Image Include="ResourceForkedHeadModelThumbnail.png" />
<Image Include="ResourceFullHeadModelThumbnail.png" />
<Image Include="selection-cropped-300.png" />
<Image Include="selection-cropped.png" />
<Image Include="substitute3-cropped-300.png" />
<Image Include="substitute3-cropped.png" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="App.xaml.h">
<DependentUpon>App.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="Audio.h" />
<ClInclude Include="Camera.h" />
<ClInclude Include="CaptureFacePage.xaml.h">
<DependentUpon>CaptureFacePage.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="CFunctionMineCraft_Utility.h" />
<ClInclude Include="ChooseFacePage.xaml.h">
<DependentUpon>ChooseFacePage.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="ChooseObjectPage.xaml.h">
<DependentUpon>ChooseObjectPage.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="Common\BindableBase.h" />
<ClInclude Include="Common\BooleanNegationConverter.h" />
<ClInclude Include="Common\BooleanToVisibilityConverter.h" />
<ClInclude Include="Common\LayoutAwarePage.h" />
<ClInclude Include="Common\RichTextColumns.h" />
<ClInclude Include="Common\SuspensionManager.h" />
<ClInclude Include="ConvertImageTo3DUtility.h" />
<ClInclude Include="CPrimBase.h" />
<ClInclude Include="CPrimPyramid.h" />
<ClInclude Include="CPrimWedge.h" />
<ClInclude Include="CubeSettingPage.xaml.h">
<DependentUpon>CubeSettingPage.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="DataModel\FaceDataSource.h" />
<ClInclude Include="Functions\CFunctionBase.h" />
<ClInclude Include="Functions\CFunctionDeformFace.h" />
<ClInclude Include="Functions\CFunctionEditHead123.h" />
<ClInclude Include="Functions\CFunctionMineCraft.h" />
<ClInclude Include="Functions\CFunctionStitchFaceOntoBust.h" />
<ClInclude Include="Geometry\CBackgroundPlanes.h" />
<ClInclude Include="Geometry\CBoundingBox.h" />
<ClInclude Include="Geometry\CBustMeshCollection.h" />
<ClInclude Include="Geometry\CBustMesh.h" />
<ClInclude Include="Geometry\CCube.h" />
<ClInclude Include="Geometry\CPrimBase3DArray.h" />
<ClInclude Include="Geometry\CFaceMesh.h" />
<ClInclude Include="Geometry\CFaceMeshCollection.h" />
<ClInclude Include="Geometry\CGeometryBase.h" />
<ClInclude Include="Geometry\CGeometryModel.h" />
<ClInclude Include="Geometry\CPoint2D.h" />
<ClInclude Include="Geometry\CPoint.h" />
<ClInclude Include="Geometry\CPointCloud.h" />
<ClInclude Include="Geometry\CPointCloudCollection.h" />
<ClInclude Include="Geometry\CTriangle.h" />
<ClInclude Include="Geometry\CTriangularMesh.h" />
<ClInclude Include="Geometry\CTriangularMeshCollection.h" />
<ClInclude Include="Image2D.h" />
<ClInclude Include="ItemsPage1.xaml.h">
<DependentUpon>ItemsPage1.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="MediaReader.h" />
<ClInclude Include="Model.h" />
<ClInclude Include="ModelRenderer.h" />
<ClInclude Include="DirectXHelper.h" />
<ClInclude Include="Direct3DBase.h" />
<ClInclude Include="BasicTimer.h" />
<ClInclude Include="DocSource.h" />
<ClInclude Include="MainPage.xaml.h">
<DependentUpon>MainPage.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="MoveLookController.h" />
<ClInclude Include="OctreeNode.h" />
<ClInclude Include="pch.h" />
<ClInclude Include="Player.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="SoundEffect.h" />
<ClInclude Include="StartScreen.xaml.h">
<DependentUpon>StartScreen.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="UIButton.xaml.h">
<DependentUpon>UIButton.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="UtilityDebug.h" />
<ClInclude Include="UndoRedoItem.h" />
<ClInclude Include="Visualization\CLightSource.h" />
<ClInclude Include="Visualization\CVisualBase.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="App.xaml.cpp">
<DependentUpon>App.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="Audio.cpp" />
<ClCompile Include="Camera.cpp" />
<ClCompile Include="CaptureFacePage.xaml.cpp">
<DependentUpon>CaptureFacePage.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="ChooseFacePage.xaml.cpp">
<DependentUpon>ChooseFacePage.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="ChooseObjectPage.xaml.cpp">
<DependentUpon>ChooseObjectPage.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="Common\BindableBase.cpp" />
<ClCompile Include="Common\BooleanNegationConverter.cpp" />
<ClCompile Include="Common\BooleanToVisibilityConverter.cpp" />
<ClCompile Include="Common\LayoutAwarePage.cpp" />
<ClCompile Include="Common\RichTextColumns.cpp" />
<ClCompile Include="Common\SuspensionManager.cpp" />
<ClCompile Include="ConvertImageTo3DUtility.cpp" />
<ClCompile Include="CPrimBase.cpp" />
<ClCompile Include="CPrimPyramid.cpp" />
<ClCompile Include="CPrimWedge.cpp" />
<ClCompile Include="CubeSettingPage.xaml.cpp">
<DependentUpon>CubeSettingPage.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="DataModel\FaceDataSource.cpp" />
<ClCompile Include="Functions\CFunctionBase.cpp" />
<ClCompile Include="Functions\CFunctionDeformFace.cpp" />
<ClCompile Include="Functions\CFunctionEditHead123.cpp" />
<ClCompile Include="Functions\CFunctionEditHead123BuildupSymmetricMapping.cpp" />
<ClCompile Include="Functions\CFunctionMineCraft.cpp" />
<ClCompile Include="Functions\CFunctionStitchFaceOntoBust.cpp" />
<ClCompile Include="Geometry\CBackgroundPlanes.cpp" />
<ClCompile Include="Geometry\CBoundingBox.cpp" />
<ClCompile Include="Geometry\CBustMeshCollection.cpp" />
<ClCompile Include="Geometry\CBustMesh.cpp" />
<ClCompile Include="Geometry\CCube.cpp" />
<ClCompile Include="Geometry\CPrimBase3DArray.cpp" />
<ClCompile Include="Geometry\CFaceMesh.cpp" />
<ClCompile Include="Geometry\CFaceMeshCollection.cpp" />
<ClCompile Include="Geometry\CGeometryBase.cpp" />
<ClCompile Include="Geometry\CGeometryModel.cpp" />
<ClCompile Include="Geometry\CPoint2D.cpp" />
<ClCompile Include="Geometry\CPoint.cpp" />
<ClCompile Include="Geometry\CPointCloud.cpp" />
<ClCompile Include="Geometry\CPointCloudCollection.cpp" />
<ClCompile Include="Geometry\CTriangle.cpp" />
<ClCompile Include="Geometry\CTriangularMesh.cpp" />
<ClCompile Include="Geometry\CTriangularMeshCollection.cpp" />
<ClCompile Include="Image2D.cpp" />
<ClCompile Include="ItemsPage1.xaml.cpp">
<DependentUpon>ItemsPage1.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="MediaReader.cpp" />
<ClCompile Include="Model.cpp" />
<ClCompile Include="ModelRenderer.cpp" />
<ClCompile Include="Direct3DBase.cpp" />
<ClCompile Include="DocSource.cpp" />
<ClCompile Include="MainPage.xaml.cpp">
<DependentUpon>MainPage.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="MoveLookController.cpp" />
<ClCompile Include="OctreeNode.cpp" />
<ClCompile Include="pch.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="Player.cpp" />
<ClCompile Include="SoundEffect.cpp" />
<ClCompile Include="StartScreen.xaml.cpp">
<DependentUpon>StartScreen.xaml</DependentUpon>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="UIButton.xaml.cpp">
<DependentUpon>UIButton.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="UndoRedoItem.cpp" />
<ClCompile Include="Visualization\CLightSource.cpp" />
<ClCompile Include="Visualization\CVisualBase.cpp" />
</ItemGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<CustomBuild Include="codecoverage.bat">
<FileType>Document</FileType>
<Command Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">$(TargetPath)</Command>
<Message Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Performing Code Coverage Instrumentation</Message>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">$(TargetFileName).instr;%(Outputs)</Outputs>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">false</LinkObjects>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">true</ExcludedFromBuild>
</CustomBuild>
<None Include="DXAML2_TemporaryKey.pfx" />
<None Include="ResourceForkedHead.ply">
<DeploymentContent>true</DeploymentContent>
</None>
<None Include="ResourceFullHead.ply">
<DeploymentContent>true</DeploymentContent>
</None>
</ItemGroup>
<ItemGroup>
<FxCompile Include="CubeInstanceGeometryShader.hlsl">
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|x64'">4.0</ShaderModel>
</FxCompile>
<FxCompile Include="CubeInstanceVertexShader.hlsl">
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Vertex</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Vertex</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">4.0</ShaderModel>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">4.0</ShaderModel>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|x64'">4.0</ShaderModel>
</FxCompile>
<FxCompile Include="SelectionGeometryShader.hlsl">
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|x64'">4.0</ShaderModel>
</FxCompile>
<FxCompile Include="SelectionGeometryShaderNormals.hlsl">
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">4.0</ShaderModel>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Geometry</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|x64'">4.0</ShaderModel>
</FxCompile>
<FxCompile Include="SelectionPixelShader.hlsl">
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Pixel</ShaderType>
</FxCompile>
<FxCompile Include="SelectionPixelShaderNormals.hlsl">
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|x64'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|ARM'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Profile|Win32'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Pixel</ShaderType>
<ShaderType Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Pixel</ShaderType>
</FxCompile>
<FxCompile Include="SimplePixelShader.hlsl">
<ShaderType>Pixel</ShaderType>
</FxCompile>
<FxCompile Include="SimpleVertexShader.hlsl">
<ShaderType>Vertex</ShaderType>
<ShaderModel Condition="'$(Configuration)|$(Platform)'=='Release|x64'">4.0</ShaderModel>
</FxCompile>
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="CaptureFacePage.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="ChooseFacePage.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="ChooseObjectPage.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="Common\StandardStyles.xaml" />
<Page Include="CubeSettingPage.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="ItemsPage1.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="MainPage.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="StartScreen.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="UIButton.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<Text Include="Common\ReadMe.txt" />
<Text Include="ResourceFaceToModelMapping.txt" />
<Text Include="ResourceForkedHeadSymmetricMapping.txt" />
<Text Include="ResourceFullHeadSymmetricMapping.txt" />
<Text Include="TimsJournal.txt" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="DXAML2.rc" />
</ItemGroup>
<ItemGroup>
<Media Include="Add-Tock-1.wav" />
<Media Include="Add-Tock-2.wav" />
<Media Include="Add-Tock-3.wav" />
<Media Include="Add-Tock-4.wav" />
<Media Include="bounce.wav" />
<Media Include="Delete-Crunch-1.wav" />
<Media Include="Delete-Crunch-2.wav" />
<Media Include="Sub-Spray-1.wav" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment