21 lines
642 B
XML
21 lines
642 B
XML
<Project Sdk="Aspire.AppHost.Sdk/13.4.5">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UserSecretsId>f7385039-092b-4272-a61a-69c6a3d0d618</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.4.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\API\API.csproj" />
|
|
<ProjectReference Include="..\RecNet.MigrationService\RecNet.MigrationService.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|