TLV_Protocol.csproj 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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>{53F99C27-A31C-4E45-ACAA-7D351197E1B7}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>TLVProtocal</RootNamespace>
  11. <AssemblyName>TLVProtocal</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup>
  18. <LangVersion>latest</LangVersion>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  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. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  40. <HintPath>..\packages\System.Buffers.4.5.1\lib\netstandard1.1\System.Buffers.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System.Core" />
  43. <Reference Include="System.Memory, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  44. <HintPath>..\packages\System.Memory.4.5.2\lib\netstandard1.1\System.Memory.dll</HintPath>
  45. </Reference>
  46. <Reference Include="System.Numerics" />
  47. <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  48. <HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\portable-net45+win8+wp8+wpa81\System.Numerics.Vectors.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  51. <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  52. </Reference>
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Net.Http" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="Data\TlvData.cs" />
  62. <Compile Include="Data\Interface.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="SubLayers\SingleConnectLayer.cs" />
  65. <Compile Include="SubLayers\TlvAckLayer.cs" />
  66. <Compile Include="TlvCommunicatorClient.cs" />
  67. <Compile Include="SubLayers\TlvContentLayer.cs" />
  68. <Compile Include="SubLayers\TlvPackLayer.cs" />
  69. <Compile Include="TlvFactory.cs" />
  70. <Compile Include="TlvProvider.cs" />
  71. <Compile Include="TlvCommunicatorServer.cs" />
  72. <Compile Include="Properties\_global.cs" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <None Include="app.config" />
  76. <None Include="packages.config" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <ProjectReference Include="..\UniversalNetFrame451\UniversalNetFrame451.csproj">
  80. <Project>{8f6a71f8-1678-4999-9d9b-318a32ad8424}</Project>
  81. <Name>UniversalNetFrame451</Name>
  82. </ProjectReference>
  83. </ItemGroup>
  84. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  85. </Project>