PlanTempusApp/PlanTempus.SetupInfrastructure/PlanTempus.SetupInfrastructure.csproj

24 lines
558 B
XML
Raw Normal View History

2025-01-24 18:04:35 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2025-02-10 18:41:51 +01:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2025-03-12 00:13:53 +01:00
<TargetFramework>net9.0</TargetFramework>
2025-02-10 18:41:51 +01:00
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2025-01-24 18:04:35 +01:00
2025-02-20 17:14:53 +01:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.2" />
</ItemGroup>
2026-01-10 20:39:17 +01:00
<ItemGroup>
<ProjectReference Include="..\PlanTempus.Database\PlanTempus.Database.csproj" />
2025-02-10 18:41:51 +01:00
</ItemGroup>
2025-01-24 18:04:35 +01:00
2025-02-10 18:41:51 +01:00
<ItemGroup>
<None Update="appconfiguration.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2025-01-24 18:04:35 +01:00
</Project>