* Return Parsers folder with standard parsers and move SyntaxTreeConverters back to Core * Rename PascalLanguage project to PascalABCLanguageInfo * Fix pascal dll loading
93 lines
4.1 KiB
XML
93 lines
4.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.30729</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{3A0D5FC1-09FF-4B0A-87BC-37BEE33BBD3A}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>PythonParser</RootNamespace>
|
|
<AssemblyName>PythonParser</AssemblyName>
|
|
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
|
|
<NoStdLib>False</NoStdLib>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<OldToolsVersion>4.0</OldToolsVersion>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<TargetFrameworkProfile />
|
|
</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>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
|
|
<RegisterForComInterop>False</RegisterForComInterop>
|
|
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
|
|
<BaseAddress>4194304</BaseAddress>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<FileAlignment>4096</FileAlignment>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Errors, Version=1.1.0.287, Culture=neutral, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\bin\Errors.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Localization, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\bin\Localization.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="ParserTools, Version=1.1.0.287, Culture=neutral, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\bin\ParserTools.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="ShiftReduceParser, Version=0.0.0.0, Culture=neutral, PublicKeyToken=ff8fabef79b9cbb4, processorArchitecture=MSIL" />
|
|
<Reference Include="SyntaxTree, Version=1.1.0.287, Culture=neutral, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>..\..\bin\SyntaxTree.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Errors.cs" />
|
|
<Compile Include="GPPGTools.cs" />
|
|
<Compile Include="Parser.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="PythonParserTools.cs" />
|
|
<Compile Include="python_gppg_lex.cs" />
|
|
<Compile Include="python_gppg_yacc.cs" />
|
|
</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> |