csharp_sccd_compiler.csproj 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{DFB7F649-CA2A-40CD-925B-7D975252A8C3}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>csharp_sccd_compiler</RootNamespace>
  11. <AssemblyName>csharp_sccd_compiler</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <Externalconsole>true</Externalconsole>
  22. <PlatformTarget>x86</PlatformTarget>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  25. <DebugType>full</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <Externalconsole>true</Externalconsole>
  31. <PlatformTarget>x86</PlatformTarget>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.Xml.Linq" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Xml" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Compile Include="Properties\AssemblyInfo.cs" />
  41. <Compile Include="ClassDiagram.cs" />
  42. <Compile Include="Class.cs" />
  43. <Compile Include="Logger.cs" />
  44. <Compile Include="Constructor.cs" />
  45. <Compile Include="Method.cs" />
  46. <Compile Include="Destructor.cs" />
  47. <Compile Include="Attribute.cs" />
  48. <Compile Include="Association.cs" />
  49. <Compile Include="StateChart.cs" />
  50. <Compile Include="Constants.cs" />
  51. <Compile Include="FormalParameter.cs" />
  52. <Compile Include="StateChartNode.cs" />
  53. <Compile Include="StateChartTransition.cs" />
  54. <Compile Include="TriggerEvent.cs" />
  55. <Compile Include="FormalEventParameter.cs" />
  56. <Compile Include="EnterExitAction.cs" />
  57. <Compile Include="Action.cs" />
  58. <Compile Include="SubAction\SubAction.cs" />
  59. <Compile Include="SubAction\RaiseEvent.cs" />
  60. <Compile Include="SubAction\Script.cs" />
  61. <Compile Include="SubAction\Log.cs" />
  62. <Compile Include="SubAction\Assign.cs" />
  63. <Compile Include="Exceptions\CompilerException.cs" />
  64. <Compile Include="Exceptions\TransitionException.cs" />
  65. <Compile Include="StateReference.cs" />
  66. <Compile Include="Exceptions\UnprocessedException.cs" />
  67. <Compile Include="Exceptions\ActionException.cs" />
  68. <Compile Include="Visitors\Visitor.cs" />
  69. <Compile Include="Visitors\Visitable.cs" />
  70. <Compile Include="Visitors\StateLinker.cs" />
  71. <Compile Include="Exceptions\StateReferenceException.cs" />
  72. <Compile Include="Lexing\Lexer.cs" />
  73. <Compile Include="Exceptions\LexerException.cs" />
  74. <Compile Include="Lexing\Token.cs" />
  75. <Compile Include="Expression\Expression.cs" />
  76. <Compile Include="Expression\LValue.cs" />
  77. <Compile Include="Expression\ExpressionPart.cs" />
  78. <Compile Include="Expression\ExpressionPartString.cs" />
  79. <Compile Include="Expression\SelfReference.cs" />
  80. <Compile Include="Expression\InStateCall.cs" />
  81. <Compile Include="Code Generation\FileOutputer.cs" />
  82. <Compile Include="Code Generation\CodeGenerator.cs" />
  83. <Compile Include="Exceptions\CodeBlockException.cs" />
  84. <Compile Include="Code Generation\CSharpGenerator.cs" />
  85. <Compile Include="Visitors\PathCalculator.cs" />
  86. <Compile Include="Compiler.cs" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  89. <ItemGroup>
  90. <Folder Include="SubAction\" />
  91. <Folder Include="Exceptions\" />
  92. <Folder Include="Visitors\" />
  93. <Folder Include="Lexing\" />
  94. <Folder Include="Expression\" />
  95. <Folder Include="Code Generation\" />
  96. </ItemGroup>
  97. </Project>