|
|
@ -1,5 +1,4 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> |
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> |
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
<PropertyGroup> |
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
|
@ -27,19 +26,18 @@ |
|
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
|
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> |
|
|
|
</PropertyGroup> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
|
|
<Optimize>false</Optimize> |
|
|
|
<Optimize>False</Optimize> |
|
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> |
|
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
|
|
|
<DefineConstants>TEST;DEBUG;NET35</DefineConstants> |
|
|
|
<DefineConstants>TEST;DEBUG;NET35</DefineConstants> |
|
|
|
<OutputPath>..\..\..\..\bin\</OutputPath> |
|
|
|
<OutputPath>..\..\..\..\bin\</OutputPath> |
|
|
|
<DebugType>none</DebugType> |
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
|
|
|
<WarningLevel>4</WarningLevel> |
|
|
|
|
|
|
|
</PropertyGroup> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
|
|
<Optimize>true</Optimize> |
|
|
|
<Optimize>True</Optimize> |
|
|
|
|
|
|
|
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow> |
|
|
|
<DefineConstants>TEST;NET35</DefineConstants> |
|
|
|
<DefineConstants>TEST;NET35</DefineConstants> |
|
|
|
<OutputPath>..\..\..\..\bin\</OutputPath> |
|
|
|
<OutputPath>..\..\..\..\bin\</OutputPath> |
|
|
|
<DebugType>none</DebugType> |
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
|
|
|
<WarningLevel>4</WarningLevel> |
|
|
|
|
|
|
|
</PropertyGroup> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
|
|
<DebugType>Full</DebugType> |
|
|
|
<DebugType>Full</DebugType> |
|
|
@ -79,6 +77,9 @@ |
|
|
|
<Compile Include="Src\Lexer\VBNet\Lexer.cs" /> |
|
|
|
<Compile Include="Src\Lexer\VBNet\Lexer.cs" /> |
|
|
|
<Compile Include="Src\Lexer\VBNet\Tokens.cs" /> |
|
|
|
<Compile Include="Src\Lexer\VBNet\Tokens.cs" /> |
|
|
|
<Compile Include="Src\Lexer\Special\ISpecial.cs" /> |
|
|
|
<Compile Include="Src\Lexer\Special\ISpecial.cs" /> |
|
|
|
|
|
|
|
<Compile Include="..\..\..\Main\GlobalAssemblyInfo.cs"> |
|
|
|
|
|
|
|
<Link>Configuration\GlobalAssemblyInfo.cs</Link> |
|
|
|
|
|
|
|
</Compile> |
|
|
|
<Compile Include="Src\OperatorPrecedence.cs" /> |
|
|
|
<Compile Include="Src\OperatorPrecedence.cs" /> |
|
|
|
<Compile Include="Src\Parser\CSharp\CSharpParser.cs" /> |
|
|
|
<Compile Include="Src\Parser\CSharp\CSharpParser.cs" /> |
|
|
|
<Compile Include="Src\Parser\CSharp\Parser.cs" /> |
|
|
|
<Compile Include="Src\Parser\CSharp\Parser.cs" /> |
|
|
@ -136,24 +137,26 @@ |
|
|
|
<ItemGroup> |
|
|
|
<ItemGroup> |
|
|
|
<Content Include="Src\Lexer\CSharp\KeywordList.txt" /> |
|
|
|
<Content Include="Src\Lexer\CSharp\KeywordList.txt" /> |
|
|
|
<Content Include="Src\Lexer\VBNet\KeywordList.txt" /> |
|
|
|
<Content Include="Src\Lexer\VBNet\KeywordList.txt" /> |
|
|
|
<Folder Include="Src\" /> |
|
|
|
<Folder Include="Src\Parser" /> |
|
|
|
<Folder Include="Src\Parser\" /> |
|
|
|
<Folder Include="Src\Parser\CSharp" /> |
|
|
|
<Content Include="Src\Parser\CSharp\cs.ATG" /> |
|
|
|
<Content Include="Src\Parser\CSharp\cs.ATG" /> |
|
|
|
<Folder Include="Src\Parser\" /> |
|
|
|
<Folder Include="Src\Parser\Frames" /> |
|
|
|
<Content Include="Src\Parser\Frames\Parser.frame" /> |
|
|
|
<Content Include="Src\Parser\Frames\Parser.frame" /> |
|
|
|
<Content Include="Src\Parser\Frames\Scanner.frame" /> |
|
|
|
<Content Include="Src\Parser\Frames\Scanner.frame" /> |
|
|
|
<Content Include="Src\Parser\Frames\SharpCoco.exe" /> |
|
|
|
<Content Include="Src\Parser\Frames\SharpCoco.exe" /> |
|
|
|
<Content Include="Src\Parser\Frames\trace.txt" /> |
|
|
|
<Content Include="Src\Parser\Frames\trace.txt" /> |
|
|
|
<Folder Include="Src\Parser\" /> |
|
|
|
<Folder Include="Src\Parser\VBNet" /> |
|
|
|
<Content Include="Src\Parser\VBNet\VBNET.ATG" /> |
|
|
|
<Content Include="Src\Parser\VBNet\VBNET.ATG" /> |
|
|
|
<Content Include="Src\Parser\gen.bat" /> |
|
|
|
<Content Include="Src\Parser\gen.bat" /> |
|
|
|
<Folder Include="Src\" /> |
|
|
|
<Folder Include="Src\PrettyPrinter" /> |
|
|
|
<Folder Include="Src\PrettyPrinter\" /> |
|
|
|
<Folder Include="Src\PrettyPrinter\CSharp" /> |
|
|
|
<Folder Include="Src\PrettyPrinter\" /> |
|
|
|
<Folder Include="Src\PrettyPrinter\VBNet" /> |
|
|
|
<Folder Include="Src\" /> |
|
|
|
<Folder Include="Src\Visitors" /> |
|
|
|
<Folder Include="Src\" /> |
|
|
|
<Folder Include="Src\Ast" /> |
|
|
|
<Folder Include="Src\Ast\" /> |
|
|
|
<Folder Include="Src\Ast\General" /> |
|
|
|
<Folder Include="Src\" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
|
|
|
<Folder Include="Src\AstBuilder" /> |
|
|
|
</ItemGroup> |
|
|
|
</ItemGroup> |
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
|
|
|
<PropertyGroup> |
|
|
|
<PropertyGroup> |
|
|
|