-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSimpleMessageBus.Tests.Dispatch.FileSystem.csproj
More file actions
48 lines (39 loc) · 2.06 KB
/
SimpleMessageBus.Tests.Dispatch.FileSystem.csproj
File metadata and controls
48 lines (39 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EasyAF.Core" Version="4.*-*" />
<PackageReference Include="coverlet.collector" Version="*" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net10.0'">
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.*" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="[10.*, 11.0.0)" />
<PackageReference Include="System.Text.Json" Version="[10.*, 11.0.0)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net9.0'">
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.*" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.*" />
<!-- Transient package fixes to deal with .NET 9.0 RCs -->
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="[9.*, 11.0.0)" />
<PackageReference Include="System.Text.Json" Version="[9.*, 11.0.0)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.*" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SimpleMessageBus.Core\SimpleMessageBus.Core.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Dispatch.FileSystem\SimpleMessageBus.Dispatch.FileSystem.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Dispatch\SimpleMessageBus.Dispatch.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Publish\SimpleMessageBus.Publish.csproj" />
<ProjectReference Include="..\SimpleMessageBus.Tests.Shared\SimpleMessageBus.Tests.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>