Curtain.Net.Sockets.net4.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <PropertyGroup>
  44. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Compile Include="PLC\ConvertTool.cs" />
  48. <Compile Include="PLC\Core\ServerMessage.cs" />
  49. <Compile Include="PLC\Core\Session.cs" />
  50. <Compile Include="PLC\Core\TimeoutSocket.cs" />
  51. <Compile Include="PLC\Model\Siemens\SiemensS7_200SmartModel.cs" />
  52. <Compile Include="PLC\Model\SimpleSocketClientModel.cs" />
  53. <Compile Include="PLC\Model\Melsec\MelsecA1EAsciiModel.cs" />
  54. <Compile Include="PLC\Core\PLCMessage.cs" />
  55. <Compile Include="PLC\Model\PLCModel.cs" />
  56. <Compile Include="PLC\Model\Siemens\SiemensS7_1200Model.cs" />
  57. <Compile Include="PLC\Model\Siemens\SiemensS7_AddressData.cs" />
  58. <Compile Include="PLC\Model\SimpleSocketServerModel.cs" />
  59. <Compile Include="PLC\SocketServer.cs" />
  60. <Compile Include="PLC\ThreadLock\IThreadLock.cs" />
  61. <Compile Include="PLC\Core\PLCResult.cs" />
  62. <Compile Include="PLC\PLCSocket.cs" />
  63. <Compile Include="PLC\SocketClient.cs" />
  64. <Compile Include="PLC\Core\SocketAsyncState.cs" />
  65. <Compile Include="PLC\ThreadLock\ReaderWriterThreadLock.cs" />
  66. <Compile Include="PLC\ThreadLock\WaiterThreadLock.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Reference Include="System" />
  71. <Reference Include="System.Net" />
  72. <Reference Include="System.Windows.Forms" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Content Include="PLC\ServerMessages.txt" />
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. <PropertyGroup>
  79. <PostBuildEvent>
  80. </PostBuildEvent>
  81. </PropertyGroup>
  82. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  83. Other similar extension points exist, see Microsoft.Common.targets.
  84. <Target Name="BeforeBuild">
  85. </Target>
  86. <Target Name="AfterBuild">
  87. </Target>
  88. -->
  89. </Project>