mirror of https://github.com/abpframework/eventhub
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
988 B
26 lines
988 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<RootNamespace>EventHub</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Volo.Abp.TestBase" Version="9.3.5" />
|
|
<PackageReference Include="Volo.Abp.Autofac" Version="9.3.5" />
|
|
<PackageReference Include="Volo.Abp.Authorization" Version="9.3.5" />
|
|
<ProjectReference Include="..\..\src\EventHub.Domain\EventHub.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
|
<PackageReference Include="NSubstitute" Version="5.1.0" />
|
|
<PackageReference Include="Shouldly" Version="4.2.1" />
|
|
<PackageReference Include="xunit" Version="2.6.1" />
|
|
<PackageReference Include="xunit.extensibility.execution" Version="2.6.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|