50 lines
2.5 KiB
XML
50 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>UtopiaCanteenSystem</RootNamespace>
|
|
<AssemblyName>UtopiaCanteen.Backend</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\UtopiaCanteen.Shared\UtopiaCanteen.Shared.csproj" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.11" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.11" />
|
|
<PackageReference Include="MySqlConnector" Version="2.3.5" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Data\**\*.cs" LinkBase="Data" />
|
|
<Compile Include="..\Models\**\*.cs" LinkBase="Models" />
|
|
<Compile Include="..\Helpers\**\*.cs" LinkBase="Helpers" />
|
|
<Compile Include="..\Api\CanteenBackendHost.cs" Link="Api\CanteenBackendHost.cs" />
|
|
<Compile Include="..\Api\ApiDtoMapper.cs" Link="Api\ApiDtoMapper.cs" />
|
|
<Compile Include="..\Services\**\*.cs" LinkBase="Services" />
|
|
<Compile Remove="..\Services\CanteenBackendApiClient.cs" />
|
|
<Compile Remove="..\Services\ICanteenBackendApiClient.cs" />
|
|
<Compile Remove="..\Services\EmptyMenuLookupService.cs" />
|
|
<Compile Remove="..\Services\AuthService.cs" />
|
|
<Compile Remove="..\Services\IAuthService.cs" />
|
|
<Compile Remove="..\Services\AuthResult.cs" />
|
|
<Compile Remove="..\Services\NavigationService.cs" />
|
|
<Compile Remove="..\Services\INavigationService.cs" />
|
|
<Compile Remove="..\Services\AppSession.cs" />
|
|
<Compile Remove="..\Services\AdminAuditService.cs" />
|
|
<Compile Remove="..\Services\IAdminAuditService.cs" />
|
|
<Compile Remove="..\Services\EmployeePhotoService.cs" />
|
|
<Compile Remove="..\Services\IEmployeePhotoService.cs" />
|
|
<Compile Remove="..\Services\SampleSyncApiController.cs" />
|
|
<Compile Remove="..\Services\ClientConfigService.cs" />
|
|
<Compile Remove="..\Services\NoOpEmployeePhotoService.cs" />
|
|
<Compile Remove="..\Services\NoOpMealScheduleService.cs" />
|
|
<Compile Remove="..\Models\OrderHistoryItem.cs" />
|
|
<Compile Remove="..\Services\ConfigService.cs" />
|
|
<Compile Remove="..\Services\BackendApiMealScheduleService.cs" />
|
|
<Compile Remove="..\Services\AdminLoginHelper.cs" />
|
|
<Compile Remove="..\Api\RfidApiDtos.cs" />
|
|
<Compile Remove="..\Api\BackendApiDtos.cs" />
|
|
</ItemGroup>
|
|
</Project>
|