140 lines
6.1 KiB
XML
140 lines
6.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|||
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|||
|
|
<ProductVersion>9.0.21022</ProductVersion>
|
|||
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|||
|
|
<ProjectGuid>{AF2EFD7B-69DD-4B43-AF65-B59B29349C23}</ProjectGuid>
|
|||
|
|
<OutputType>Library</OutputType>
|
|||
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|||
|
|
<RootNamespace>ParserTools</RootNamespace>
|
|||
|
|
<AssemblyName>ParserTools</AssemblyName>
|
|||
|
|
<FileUpgradeFlags>
|
|||
|
|
</FileUpgradeFlags>
|
|||
|
|
<OldToolsVersion>4.0</OldToolsVersion>
|
|||
|
|
<UpgradeBackupLocation>
|
|||
|
|
</UpgradeBackupLocation>
|
|||
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|||
|
|
<TargetFrameworkProfile />
|
|||
|
|
<PublishUrl>publish\</PublishUrl>
|
|||
|
|
<Install>true</Install>
|
|||
|
|
<InstallFrom>Disk</InstallFrom>
|
|||
|
|
<UpdateEnabled>false</UpdateEnabled>
|
|||
|
|
<UpdateMode>Foreground</UpdateMode>
|
|||
|
|
<UpdateInterval>7</UpdateInterval>
|
|||
|
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
|||
|
|
<UpdatePeriodically>false</UpdatePeriodically>
|
|||
|
|
<UpdateRequired>false</UpdateRequired>
|
|||
|
|
<MapFileExtensions>true</MapFileExtensions>
|
|||
|
|
<ApplicationRevision>0</ApplicationRevision>
|
|||
|
|
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
|||
|
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
|||
|
|
<UseApplicationTrust>false</UseApplicationTrust>
|
|||
|
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|||
|
|
<DebugSymbols>true</DebugSymbols>
|
|||
|
|
<DebugType>full</DebugType>
|
|||
|
|
<Optimize>false</Optimize>
|
|||
|
|
<OutputPath>..\bin\</OutputPath>
|
|||
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|||
|
|
<ErrorReport>prompt</ErrorReport>
|
|||
|
|
<WarningLevel>4</WarningLevel>
|
|||
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|||
|
|
<DebugType>pdbonly</DebugType>
|
|||
|
|
<Optimize>true</Optimize>
|
|||
|
|
<OutputPath>..\bin\</OutputPath>
|
|||
|
|
<DefineConstants>TRACE</DefineConstants>
|
|||
|
|
<ErrorReport>prompt</ErrorReport>
|
|||
|
|
<WarningLevel>4</WarningLevel>
|
|||
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Reference Include="System" />
|
|||
|
|
<Reference Include="System.Data" />
|
|||
|
|
<Reference Include="System.Xml" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Compile Include="..\configuration\globalassemblyinfo.cs">
|
|||
|
|
<Link>Config\globalassemblyinfo.cs</Link>
|
|||
|
|
</Compile>
|
|||
|
|
<Compile Include="Config\AssemblyInfo.cs" />
|
|||
|
|
<Compile Include="DocumentationConstructor.cs" />
|
|||
|
|
<Compile Include="ParsersController.cs" />
|
|||
|
|
<Compile Include="ParserTools\BaseParser.cs" />
|
|||
|
|
<Compile Include="ParserTools\IParser.cs" />
|
|||
|
|
<Compile Include="ParserTools\CommentBinder.cs" />
|
|||
|
|
<Compile Include="ParserTools\DefaultLanguageInformation.cs" />
|
|||
|
|
<Compile Include="ParserTools\Errors.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\DfaState.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\Grammar.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\LRAction.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\LRState.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\LRStateAction.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\ObjectMap.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\ParseMessage.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\Parser.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\Rule.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\SourceLineReadCallback.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\SR.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\Symbol.cs" />
|
|||
|
|
<Compile Include="ParserTools\GoldParser\SymbolType.cs" />
|
|||
|
|
<Compile Include="ParserTools\GPBParserTools.cs" />
|
|||
|
|
<Compile Include="ParserTools\IPreprocessor.cs" />
|
|||
|
|
<Compile Include="ParserTools\Keyword.cs" />
|
|||
|
|
<Compile Include="ParserTools\LanguageInformation.cs" />
|
|||
|
|
<Compile Include="ParserTools\ParserTools.cs" />
|
|||
|
|
<Compile Include="ParserTools\SourceContextMap.cs" />
|
|||
|
|
<Compile Include="SyntaxTreeVisitors\ConstantExpressionToConstantConvertor.cs" />
|
|||
|
|
<Compile Include="SyntaxTreeVisitors\SyntaxTreeComparer.cs" />
|
|||
|
|
<Compile Include="Tools.cs" />
|
|||
|
|
<Compile Include="XmlDocs.cs">
|
|||
|
|
<SubType>Code</SubType>
|
|||
|
|
</Compile>
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Errors\Errors.csproj">
|
|||
|
|
<Project>{44A01F9E-DCE7-470C-AAE5-C3DE0CCBEE3B}</Project>
|
|||
|
|
<Name>Errors</Name>
|
|||
|
|
</ProjectReference>
|
|||
|
|
<ProjectReference Include="..\Localization\Localization.csproj">
|
|||
|
|
<Project>{2DE2842F-0912-4251-BC0F-480854C44A13}</Project>
|
|||
|
|
<Name>Localization</Name>
|
|||
|
|
</ProjectReference>
|
|||
|
|
<ProjectReference Include="..\SyntaxTree\SyntaxTree.csproj">
|
|||
|
|
<Project>{C2CAC65A-B2AE-4CCC-B067-E6B8E75DF73A}</Project>
|
|||
|
|
<Name>SyntaxTree</Name>
|
|||
|
|
</ProjectReference>
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Folder Include="Properties\" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
|||
|
|
<Visible>False</Visible>
|
|||
|
|
<ProductName>Клиентский профиль .NET Framework 3.5 SP1</ProductName>
|
|||
|
|
<Install>false</Install>
|
|||
|
|
</BootstrapperPackage>
|
|||
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
|||
|
|
<Visible>False</Visible>
|
|||
|
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
|||
|
|
<Install>true</Install>
|
|||
|
|
</BootstrapperPackage>
|
|||
|
|
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
|||
|
|
<Visible>False</Visible>
|
|||
|
|
<ProductName>Установщик Windows 3.1</ProductName>
|
|||
|
|
<Install>true</Install>
|
|||
|
|
</BootstrapperPackage>
|
|||
|
|
</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>
|