FormulaEnginePoC.csproj 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{086EA057-6BCE-43C9-AF4E-2C40F7A299F1}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>FormulaEnginePoC</RootNamespace>
  10. <AssemblyName>FormulaEnginePoC</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>TRACE;DEBUG</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Design" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="System.Data.DataSetExtensions" />
  42. <Reference Include="Microsoft.CSharp" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.Deployment" />
  45. <Reference Include="System.Drawing" />
  46. <Reference Include="System.Windows.Forms" />
  47. <Reference Include="System.Xml" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="FormulaEngine\ExpressionTokenSplitter.cs" />
  51. <Compile Include="CSharpProvider\FormulaCompiler.cs" />
  52. <Compile Include="FormulaEngine\CalcFormula.cs" />
  53. <Compile Include="FormulaEngine\CspImpl\CspCalcFormula.cs" />
  54. <Compile Include="FormulaEngine\CspImpl\CspFilterFormula.cs" />
  55. <Compile Include="FormulaEngine\DepImpl\DepCalcFormula.cs" />
  56. <Compile Include="FormulaEngine\DepImpl\DepFilterFormula.cs" />
  57. <Compile Include="FormulaEngine\FilterFormula.cs" />
  58. <Compile Include="FormulaEngine\Formula.cs" />
  59. <Compile Include="DynamicExpressionParse\ClassFactory.cs" />
  60. <Compile Include="DynamicExpressionParse\DynamicClass.cs" />
  61. <Compile Include="DynamicExpressionParse\DynamicExpression.cs" />
  62. <Compile Include="DynamicExpressionParse\DynamicOrdering.cs" />
  63. <Compile Include="DynamicExpressionParse\DynamicProperty.cs" />
  64. <Compile Include="DynamicExpressionParse\ExpressionParser.cs" />
  65. <Compile Include="DynamicExpressionParse\ExpressionParserBase.cs" />
  66. <Compile Include="DynamicExpressionParse\ParseException.cs" />
  67. <Compile Include="DynamicExpressionParse\Res.cs" />
  68. <Compile Include="DynamicExpressionParse\Signature.cs" />
  69. <Compile Include="DynamicExpressionParse\FormulaCompiler.cs" />
  70. <Compile Include="FormulaEngine\FormulaConverter.cs" />
  71. <Compile Include="FormulaEngine\FormulaValueTypeConversion.cs" />
  72. <Compile Include="FormulaEngine\Mapping\PropertyMapping.cs" />
  73. <Compile Include="FormulaEngine\Mapping\TypeMapping.cs" />
  74. <Compile Include="FormulaEngine\MoreFunction.cs" />
  75. <Compile Include="CSharpProvider\CodeCompiler.cs" />
  76. <Compile Include="CSharpProvider\ExpressionCompiler.cs" />
  77. <Compile Include="UI\CodeExecPanel.cs">
  78. <SubType>UserControl</SubType>
  79. </Compile>
  80. <Compile Include="UI\CodeExecPanel.Designer.cs">
  81. <DependentUpon>CodeExecPanel.cs</DependentUpon>
  82. </Compile>
  83. <Compile Include="UI\SampleForm.cs">
  84. <SubType>Form</SubType>
  85. </Compile>
  86. <Compile Include="UI\SampleForm.Designer.cs">
  87. <DependentUpon>SampleForm.cs</DependentUpon>
  88. </Compile>
  89. <Compile Include="DynamicExpressionParse\DynamicQueryable.cs" />
  90. <Compile Include="Program.cs" />
  91. <Compile Include="Properties\AssemblyInfo.cs" />
  92. <Compile Include="SampleClasses\Book.cs" />
  93. <EmbeddedResource Include="UI\CodeExecPanel.resx">
  94. <DependentUpon>CodeExecPanel.cs</DependentUpon>
  95. </EmbeddedResource>
  96. <EmbeddedResource Include="UI\SampleForm.resx">
  97. <DependentUpon>SampleForm.cs</DependentUpon>
  98. <SubType>Designer</SubType>
  99. </EmbeddedResource>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <None Include="App.config" />
  103. </ItemGroup>
  104. <ItemGroup />
  105. <ItemGroup>
  106. <Content Include="DynamicExpressionParse\SOURCE.txt" />
  107. </ItemGroup>
  108. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  109. </Project>