PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenVisitorApp/CanteenVisitorApp.csproj

34 lines
1015 B
XML
Raw Normal View History

<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>
<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>
</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="..\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>