-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAspire.AppHost.csproj
More file actions
48 lines (44 loc) · 2.55 KB
/
Aspire.AppHost.csproj
File metadata and controls
48 lines (44 loc) · 2.55 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">
<Sdk Name="Aspire.AppHost.Sdk" Version="13.0.0" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireHost>true</IsAspireHost>
<UserSecretsId>4314ae44-7ea1-4bdc-bda3-c55826dd2434</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" />
<PackageReference Include="Aspire.Hosting.RabbitMQ" />
<PackageReference Include="Aspire.Hosting.Redis" />
<PackageReference Include="Aspire.Hosting.SqlServer" />
<PackageReference Include="Aspire.RabbitMQ.Client" />
<PackageReference Include="CommunityToolkit.Aspire.Hosting.Minio" />
<PackageReference Include="CommunityToolkit.Aspire.Hosting.SqlDatabaseProjects" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\API\API.csproj" />
<ProjectReference Include="..\..\Database\DeliusRunningPictureDb\DeliusRunningPictureDb.sqlproj" />
<ProjectReference Include="..\..\Database\DeliusStagingDb\DeliusStagingDb.sqlproj" />
<ProjectReference Include="..\..\Database\MatchingDb\MatchingDb.sqlproj" />
<ProjectReference Include="..\..\Meow\Meow.csproj" />
<ProjectReference Include="..\..\Database\OfflocRunningPictureDb\OfflocRunningPictureDb.sqlproj" />
<ProjectReference Include="..\..\Visualiser\Visualiser.csproj" />
<ProjectReference Include="..\..\Database\AuditDb\AuditDb.sqlproj" />
<ProjectReference Include="..\..\Database\OfflocStagingDb\OfflocStagingDb.sqlproj" />
<ProjectReference Include="..\..\Database\ClusterDb\ClusterDb.sqlproj" />
<ProjectReference Include="..\..\FakeDataSeeder\FakeDataSeeder.csproj" />
<!-- DMS APPS -->
<ProjectReference Include="..\..\Blocking\Blocking.csproj" />
<ProjectReference Include="..\..\Cleanup\Cleanup.csproj" />
<ProjectReference Include="..\..\DbInteractions\DbInteractions.csproj" />
<ProjectReference Include="..\..\Delius.Parser\Delius.Parser.csproj" />
<ProjectReference Include="..\..\FileSync\FileSync.csproj" />
<ProjectReference Include="..\..\Import\Import.csproj" />
<ProjectReference Include="..\..\Logging\Logging.csproj" />
<ProjectReference Include="..\..\Matching.Engine\Matching.Engine.csproj" />
<ProjectReference Include="..\..\Meow\Meow.csproj" />
<ProjectReference Include="..\..\Offloc.Cleaner\Offloc.Cleaner.csproj" />
<ProjectReference Include="..\..\Offloc.Parser\Offloc.Parser.csproj" />
</ItemGroup>
</Project>