GDNXFD.Alert.Interpreter.csproj 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" 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>{2F1E40E5-0456-4FEF-A2E7-51FF79118B64}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>GDNXFD.Alert.Interpreter</RootNamespace>
  11. <AssemblyName>GDNXFD.Alert.Interpreter</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <PlatformTarget>x86</PlatformTarget>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821">
  35. <SpecificVersion>False</SpecificVersion>
  36. <HintPath>..\..\..\DLL\log4net.dll</HintPath>
  37. </Reference>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  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.Net.Http" />
  45. <Reference Include="System.Xml" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="AlertRuleInterpreter.cs" />
  49. <Compile Include="Calculator\ElectricalCalculator.cs" />
  50. <Compile Include="Calculator\LineCalculator.cs" />
  51. <Compile Include="Calculator\ProjectCalculator.cs" />
  52. <Compile Include="Calculator\WindPowerStationCalculator.cs" />
  53. <Compile Include="Calculator\WindTurbineCalculator.cs" />
  54. <Compile Include="CodeGenerator\CodeTemplate.cs" />
  55. <Compile Include="CodeGenerator\CodeGenerator.cs" />
  56. <Compile Include="CodeGenerator\SustainModel.cs" />
  57. <Compile Include="CodeGenerator\ExpressionException.cs" />
  58. <Compile Include="DataProvider\IDataProvider.cs" />
  59. <Compile Include="DataProvider\DefaultDataProvider.cs" />
  60. <Compile Include="ExpressionCompiler\ExpressionCompilerResults.cs" />
  61. <Compile Include="ExpressionCompiler\ExpressionCompiler.cs" />
  62. <Compile Include="Factory\InterpreterFactory.cs" />
  63. <Compile Include="EDosBJMonitor.cs" />
  64. <Compile Include="Properties\AssemblyInfo.cs" />
  65. <Compile Include="PollingService.cs" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <ProjectReference Include="..\EDosApiWrapper\EDosApiWrapper.csproj">
  69. <Project>{ea3bd3ee-8967-4a15-acfc-bf2a4c56ce10}</Project>
  70. <Name>EDosApiWrapper</Name>
  71. </ProjectReference>
  72. <ProjectReference Include="..\GDNXFD.Data\GDNXFD.Data.csproj">
  73. <Project>{e3a587b2-2a7a-43e7-a076-ee374ad48982}</Project>
  74. <Name>GDNXFD.Data</Name>
  75. </ProjectReference>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <None Include="packages.config" />
  79. </ItemGroup>
  80. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  81. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  82. Other similar extension points exist, see Microsoft.Common.targets.
  83. <Target Name="BeforeBuild">
  84. </Target>
  85. <Target Name="AfterBuild">
  86. </Target>
  87. -->
  88. </Project>