28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Configurations>Debug;Release;Staging;DebugStaging</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.12" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.12" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.12" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.12">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.100" />
|
|
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.100" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\gehGassiApp.Data\gehGassiApp.Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|