79 lines
3.3 KiB
XML
79 lines
3.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>{6FA3F1A8-4E10-459C-A8DC-C40A90D627B0}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Itenso.Rtf.Parser</RootNamespace>
|
|
<AssemblyName>Itenso.Rtf.Parser</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.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="IRtfElement.cs" />
|
|
<Compile Include="IRtfElementCollection.cs" />
|
|
<Compile Include="IRtfElementVisitor.cs" />
|
|
<Compile Include="IRtfGroup.cs" />
|
|
<Compile Include="IRtfParser.cs" />
|
|
<Compile Include="IRtfParserListener.cs" />
|
|
<Compile Include="IRtfSource.cs" />
|
|
<Compile Include="IRtfTag.cs" />
|
|
<Compile Include="IRtfText.cs" />
|
|
<Compile Include="Model\ReadOnlyBaseCollection.cs" />
|
|
<Compile Include="Model\RtfElement.cs" />
|
|
<Compile Include="Model\RtfElementCollection.cs" />
|
|
<Compile Include="Model\RtfGroup.cs" />
|
|
<Compile Include="Model\RtfTag.cs" />
|
|
<Compile Include="Model\RtfText.cs" />
|
|
<Compile Include="Parser\RtfParser.cs" />
|
|
<Compile Include="Parser\RtfParserBase.cs" />
|
|
<Compile Include="Parser\RtfParserListenerBase.cs" />
|
|
<Compile Include="Parser\RtfParserListenerFileLogger.cs" />
|
|
<Compile Include="Parser\RtfParserListenerLogger.cs" />
|
|
<Compile Include="Parser\RtfParserListenerStructureBuilder.cs" />
|
|
<Compile Include="Parser\RtfParserLoggerSettings.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Properties\VersionInfo.cs" />
|
|
<Compile Include="RtfElementKind.cs" />
|
|
<Compile Include="RtfException.cs" />
|
|
<Compile Include="RtfSpec.cs" />
|
|
<Compile Include="Support\RtfParserTool.cs" />
|
|
<Compile Include="Support\RtfSource.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<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> |