VehicleControlSystem.csproj 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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>{73BAB40E-FC7D-4AB5-85CA-B4CF221DFBD1}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>VehicleControlSystem</RootNamespace>
  11. <AssemblyName>VehicleControlSystem</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</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>
  34. <StartupObject />
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="CommonServiceLocator, Version=2.0.4.0, Culture=neutral, PublicKeyToken=489b6accfaf20ef0, processorArchitecture=MSIL">
  38. <HintPath>..\packages\CommonServiceLocator.2.0.4\lib\net45\CommonServiceLocator.dll</HintPath>
  39. </Reference>
  40. <Reference Include="GSG.NET">
  41. <HintPath>..\Assambly\GSG.NET.dll</HintPath>
  42. </Reference>
  43. <Reference Include="GSG.NET.Excel, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  44. <SpecificVersion>False</SpecificVersion>
  45. <HintPath>..\Assambly\ExcelMapper\GSG.NET.Excel.dll</HintPath>
  46. </Reference>
  47. <Reference Include="NPOI">
  48. <HintPath>..\Assambly\ExcelMapper\NPOI.dll</HintPath>
  49. </Reference>
  50. <Reference Include="OHVConnector, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  51. <SpecificVersion>False</SpecificVersion>
  52. <HintPath>..\Assambly\OHVConnector.dll</HintPath>
  53. </Reference>
  54. <Reference Include="Prism, Version=7.2.0.1422, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  55. <HintPath>..\packages\Prism.Core.7.2.0.1422\lib\net45\Prism.dll</HintPath>
  56. </Reference>
  57. <Reference Include="Prism.Wpf, Version=7.2.0.1422, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59, processorArchitecture=MSIL">
  58. <HintPath>..\packages\Prism.Wpf.7.2.0.1422\lib\net45\Prism.Wpf.dll</HintPath>
  59. </Reference>
  60. <Reference Include="System" />
  61. <Reference Include="System.Configuration" />
  62. <Reference Include="System.Core" />
  63. <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  64. <HintPath>..\packages\System.ValueTuple.4.5.0\lib\netstandard1.0\System.ValueTuple.dll</HintPath>
  65. </Reference>
  66. <Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  67. <HintPath>..\packages\Prism.Wpf.7.2.0.1422\lib\net45\System.Windows.Interactivity.dll</HintPath>
  68. </Reference>
  69. <Reference Include="System.Xml.Linq" />
  70. <Reference Include="System.Data.DataSetExtensions" />
  71. <Reference Include="Microsoft.CSharp" />
  72. <Reference Include="System.Data" />
  73. <Reference Include="System.Net.Http" />
  74. <Reference Include="System.Xml" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Compile Include="ControlLayer\Actuator\Cylinder\Cylinder.cs" />
  78. <Compile Include="ControlLayer\Actuator\Cylinder\CylinderConfig.cs" />
  79. <Compile Include="ControlLayer\Actuator\Cylinder\CylinderData.cs" />
  80. <Compile Include="ControlLayer\Actuator\Cylinder\Enum_Cylinder.cs" />
  81. <Compile Include="ControlLayer\Actuator\Cylinder\ICylinder.cs" />
  82. <Compile Include="ControlLayer\Axis\AbstractAxis.cs" />
  83. <Compile Include="ControlLayer\Axis\AxisConfig.cs" />
  84. <Compile Include="ControlLayer\Axis\AxisData.cs" />
  85. <Compile Include="ControlLayer\Axis\Enum_Axis.cs" />
  86. <Compile Include="ControlLayer\Axis\EzAxis.cs" />
  87. <Compile Include="ControlLayer\Axis\IAxis.cs" />
  88. <Compile Include="ControlLayer\IO\BitBlock.cs" />
  89. <Compile Include="ControlLayer\IO\Delegates.cs" />
  90. <Compile Include="ControlLayer\IO\EzBoard.cs" />
  91. <Compile Include="ControlLayer\IO\EzIO.cs" />
  92. <Compile Include="ControlLayer\IO\IIO.cs" />
  93. <Compile Include="ControlLayer\IO\Lib\LIB_EziMOTIONPlusE.cs" />
  94. <Compile Include="ControlLayer\IO\Lib\MOTION_DEFINE_PlusE.cs" />
  95. <Compile Include="ControlLayer\IO\Lib\MOTION_EziSERVO2_DEFINE.cs" />
  96. <Compile Include="ControlLayer\IO\QueueObjects.cs" />
  97. <Compile Include="ControlLayer\Motion\GSIMotion.cs" />
  98. <Compile Include="ControlLayer\Serial\BatteryTabos\Config.cs" />
  99. <Compile Include="ControlLayer\Serial\BatteryTabos\Delegates.cs" />
  100. <Compile Include="ControlLayer\Serial\BatteryTabos\EnumBatteryStatus.cs" />
  101. <Compile Include="ControlLayer\Serial\BatteryTabos\Manager.cs" />
  102. <Compile Include="ControlLayer\Serial\BatteryTabos\QueObject.cs" />
  103. <Compile Include="ControlLayer\Serial\BatteryTabos\Rs232c.cs" />
  104. <Compile Include="ControlLayer\Vehicle.cs" />
  105. <Compile Include="Managers\AutoManager.cs" />
  106. <Compile Include="Managers\HostManager.cs" />
  107. <Compile Include="Managers\Scheduler.cs" />
  108. <Compile Include="VCSystem.cs" />
  109. <Compile Include="Properties\AssemblyInfo.cs" />
  110. </ItemGroup>
  111. <ItemGroup>
  112. <ProjectReference Include="..\OHV.Common\OHV.Common.csproj">
  113. <Project>{0d1f7fbc-bfb0-4ee4-852d-e2a8d62c5708}</Project>
  114. <Name>OHV.Common</Name>
  115. </ProjectReference>
  116. <ProjectReference Include="..\OHV.SqliteDAL\OHV.SqliteDAL.csproj">
  117. <Project>{122d81c8-9ab9-4ced-80d2-9c4f2f9deb4c}</Project>
  118. <Name>OHV.SqliteDAL</Name>
  119. </ProjectReference>
  120. </ItemGroup>
  121. <ItemGroup />
  122. <ItemGroup>
  123. <None Include="packages.config" />
  124. </ItemGroup>
  125. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  126. </Project>