112 lines
5.5 KiB
XML
112 lines
5.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{A9AB4282-83B4-41A7-86C3-E5BF6A45E7E2}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>SyntaxVisitors</RootNamespace>
|
|
<AssemblyName>SyntaxVisitors</AssemblyName>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<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>
|
|
</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>
|
|
<PropertyGroup>
|
|
<StartupObject />
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AllVarsInProcYieldsProba.cs" />
|
|
<Compile Include="BaseVisitors\CollectNamespaces.cs" />
|
|
<Compile Include="BaseVisitors\HasStatementVisitor.cs" />
|
|
<Compile Include="BaseVisitors\SmallHelperVisitors.cs" />
|
|
<Compile Include="ChangeWhileVisitor.cs" />
|
|
<Compile Include="SugarVisitors\AssignTuplesDesugarVisitor.cs" />
|
|
<Compile Include="SugarVisitors\QuestionPointDesugarVisitor.cs" />
|
|
<Compile Include="SugarVisitors\SliceDesugarVisitor.cs" />
|
|
<Compile Include="SugarVisitors\TupleVisitor.cs" />
|
|
<Compile Include="YieldVisitors\ObjectCopier\ObjectCopier.cs" />
|
|
<Compile Include="Optimization\CalcConstExprs.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="SyntaxTreeVisitorsErrors.cs" />
|
|
<Compile Include="UniversalVisitors\AddBeginEndsVisitor.cs" />
|
|
<Compile Include="UniversalVisitors\CountNodesVisitor.cs" />
|
|
<Compile Include="UniversalVisitors\DeleteRedundantBeginEnds.cs" />
|
|
<Compile Include="UniversalVisitors\SimplePrettyPrinterVisitor.cs" />
|
|
<Compile Include="YieldVisitors\CheckVariablesRedefenitionVisitor.cs" />
|
|
<Compile Include="YieldVisitors\CollectClassMethodsVisitor.cs" />
|
|
<Compile Include="YieldVisitors\CollectClassPropertiesVisitor.cs" />
|
|
<Compile Include="YieldVisitors\CollectUnitGlobalsVisitor.cs" />
|
|
<Compile Include="YieldVisitors\DeleteAllLocalDefs.cs" />
|
|
<Compile Include="YieldVisitors\DeleteLocalDefs.cs" />
|
|
<Compile Include="YieldVisitors\CollectClassFieldsVisitor.cs" />
|
|
<Compile Include="YieldVisitors\LoweringVisitor.cs" />
|
|
<Compile Include="YieldVisitors\LocalVariablesTypeDetectorHelperVisior.cs" />
|
|
<Compile Include="YieldVisitors\LoweringYieldSequenceVisitor.cs" />
|
|
<Compile Include="YieldVisitors\MarkMethodHasYieldVisitor.cs" />
|
|
<Compile Include="YieldVisitors\ProcessYieldsCapturedVars.cs" />
|
|
<Compile Include="YieldVisitors\RenameSameBlockLocalVarsVisitor.cs" />
|
|
<Compile Include="YieldVisitors\ReplaceBreakContinueWithGotoLabelVisitor.cs" />
|
|
<Compile Include="YieldVisitors\ReplaceCapturedVariablesVisitor.cs" />
|
|
<Compile Include="YieldVisitors\ReplaceFormalParametersRefsVisitor.cs" />
|
|
<Compile Include="YieldVisitors\ReplaceVariableNameVisitor.cs" />
|
|
<Compile Include="YieldVisitors\ReplaceYieldWithLamdasVisitor.cs" />
|
|
</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="..\ParserTools\ParserTools.csproj">
|
|
<Project>{af2efd7b-69dd-4b43-af65-b59b29349c23}</Project>
|
|
<Name>ParserTools</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SyntaxTree\SyntaxTree.csproj">
|
|
<Project>{c2cac65a-b2ae-4ccc-b067-e6b8e75df73a}</Project>
|
|
<Name>SyntaxTree</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Yield\YieldHelpers\YieldHelpers.csproj">
|
|
<Project>{ce5c55c2-a11c-4e94-a9fa-3fc6ca3e4c09}</Project>
|
|
<Name>YieldHelpers</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\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> |