Common.csproj 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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>{FDCF06A9-37CD-4E28-BF87-340C23C91665}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Common</RootNamespace>
  11. <AssemblyName>Common</AssemblyName>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  34. <DebugSymbols>true</DebugSymbols>
  35. <OutputPath>bin\x86\Debug\</OutputPath>
  36. <DefineConstants>DEBUG;TRACE</DefineConstants>
  37. <DebugType>full</DebugType>
  38. <PlatformTarget>x86</PlatformTarget>
  39. <ErrorReport>prompt</ErrorReport>
  40. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  43. <OutputPath>bin\x86\Release\</OutputPath>
  44. <DefineConstants>TRACE</DefineConstants>
  45. <Optimize>true</Optimize>
  46. <DebugType>pdbonly</DebugType>
  47. <PlatformTarget>x86</PlatformTarget>
  48. <ErrorReport>prompt</ErrorReport>
  49. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Reference Include="MECF.Framework.Common">
  53. <HintPath>..\..\..\EfemRT\lib\MECF.Framework.Common.dll</HintPath>
  54. </Reference>
  55. <Reference Include="PresentationCore" />
  56. <Reference Include="PresentationFramework" />
  57. <Reference Include="System" />
  58. <Reference Include="System.Core" />
  59. <Reference Include="System.Runtime.Serialization" />
  60. <Reference Include="System.ServiceModel" />
  61. <Reference Include="System.Xml.Linq" />
  62. <Reference Include="System.Data.DataSetExtensions" />
  63. <Reference Include="Microsoft.CSharp" />
  64. <Reference Include="System.Data" />
  65. <Reference Include="System.Net.Http" />
  66. <Reference Include="System.Xml" />
  67. <Reference Include="WindowsBase" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="CommonData\JetRobotMoveInfo.cs" />
  71. <Compile Include="DataCenter\DATA.cs" />
  72. <Compile Include="DataCenter\DataManager.cs" />
  73. <Compile Include="DataCenter\IQueryDataService.cs" />
  74. <Compile Include="DataCenter\QueryDataClient.cs" />
  75. <Compile Include="DataCenter\QueryDataService.cs" />
  76. <Compile Include="IOCore\NotifiableIoItem.cs" />
  77. <Compile Include="OP\OP.cs" />
  78. <Compile Include="OP\OperationManager.cs" />
  79. <Compile Include="Properties\AssemblyInfo.cs" />
  80. <Compile Include="WcfServiceManager.cs" />
  81. <Compile Include="WcfService\Efem\EfemClient.cs" />
  82. <Compile Include="WcfService\Efem\EfemService.cs" />
  83. <Compile Include="WcfService\Efem\IEfemService.cs" />
  84. <Compile Include="WcfService\IService.cs" />
  85. <Compile Include="WcfService\SomebodyClient.cs" />
  86. <Compile Include="WcfService\SomebodyService.cs" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <WCFMetadata Include="Connected Services\" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <Folder Include="Utilities\" />
  93. </ItemGroup>
  94. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  95. </Project>