Skip to content

Instantly share code, notes, and snippets.

@kkazuo
Last active August 29, 2015 14:22
Show Gist options
  • Save kkazuo/05b0b867e7e28b4001ce to your computer and use it in GitHub Desktop.
Save kkazuo/05b0b867e7e28b4001ce to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{C1154025-FCAB-40AF-A715-91D10420C321}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CE.iPhone.PList</RootNamespace>
<AssemblyName>CE.iPhone.PList</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<DocumentationFile>bin\Debug\CE.iPhone.PList.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="IPListElement.cs" />
<Compile Include="PListBinaryReader.cs" />
<Compile Include="PListBinaryWriter.cs" />
<Compile Include="PListContainer\PListArray.cs" />
<Compile Include="PListContainer\PListDict.cs" />
<Compile Include="PListElement.cs" />
<Compile Include="PListElementFactory.cs" />
<Compile Include="PListExceptions\PListException.cs" />
<Compile Include="PListExceptions\PListFormatException.cs" />
<Compile Include="PListFormat.cs" />
<Compile Include="PListPrimitives\PListBool.cs" />
<Compile Include="PListPrimitives\PListData.cs" />
<Compile Include="PListPrimitives\PListDate.cs" />
<Compile Include="PListPrimitives\PListFill.cs" />
<Compile Include="PListPrimitives\PListInteger.cs" />
<Compile Include="PListPrimitives\PListNull.cs" />
<Compile Include="PListPrimitives\PListReal.cs" />
<Compile Include="PListPrimitives\PListString.cs" />
<Compile Include="PListRoot.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<PropertyGroup>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment