20 lines
738 B
XML
20 lines
738 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>latest</LangVersion>
|
|
<!-- Für Docker: kein self-contained nötig, Runtime im Container -->
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LehrerApp.Sync\LehrerApp.Sync.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<!-- Alle Microsoft-Pakete auf 9.0.x pinnen -->
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<PackageReference Include="LiteDB" />
|
|
<PackageReference Include="System.Text.Json" />
|
|
</ItemGroup>
|
|
</Project>
|