-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathSample.DomainEvents.WebApi.csproj
More file actions
35 lines (29 loc) · 1.46 KB
/
Copy pathSample.DomainEvents.WebApi.csproj
File metadata and controls
35 lines (29 loc) · 1.46 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
<Content Remove="wwwroot\.gitfolder" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.9" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.3" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SlimMessageBus.Host.AspNetCore\SlimMessageBus.Host.AspNetCore.csproj" />
<ProjectReference Include="..\..\SlimMessageBus.Host.Memory\SlimMessageBus.Host.Memory.csproj" />
<ProjectReference Include="..\..\SlimMessageBus.Host.Serialization.Json\SlimMessageBus.Host.Serialization.Json.csproj" />
<ProjectReference Include="..\..\SlimMessageBus\SlimMessageBus.csproj" />
<ProjectReference Include="..\Sample.DomainEvents.Application\Sample.DomainEvents.Application.csproj" />
<ProjectReference Include="..\Sample.DomainEvents.Domain\Sample.DomainEvents.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SlimMessageBus.Host.AspNetCore.Test" />
</ItemGroup>
</Project>