Edited the vcxproj file in Visual Studio.

This commit is contained in:
Pietro Gagliardi 2015-11-25 07:20:12 -05:00
parent 928dbca808
commit b8f4febe3c
1 changed files with 60 additions and 61 deletions

121
wpf/wpf.vcxproj Normal file → Executable file
View File

@ -1,64 +1,63 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- 24 november 2015 --> <!-- 24 november 2015 -->
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns='http://schemas.microsoft.com/developer/msbuild/2003' > <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ItemGroup Label="ProjectConfigurations"> <!-- TODO what does the Include clause do? -->
<!-- TODO what does the Include clause do? --> <ProjectConfiguration Include="Debug|Win32">
<ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration>
<Configuration>Debug</Configuration> <Platform>Win32</Platform>
<Platform>Win32</Platform> </ProjectConfiguration>
</ProjectConfiguration> </ItemGroup>
</ItemGroup> <PropertyGroup Label="Globals">
<TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
<PropertyGroup Label="Globals"> <ProjectGuid>{2B7F1F47-EE47-47CD-9C6C-42D9620E46E3}</ProjectGuid>
<TargetFrameworkVersion>v3.0</TargetFrameworkVersion> </PropertyGroup>
</PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.default.props" /> <ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <PlatformToolset>v120</PlatformToolset>
<ConfigurationType>DynamicLibrary</ConfigurationType> <CLRSupport>true</CLRSupport>
<UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v120</PlatformToolset> </PropertyGroup>
<CLRSupport>true</CLRSupport> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<CharacterSet>Unicode</CharacterSet> <ImportGroup Label="ExtensionSettings" />
</PropertyGroup> <ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>false</LinkIncremental>
<ImportGroup Label="ExtensionSettings" /> <TargetName>libui</TargetName>
<ImportGroup Label="PropertySheets" /> <EnableManagedIncrementalBuild>false</EnableManagedIncrementalBuild>
<PropertyGroup Label="UserMacros" /> <CustomBuildBeforeTargets>Link</CustomBuildBeforeTargets>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>false</LinkIncremental> <ClCompile>
</PropertyGroup> <WarningLevel>EnableAllWarnings</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <AdditionalOptions>additional compiler options %(AdditionalOptions)</AdditionalOptions>
<ClCompile> </ClCompile>
<WarningLevel>Level3</WarningLevel> <Link>
<PrecompiledHeader>Use</PrecompiledHeader> <GenerateDebugInformation>true</GenerateDebugInformation>
</ClCompile> <AdditionalDependencies>kernel32.lib ole32.lib</AdditionalDependencies>
<Link> <SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation> <MinimumRequiredVersion>600</MinimumRequiredVersion>
<AdditionalDependencies /> <AdditionalOptions>additional linker options %(AdditionalOptions)</AdditionalOptions>
</Link> </Link>
</ItemDefinitionGroup> <CustomBuildStep>
<Command>extra command</Command>
<ItemGroup> </CustomBuildStep>
<Reference Include="System" /> </ItemDefinitionGroup>
<Reference Include="WindowsBase" /> <ItemGroup>
<Reference Include="PresentationCore" /> <Reference Include="System" />
<Reference Include="PresentationFramework" /> <Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<!-- <Reference Include="PresentationFramework" />
<!--
<ClInclude Include="wpf.h" /> <ClInclude Include="wpf.h" />
<ClCompile Include="wpf.cpp" /> <ClCompile Include="wpf.cpp" />
--> -->
</ItemGroup> </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets" />
<ImportGroup Label="ExtensionTargets" /> </Project>
</Project>