2023-05-16 19:13:19 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2023-04-09 19:28:29 +04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-05-16 19:13:19 +04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2023-05-17 17:02:26 +04:00
|
|
|
|
<Optimize>False</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<Optimize>False</Optimize>
|
2023-05-16 19:13:19 +04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-04-09 19:28:29 +04:00
|
|
|
|
<ItemGroup>
|
2023-05-18 01:40:11 +04:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2023-04-09 19:28:29 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CanteenBusinessLogic\CanteenBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CanteenContracts\CanteenContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CanteenDatabaseImplement\CanteenDatabaseImplement.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CanteenDataModels\CanteenDataModels.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-14 22:24:37 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-09 19:28:29 +04:00
|
|
|
|
</Project>
|