2 Star 4 Fork 4

Admin / MitsubishiPlcProtocol

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
MitsubishiTester.csproj 5.36 KB
一键复制 编辑 原始数据 按行查看 历史
blueskit 提交于 2017-04-02 14:48 . update
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A6D49580-3CE8-4BA2-B8E9-8F9AF29E850D}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>InControls</RootNamespace>
<AssemblyName>MitsubishiTester</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</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.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="Vila.Core">
<HintPath>packages\Vila.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Common\AcquirePoint.cs" />
<Compile Include="Common\AcquirePointConversion.cs" />
<Compile Include="Common\AcquirePointEnum.cs" />
<Compile Include="Common\AcquirePointUnitType.cs" />
<Compile Include="Common\AcquireRawValue.cs" />
<Compile Include="Common\AcquireValue.cs" />
<Compile Include="Common\ConfigItem.cs" />
<Compile Include="Common\ConfigItemCatalogo.cs" />
<Compile Include="Common\ControllerBaseImpl.cs" />
<Compile Include="Common\ControllerType.cs" />
<Compile Include="Common\CraftworkItemInfo.cs" />
<Compile Include="Common\CraftworkMaterialNoEnum.cs" />
<Compile Include="Common\EnumForMixSystem.cs" />
<Compile Include="Common\IControllerAction.cs" />
<Compile Include="Common\IControllerBase.cs" />
<Compile Include="Common\IOServerStatus.cs" />
<Compile Include="Common\WeightingInfoArgs.cs" />
<Compile Include="Common\WeightingStepEnum.cs" />
<Compile Include="Common\WorkRegionEnum.cs" />
<Compile Include="Common\WorkRegionStateItem.cs" />
<Compile Include="PLC\CellDataTypes.cs" />
<Compile Include="PLC\FX\FxAddress.cs" />
<Compile Include="PLC\FX\FxAddressLayoutInfo.cs" />
<Compile Include="PLC\FX\FxAddressManager.cs" />
<Compile Include="PLC\FX\FxCommandArgs.cs" />
<Compile Include="PLC\FX\FxCommandHelper.cs" />
<Compile Include="PLC\FX\FxCommandResponse.cs" />
<Compile Include="PLC\FX\FxCommController.cs" />
<Compile Include="PLC\FX\FxConvert.cs" />
<Compile Include="PLC\FX\FxDefine.cs" />
<Compile Include="PLC\FX\FxRingBuffer.cs" />
<Compile Include="PLC\FX\FxSerialDeamon.cs" />
<Compile Include="PLC\FX\Fx_Test.cs" />
<Compile Include="PLC\MCPackage\MCComponentGroup.cs" />
<Compile Include="PLC\MCPackage\MCDefine.cs" />
<Compile Include="PLC\MCPackage\ResponseMessage.cs" />
<Compile Include="PLC\Mitsubishi\IMitsubishiPlc.cs" />
<Compile Include="PLC\Mitsubishi\McCommand.cs" />
<Compile Include="PLC\Mitsubishi\McCommandExtersions.cs" />
<Compile Include="PLC\Mitsubishi\McProtocolApp.cs" />
<Compile Include="PLC\Mitsubishi\McProtocolBinary.cs" />
<Compile Include="PLC\Mitsubishi\McProtocolTcp.cs" />
<Compile Include="PLC\Mitsubishi\McProtocolUdp.cs" />
<Compile Include="PLC\Mitsubishi\McSwapExtersions.cs" />
<Compile Include="PLC\Mitsubishi\McTest.cs" />
<Compile Include="PLC\Mitsubishi\PlcDeviceTypeExtersions.cs" />
<Compile Include="PLC\ResultCodeConst.cs" />
<Compile Include="PLC\SerialDevice\SerialParam.cs" />
<Compile Include="PLC\SerialDevice\SerialPortManager.cs" />
<Compile Include="PLC\SerialDevice\SerialPortSync.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<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>
1
https://gitee.com/shqgroup_admin/MitsubishiPlcProtocol.git
git@gitee.com:shqgroup_admin/MitsubishiPlcProtocol.git
shqgroup_admin
MitsubishiPlcProtocol
MitsubishiPlcProtocol
master

搜索帮助