2024-09-17 09:01:49 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2024-11-19 11:00:48 -08:00
|
|
|
<Sdk Name="Aspire.AppHost.Sdk" Version="9.0.0" />
|
|
|
|
|
2024-09-17 09:01:49 -04:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-11-19 11:00:48 -08:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-09-17 09:01:49 -04:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsAspireHost>true</IsAspireHost>
|
|
|
|
<UserSecretsId>e8874200-80ab-41e3-bb56-b5bb93974eea</UserSecretsId>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Aspire.Hosting.AppHost" />
|
|
|
|
<PackageReference Include="Aspire.Hosting.Azure.ApplicationInsights" />
|
|
|
|
<PackageReference Include="Aspire.Hosting.Azure.CognitiveServices" />
|
|
|
|
<PackageReference Include="Aspire.Hosting.Orleans" />
|
|
|
|
<PackageReference Include="Aspire.Hosting.Qdrant" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\DevTeam.Backend\DevTeam.Backend.csproj" />
|
|
|
|
<ProjectReference Include="..\DevTeam.AgentHost\DevTeam.AgentHost.csproj" />
|
|
|
|
<ProjectReference Include="..\DevTeam.Agents\DevTeam.Agents.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|