-
-
Notifications
You must be signed in to change notification settings - Fork 803
Expand file tree
/
Copy pathAotExample.OrderService.csproj
More file actions
19 lines (19 loc) · 856 Bytes
/
AotExample.OrderService.csproj
File metadata and controls
19 lines (19 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<RootNamespace>AotExample.OrderService</RootNamespace>
<PublishAot>true</PublishAot>
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\AotExample.Contracts\AotExample.Contracts.csproj" />
<ProjectReference Include="..\..\..\src\Mocha\Mocha.csproj" />
<ProjectReference Include="..\..\..\src\Mocha.Abstractions\Mocha.Abstractions.csproj" />
<ProjectReference Include="..\..\..\src\Mocha.Mediator\Mocha.Mediator.csproj" />
<ProjectReference Include="..\..\..\src\Mocha.Transport.RabbitMQ\Mocha.Transport.RabbitMQ.csproj" />
<ProjectReference
Include="..\..\..\src\Mocha.Analyzers\Mocha.Analyzers.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false"
/>
</ItemGroup>
</Project>