communicate_module.csproj 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>{480BEED1-2511-4EF1-A154-5CA2A2465B89}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>communicate_module</RootNamespace>
  10. <AssemblyName>communicate_module</AssemblyName>
  11. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <NuGetPackageImportStamp>
  14. </NuGetPackageImportStamp>
  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. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="Google.Protobuf, Version=3.17.3.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
  37. <HintPath>..\packages\Google.Protobuf.3.17.3\lib\net45\Google.Protobuf.dll</HintPath>
  38. </Reference>
  39. <Reference Include="NNanomsg, Version=0.5.2.0, Culture=neutral, processorArchitecture=MSIL">
  40. <HintPath>..\packages\NNanomsg.0.5.2\lib\net40\NNanomsg.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  44. <HintPath>..\packages\System.Buffers.4.5.1\lib\netstandard1.1\System.Buffers.dll</HintPath>
  45. </Reference>
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  48. <HintPath>..\packages\System.Memory.4.5.4\lib\netstandard1.1\System.Memory.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  51. <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\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="communication\Communicator.cs" />
  62. <Compile Include="communication\GroundDIsplayCommuncator.cs" />
  63. <Compile Include="communication\TerminalSimul.cs" />
  64. <Compile Include="message\MeasureMessage.cs" />
  65. <Compile Include="message\MessageBase.cs" />
  66. <Compile Include="message\ParkspaceAllocationMessage.cs" />
  67. <Compile Include="message\ProcessMessage.cs" />
  68. <Compile Include="message\TerminalMessage.cs" />
  69. <Compile Include="Program.cs" />
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <None Include="App.config" />
  74. <None Include="message\dispatch_control.proto" />
  75. <None Include="message\dispatch_message.proto" />
  76. <None Include="message\measure_message.proto" />
  77. <None Include="message\message_base.proto" />
  78. <None Include="message\parkspace_allocation_message.proto" />
  79. <None Include="message\process_message.proto" />
  80. <None Include="message\terminal_message.proto" />
  81. <None Include="packages.config" />
  82. <None Include="proto.bat" />
  83. <None Include="x64\libnanomsg.so">
  84. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  85. </None>
  86. <None Include="x86\libnanomsg.so">
  87. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  88. </None>
  89. </ItemGroup>
  90. <ItemGroup>
  91. <Content Include="x64\nanomsg.dll">
  92. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  93. </Content>
  94. <Content Include="x86\nanomsg.dll">
  95. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  96. </Content>
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. <Import Project="..\packages\Google.Protobuf.Tools.3.17.2\build\Google.Protobuf.Tools.targets" Condition="Exists('..\packages\Google.Protobuf.Tools.3.17.2\build\Google.Protobuf.Tools.targets')" />
  100. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  101. <PropertyGroup>
  102. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  103. </PropertyGroup>
  104. <Error Condition="!Exists('..\packages\Google.Protobuf.Tools.3.17.2\build\Google.Protobuf.Tools.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Google.Protobuf.Tools.3.17.2\build\Google.Protobuf.Tools.targets'))" />
  105. </Target>
  106. </Project>