120 lines
5.4 KiB
XML
120 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{99604A24-13D0-4C83-A3AA-9A315339FA4F}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>Hjg.Pngcs</RootNamespace>
|
|
<AssemblyName>Pngcs</AssemblyName>
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<NoStdLib>true</NoStdLib>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<NoStdLib>true</NoStdLib>
|
|
</PropertyGroup>
|
|
<ItemGroup />
|
|
<ItemGroup>
|
|
<AppDesigner Include="Properties\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Chunks\ChunkCopyBehaviour.cs" />
|
|
<Compile Include="Chunks\ChunkHelper.cs" />
|
|
<Compile Include="Chunks\ChunkLoadBehaviour.cs" />
|
|
<Compile Include="Chunks\ChunkPredicate.cs" />
|
|
<Compile Include="Chunks\ChunkPredicateEquiv.cs" />
|
|
<Compile Include="Chunks\ChunkPredicateId.cs" />
|
|
<Compile Include="Chunks\ChunkPredicateId2.cs" />
|
|
<Compile Include="Chunks\ChunkRaw.cs" />
|
|
<Compile Include="Chunks\ChunksList.cs" />
|
|
<Compile Include="Chunks\ChunksListForWrite.cs" />
|
|
<Compile Include="Chunks\PngChunk.cs" />
|
|
<Compile Include="Chunks\PngChunkBKGD.cs" />
|
|
<Compile Include="Chunks\PngChunkCHRM.cs" />
|
|
<Compile Include="Chunks\PngChunkGAMA.cs" />
|
|
<Compile Include="Chunks\PngChunkHIST.cs" />
|
|
<Compile Include="Chunks\PngChunkICCP.cs" />
|
|
<Compile Include="Chunks\PngChunkIDAT.cs" />
|
|
<Compile Include="Chunks\PngChunkIEND.cs" />
|
|
<Compile Include="Chunks\PngChunkIHDR.cs" />
|
|
<Compile Include="Chunks\PngChunkITXT.cs" />
|
|
<Compile Include="Chunks\PngChunkMultiple.cs" />
|
|
<Compile Include="Chunks\PngChunkOFFS.cs" />
|
|
<Compile Include="Chunks\PngChunkPHYS.cs" />
|
|
<Compile Include="Chunks\PngChunkPLTE.cs" />
|
|
<Compile Include="Chunks\PngChunkSBIT.cs" />
|
|
<Compile Include="Chunks\PngChunkSingle.cs" />
|
|
<Compile Include="Chunks\PngChunkSkipped.cs" />
|
|
<Compile Include="Chunks\PngChunkSPLT.cs" />
|
|
<Compile Include="Chunks\PngChunkSRGB.cs" />
|
|
<Compile Include="Chunks\PngChunkSTER.cs" />
|
|
<Compile Include="Chunks\PngChunkTEXT.cs" />
|
|
<Compile Include="Chunks\PngChunkTextVar.cs" />
|
|
<Compile Include="Chunks\PngChunkTIME.cs" />
|
|
<Compile Include="Chunks\PngChunkTRNS.cs" />
|
|
<Compile Include="Chunks\PngChunkUNKNOWN.cs" />
|
|
<Compile Include="Chunks\PngChunkZTXT.cs" />
|
|
<Compile Include="Chunks\PngMetadata.cs" />
|
|
<Compile Include="FileHelper.cs" />
|
|
<Compile Include="FilterType.cs" />
|
|
<Compile Include="FilterWriteStrategy.cs" />
|
|
<Compile Include="ImageInfo.cs" />
|
|
<Compile Include="ImageLine.cs" />
|
|
<Compile Include="ImageLineHelper.cs" />
|
|
<Compile Include="ImageLines.cs" />
|
|
<Compile Include="PngCsUtils.cs" />
|
|
<Compile Include="PngDeinterlacer.cs" />
|
|
<Compile Include="PngHelperInternal.cs" />
|
|
<Compile Include="PngIDatChunkInputStream.cs" />
|
|
<Compile Include="PngIDatChunkOutputStream.cs" />
|
|
<Compile Include="PngjBadCrcException.cs" />
|
|
<Compile Include="PngjException.cs" />
|
|
<Compile Include="PngjExceptionInternal.cs" />
|
|
<Compile Include="PngjInputException.cs" />
|
|
<Compile Include="PngjOutputException.cs" />
|
|
<Compile Include="PngjUnsupportedException.cs" />
|
|
<Compile Include="PngReader.cs" />
|
|
<Compile Include="PngWriter.cs" />
|
|
<Compile Include="ProgressiveOutputStream.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Zlib\Adler32.cs" />
|
|
<Compile Include="Zlib\AZlibInputStream.cs" />
|
|
<Compile Include="Zlib\AZlibOutputStream.cs" />
|
|
<Compile Include="Zlib\CRC32.cs" />
|
|
<Compile Include="Zlib\DeflateCompressLevel.cs" />
|
|
<Compile Include="Zlib\EDeflateCompressStrategy.cs" />
|
|
<Compile Include="Zlib\ZlibInputStreamIs.cs" />
|
|
<Compile Include="Zlib\ZlibOutputStreamIs.cs" />
|
|
<Compile Include="Zlib\ZlibStreamFactory.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ICSharpCode.SharpZipLib\ICSharpCode.SharpZipLib.csproj">
|
|
<Project>{99604a24-13d0-4c83-a3aa-9a315339fa47}</Project>
|
|
<Name>ICSharpCode.SharpZipLib</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\mscorlib\mscorlib.csproj">
|
|
<Project>{99604a24-13d0-4c83-a3aa-9a315339fa4c}</Project>
|
|
<Name>mscorlib</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |