12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <ProductVersion>10.0.0</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{DFB7F649-CA2A-40CD-925B-7D975252A8C3}</ProjectGuid>
- <OutputType>Library</OutputType>
- <RootNamespace>csharp_sccd_compiler</RootNamespace>
- <AssemblyName>csharp_sccd_compiler</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug</OutputPath>
- <DefineConstants>DEBUG;</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Externalconsole>true</Externalconsole>
- <PlatformTarget>x86</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <DebugType>full</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release</OutputPath>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Externalconsole>true</Externalconsole>
- <PlatformTarget>x86</PlatformTarget>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="ClassDiagram.cs" />
- <Compile Include="Class.cs" />
- <Compile Include="Logger.cs" />
- <Compile Include="Constructor.cs" />
- <Compile Include="Method.cs" />
- <Compile Include="Destructor.cs" />
- <Compile Include="Attribute.cs" />
- <Compile Include="Association.cs" />
- <Compile Include="StateChart.cs" />
- <Compile Include="Constants.cs" />
- <Compile Include="FormalParameter.cs" />
- <Compile Include="StateChartNode.cs" />
- <Compile Include="StateChartTransition.cs" />
- <Compile Include="TriggerEvent.cs" />
- <Compile Include="FormalEventParameter.cs" />
- <Compile Include="EnterExitAction.cs" />
- <Compile Include="Action.cs" />
- <Compile Include="SubAction\SubAction.cs" />
- <Compile Include="SubAction\RaiseEvent.cs" />
- <Compile Include="SubAction\Script.cs" />
- <Compile Include="SubAction\Log.cs" />
- <Compile Include="SubAction\Assign.cs" />
- <Compile Include="Exceptions\CompilerException.cs" />
- <Compile Include="Exceptions\TransitionException.cs" />
- <Compile Include="StateReference.cs" />
- <Compile Include="Exceptions\UnprocessedException.cs" />
- <Compile Include="Exceptions\ActionException.cs" />
- <Compile Include="Visitors\Visitor.cs" />
- <Compile Include="Visitors\Visitable.cs" />
- <Compile Include="Visitors\StateLinker.cs" />
- <Compile Include="Exceptions\StateReferenceException.cs" />
- <Compile Include="Lexing\Lexer.cs" />
- <Compile Include="Exceptions\LexerException.cs" />
- <Compile Include="Lexing\Token.cs" />
- <Compile Include="Expression\Expression.cs" />
- <Compile Include="Expression\LValue.cs" />
- <Compile Include="Expression\ExpressionPart.cs" />
- <Compile Include="Expression\ExpressionPartString.cs" />
- <Compile Include="Expression\SelfReference.cs" />
- <Compile Include="Expression\InStateCall.cs" />
- <Compile Include="Code Generation\FileOutputer.cs" />
- <Compile Include="Code Generation\CodeGenerator.cs" />
- <Compile Include="Exceptions\CodeBlockException.cs" />
- <Compile Include="Code Generation\CSharpGenerator.cs" />
- <Compile Include="Visitors\PathCalculator.cs" />
- <Compile Include="Compiler.cs" />
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <ItemGroup>
- <Folder Include="SubAction\" />
- <Folder Include="Exceptions\" />
- <Folder Include="Visitors\" />
- <Folder Include="Lexing\" />
- <Folder Include="Expression\" />
- <Folder Include="Code Generation\" />
- </ItemGroup>
- </Project>
|