133 lines
6.3 KiB
XML
133 lines
6.3 KiB
XML
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>8.0.50727</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{2A49B537-AFDB-4541-8683-468F2A0BE0AE}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Itenso.Rtf.Interpreter</RootNamespace>
|
|
<AssemblyName>Itenso.Rtf.Interpreter</AssemblyName>
|
|
</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>
|
|
</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.Data" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Converter\Image\IRtfConvertedImageInfo.cs" />
|
|
<Compile Include="Converter\Image\IRtfConvertedImageInfoCollection.cs" />
|
|
<Compile Include="Converter\Image\IRtfVisualImageAdapter.cs" />
|
|
<Compile Include="Converter\Image\RtfConvertedImageInfo.cs" />
|
|
<Compile Include="Converter\Image\RtfConvertedImageInfoCollection.cs" />
|
|
<Compile Include="Converter\Image\RtfImageConverter.cs" />
|
|
<Compile Include="Converter\Image\RtfImageConvertSettings.cs" />
|
|
<Compile Include="Converter\Image\RtfVisualImageAdapter.cs" />
|
|
<Compile Include="Converter\Text\RtfTextConverter.cs" />
|
|
<Compile Include="Converter\Text\RtfTextConvertSettings.cs" />
|
|
<Compile Include="Interpreter\RtfColorTableBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfDocumentInfoBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfFontBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfFontTableBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfImageBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreter.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreterBase.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreterContext.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreterListenerBase.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreterListenerDocumentBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreterListenerFileLogger.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreterListenerLogger.cs" />
|
|
<Compile Include="Interpreter\RtfInterpreterLoggerSettings.cs" />
|
|
<Compile Include="Interpreter\RtfTextBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfTimestampBuilder.cs" />
|
|
<Compile Include="Interpreter\RtfUserPropertyBuilder.cs" />
|
|
<Compile Include="IRtfColor.cs" />
|
|
<Compile Include="IRtfColorCollection.cs" />
|
|
<Compile Include="IRtfDocument.cs" />
|
|
<Compile Include="IRtfDocumentInfo.cs" />
|
|
<Compile Include="IRtfDocumentProperty.cs" />
|
|
<Compile Include="IRtfDocumentPropertyCollection.cs" />
|
|
<Compile Include="IRtfFont.cs" />
|
|
<Compile Include="IRtfFontCollection.cs" />
|
|
<Compile Include="IRtfInterpreter.cs" />
|
|
<Compile Include="IRtfInterpreterContext.cs" />
|
|
<Compile Include="IRtfInterpreterListener.cs" />
|
|
<Compile Include="IRtfTextFormat.cs" />
|
|
<Compile Include="IRtfTextFormatCollection.cs" />
|
|
<Compile Include="IRtfVisual.cs" />
|
|
<Compile Include="IRtfVisualBreak.cs" />
|
|
<Compile Include="IRtfVisualCollection.cs" />
|
|
<Compile Include="IRtfVisualImage.cs" />
|
|
<Compile Include="IRtfVisualSpecialChar.cs" />
|
|
<Compile Include="IRtfVisualText.cs" />
|
|
<Compile Include="IRtfVisualVisitor.cs" />
|
|
<Compile Include="Model\RtfColor.cs" />
|
|
<Compile Include="Model\RtfColorCollection.cs" />
|
|
<Compile Include="Model\RtfDocument.cs" />
|
|
<Compile Include="Model\RtfDocumentInfo.cs" />
|
|
<Compile Include="Model\RtfDocumentProperty.cs" />
|
|
<Compile Include="Model\RtfDocumentPropertyCollection.cs" />
|
|
<Compile Include="Model\RtfFont.cs" />
|
|
<Compile Include="Model\RtfFontCollection.cs" />
|
|
<Compile Include="Model\RtfTextFormat.cs" />
|
|
<Compile Include="Model\RtfTextFormatCollection.cs" />
|
|
<Compile Include="Model\RtfVisual.cs" />
|
|
<Compile Include="Model\RtfVisualBreak.cs" />
|
|
<Compile Include="Model\RtfVisualCollection.cs" />
|
|
<Compile Include="Model\RtfVisualImage.cs" />
|
|
<Compile Include="Model\RtfVisualSpecialChar.cs" />
|
|
<Compile Include="Model\RtfVisualText.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Properties\VersionInfo.cs" />
|
|
<Compile Include="RtfFontKind.cs" />
|
|
<Compile Include="RtfFontPitch.cs" />
|
|
<Compile Include="RtfInterpreterState.cs" />
|
|
<Compile Include="RtfPropertyKind.cs" />
|
|
<Compile Include="RtfTextAlignment.cs" />
|
|
<Compile Include="RtfVisualBreakKind.cs" />
|
|
<Compile Include="RtfVisualImageFormat.cs" />
|
|
<Compile Include="RtfVisualKind.cs" />
|
|
<Compile Include="RtfVisualSpecialCharKind.cs" />
|
|
<Compile Include="Support\RtfElementVisitorBase.cs" />
|
|
<Compile Include="Support\RtfElementVisitorOrder.cs" />
|
|
<Compile Include="Support\RtfInterpreterTool.cs" />
|
|
<Compile Include="Support\RtfVisualVisitorBase.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Parser\Parser2005.csproj">
|
|
<Project>{6FA3F1A8-4E10-459C-A8DC-C40A90D627B0}</Project>
|
|
<Name>Parser2005</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Sys\Sys2005.csproj">
|
|
<Project>{0F203536-FF4F-4783-992D-1DE210C3C485}</Project>
|
|
<Name>Sys2005</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\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>
|
|
-->
|
|
</Project> |