Files
LehrerApp/LehrerApp.Sync/LehrerApp.Sync.csproj

19 lines
671 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LehrerApp.Core\LehrerApp.Core.csproj" />
<ProjectReference Include="..\LehrerApp.Data\LehrerApp.Data.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiteDB" />
<!-- System.Text.Json ist in .NET 9 bereits im SDK enthalten,
explizite Referenz nur für Versionspin nötig -->
<PackageReference Include="System.Text.Json" />
</ItemGroup>
</Project>