Curtain.Net.Sockets.net4.csproj 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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>{8D6605D6-91E7-4C9F-9F1A-DED8FA4562F5}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Curtain.Net.Sockets</RootNamespace>
  11. <AssemblyName>Curtain.Net.Sockets.net4</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. <DocumentationFile>bin\Debug\Curtain.Net.Sockets.net4.xml</DocumentationFile>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32Bit>false</Prefer32Bit>
  37. <DocumentationFile>
  38. </DocumentationFile>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <StartupObject />
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Compile Include="PLC\ConvertTool.cs" />
  45. <Compile Include="PLC\Core\ServerMessage.cs" />
  46. <Compile Include="PLC\Core\Session.cs" />
  47. <Compile Include="PLC\Core\TimeoutSocket.cs" />
  48. <Compile Include="PLC\Model\SimpleSocketClientModel.cs" />
  49. <Compile Include="PLC\Model\Melsec\MelsecA1EAsciiModel.cs" />
  50. <Compile Include="PLC\Core\PLCMessage.cs" />
  51. <Compile Include="PLC\Model\PLCModel.cs" />
  52. <Compile Include="PLC\Model\Siemens\SiemensS7_1200Model.cs" />
  53. <Compile Include="PLC\Model\Siemens\SiemensS7_AddressData.cs" />
  54. <Compile Include="PLC\Model\SimpleSocketServerModel.cs" />
  55. <Compile Include="PLC\SocketServer.cs" />
  56. <Compile Include="PLC\ThreadLock\IThreadLock.cs" />
  57. <Compile Include="PLC\Core\PLCResult.cs" />
  58. <Compile Include="PLC\PLCSocket.cs" />
  59. <Compile Include="PLC\SocketClient.cs" />
  60. <Compile Include="PLC\Core\SocketAsyncState.cs" />
  61. <Compile Include="PLC\ThreadLock\ReaderWriterThreadLock.cs" />
  62. <Compile Include="PLC\ThreadLock\WaiterThreadLock.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Reference Include="System" />
  67. <Reference Include="System.Net" />
  68. <Reference Include="System.Windows.Forms" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Content Include="PLC\ServerMessages.txt" />
  72. </ItemGroup>
  73. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  74. <PropertyGroup>
  75. <PostBuildEvent>
  76. </PostBuildEvent>
  77. </PropertyGroup>
  78. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  79. Other similar extension points exist, see Microsoft.Common.targets.
  80. <Target Name="BeforeBuild">
  81. </Target>
  82. <Target Name="AfterBuild">
  83. </Target>
  84. -->
  85. </Project>