PlanTempusApp/SetupInfrastructure/SetupInfrastructure.csproj

20 lines
426 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>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2025-01-24 18:04:35 +01:00
2025-02-10 18:41:51 +01:00
<ItemGroup>
<ProjectReference Include="..\Database\Database.csproj" />
</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>