tangxu
2023-03-20 3bf8bf5179de8b83bbd6ad997e82d98302abd1c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.RunQueue4RabbitMq</AssemblyName>
    <RootNamespace>IStation.RunQueue</RootNamespace>
  </PropertyGroup>
 
  <ItemGroup>
    <PackageReference Include="RabbitMQ.Client" Version="6.2.4" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Log4Net\IStation.Log4Net.csproj" />
    <ProjectReference Include="..\..\Settings\IStation.Settings\IStation.Settings.csproj" />
    <ProjectReference Include="..\IStation.IRunQueue\IStation.IRunQueue.csproj" />
  </ItemGroup>
 
</Project>