FLY.FeedbackRenZiJia.csproj 6.66 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1
<?xml version="1.0" encoding="utf-8"?>
潘栩锋's avatar
潘栩锋 committed
2
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
潘栩锋's avatar
潘栩锋 committed
3 4 5 6 7 8 9 10 11 12
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{3FAF02DE-B9E8-4DDA-A8E4-7A99E6E53ACB}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>FLY.FeedbackRenZiJia</RootNamespace>
    <AssemblyName>FLY.FeedbackRenZiJia</AssemblyName>
潘栩锋's avatar
潘栩锋 committed
13
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
潘栩锋's avatar
潘栩锋 committed
14 15 16
    <FileAlignment>512</FileAlignment>
    <NuGetPackageImportStamp>
    </NuGetPackageImportStamp>
潘栩锋's avatar
潘栩锋 committed
17
    <TargetFrameworkProfile />
潘栩锋's avatar
潘栩锋 committed
18 19 20 21 22 23 24 25 26
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
潘栩锋's avatar
潘栩锋 committed
27
    <Prefer32Bit>false</Prefer32Bit>
潘栩锋's avatar
潘栩锋 committed
28 29 30 31 32 33 34 35
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
潘栩锋's avatar
潘栩锋 committed
36
    <Prefer32Bit>false</Prefer32Bit>
潘栩锋's avatar
潘栩锋 committed
37 38 39 40 41 42 43 44 45
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
46
    <Reference Include="WindowsBase" />
潘栩锋's avatar
潘栩锋 committed
47 48 49 50 51 52 53 54 55 56 57 58 59
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Client\FeedbackHeatServiceClient.cs" />
    <Compile Include="Client\HeatBufServiceClient.cs" />
    <Compile Include="Client\HeatCellServiceClient.cs" />
    <Compile Include="Client\SnapShotBufServiceClient.cs" />
    <Compile Include="Common\ERRNOs.cs" />
    <Compile Include="Common\FeedbackHeatsMark.cs" />
    <Compile Include="Common\FlyData_BoltHeatRecord.cs" />
    <Compile Include="Common\FlyData_SnapShot.cs" />
    <Compile Include="Common\FlyData_FeedbackHeat.cs" />
    <Compile Include="Common\HeatProfile.cs" />
    <Compile Include="Common\MyMath.cs" />
60 61
    <Compile Include="IService\IHeatBufService.cs" />
    <Compile Include="IService\ISnapShotBufService.cs" />
潘栩锋's avatar
潘栩锋 committed
62
    <Compile Include="OBJ_INTERFACE\FEEDBACK_OBJ_INTERFACE.cs" />
63
    <Compile Include="IService\IFeedbackHeatService.cs" />
潘栩锋's avatar
潘栩锋 committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    <Compile Include="OBJ_INTERFACE\HEATBUF_OBJ_INTERFACE.cs" />
    <Compile Include="OBJ_INTERFACE\HEATCELL_OBJ_INTERFACE.cs" />
    <Compile Include="OBJ_INTERFACE\OBJ_INTERFACE_ID.cs" />
    <Compile Include="OBJ_INTERFACE\SNAPSHOT_OBJ_INTERFACE.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Server.OBJProxy\HeatBuf_OBJProxy.cs" />
    <Compile Include="Server.OBJProxy\HeatCell_OBJProxy.cs" />
    <Compile Include="Server.OBJProxy\OBJProxy.cs" />
    <Compile Include="Server.OBJProxy\SnapShotBuf_OBJProxy.cs" />
    <Compile Include="Server\FeedbackHeat.cs" />
    <Compile Include="Server.OBJProxy\FeedbackHeat_OBJProxy.cs" />
    <Compile Include="Server\HeatBuf.cs" />
    <Compile Include="Server\HeatCell.cs" />
    <Compile Include="Server\HeatChanged.cs" />
    <Compile Include="Server\HeatCheck.cs" />
    <Compile Include="Server\HMI.cs" />
80
    <Compile Include="IService\IHeatCellService.cs" />
潘栩锋's avatar
潘栩锋 committed
81 82
    <Compile Include="IService\IHeatCheck.cs" />
    <Compile Include="IService\IPLCLink.cs" />
83 84 85 86
    <Compile Include="Server\Model\DbModel.cs" />
    <Compile Include="Server\Model\DbTable.cs" />
    <Compile Include="Server\Model\HistoryDb.cs" />
    <Compile Include="Server\Model\LcTable.cs" />
87
    <Compile Include="Server\Model\Lc_AutoMapperProfile.cs" />
潘栩锋's avatar
潘栩锋 committed
88
    <Compile Include="Server\PLCLink.cs" />
潘栩锋's avatar
潘栩锋 committed
89
    <Compile Include="Server\SnapShotBuf.cs" />
90
    <Compile Include="Server\SysParam.cs" />
潘栩锋's avatar
潘栩锋 committed
91 92 93
    <Compile Include="Server\TDGage.cs" />
  </ItemGroup>
  <ItemGroup>
潘栩锋's avatar
潘栩锋 committed
94 95 96 97 98 99 100 101 102 103
    <Resource Include="FodyWeavers.xml">
      <SubType>Designer</SubType>
    </Resource>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\Project.FLY.Thick.Blowing\FLY.Thick.Blowing\FLY.Thick.Blowing.csproj">
      <Project>{cc20abeb-59f6-492b-a963-51121eb5ae66}</Project>
      <Name>FLY.Thick.Blowing</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\thick_public\Project.FLY.FObjSys\FObjSys\FObjBase.csproj">
潘栩锋's avatar
潘栩锋 committed
104 105 106
      <Project>{abfe87d4-b692-4ae9-a8c0-1f470b8acbb8}</Project>
      <Name>FObjBase</Name>
    </ProjectReference>
潘栩锋's avatar
潘栩锋 committed
107
    <ProjectReference Include="..\..\thick_public\Project.FLY.Misc\MISC\Misc.csproj">
潘栩锋's avatar
潘栩锋 committed
108 109 110
      <Project>{5ee61ac6-5269-4f0f-b8fa-4334fe4a678f}</Project>
      <Name>Misc</Name>
    </ProjectReference>
潘栩锋's avatar
潘栩锋 committed
111
    <ProjectReference Include="..\..\thick_public\Project.FLY.ModbusMapper\FLY.ModbusMapper\FLY.ModbusMapper.csproj">
112 113 114
      <Project>{6d4b9bda-2a66-4583-b244-758bc4213d9f}</Project>
      <Name>FLY.ModbusMapper</Name>
    </ProjectReference>
潘栩锋's avatar
潘栩锋 committed
115
    <ProjectReference Include="..\..\thick_public\Project.FLY.ModbusModule\FLY.ModbusModule\FLY.ModbusModule.csproj">
潘栩锋's avatar
潘栩锋 committed
116 117 118
      <Project>{8e19c40f-ce7f-4982-bd90-4eb4e9e04e34}</Project>
      <Name>FLY.ModbusModule</Name>
    </ProjectReference>
119
    <ProjectReference Include="..\..\thick_public\Project.FLY.OBJComponents\OBJComponents\FLY.OBJComponents.csproj">
潘栩锋's avatar
潘栩锋 committed
120
      <Project>{a539505d-9ac0-426b-a9a0-197df50598b0}</Project>
121
      <Name>FLY.OBJComponents</Name>
潘栩锋's avatar
潘栩锋 committed
122
    </ProjectReference>
潘栩锋's avatar
潘栩锋 committed
123 124 125 126
    <ProjectReference Include="..\..\thick_public\Project.SQLiteHelper\SQLiteHelper\SQLiteHelper.csproj">
      <Project>{4cbabfaa-1c62-4510-ac63-a51ee5fd50ff}</Project>
      <Name>SQLiteHelper</Name>
    </ProjectReference>
潘栩锋's avatar
潘栩锋 committed
127
  </ItemGroup>
128
  <ItemGroup>
129 130 131
    <PackageReference Include="AutoMapper">
      <Version>9.0.0</Version>
    </PackageReference>
132
    <PackageReference Include="Newtonsoft.Json">
潘栩锋's avatar
潘栩锋 committed
133
      <Version>12.0.3</Version>
134 135
    </PackageReference>
    <PackageReference Include="PropertyChanged.Fody">
潘栩锋's avatar
潘栩锋 committed
136
      <Version>3.2.5</Version>
137 138
    </PackageReference>
  </ItemGroup>
潘栩锋's avatar
潘栩锋 committed
139
  <ItemGroup />
潘栩锋's avatar
潘栩锋 committed
140 141 142 143 144 145 146 147 148
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>