72 lines
4.1 KiB
XML
72 lines
4.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.cs" />
|
|
<Compile Include="DataModels\IngredientDataModel.cs" />
|
|
<Compile Include="DataModels\OrderDataModel.cs" />
|
|
<Compile Include="DataModels\PekarDataModel.cs" />
|
|
<Compile Include="DataModels\PekarHistoryDataModel.cs" />
|
|
<Compile Include="DataModels\PositionDataModel.cs" />
|
|
<Compile Include="DataModels\ProductDataModel.cs" />
|
|
<Compile Include="DataModels\RecipeDataModel.cs" />
|
|
<Compile Include="DataModels\SalaryDataModel.cs" />
|
|
<Compile Include="Enums\PositionType.cs" />
|
|
<Compile Include="Enums\StatusType.cs" />
|
|
<Compile Include="Exceptions\DateTimeExtensions.cs" />
|
|
<Compile Include="Exceptions\ElementDeletedException.cs" />
|
|
<Compile Include="Exceptions\ElementExistsException.cs" />
|
|
<Compile Include="Exceptions\ElementNotFoundException.cs" />
|
|
<Compile Include="Exceptions\IncorrectDatesException.cs" />
|
|
<Compile Include="Exceptions\NullListException.cs" />
|
|
<Compile Include="Exceptions\StorageException.cs" />
|
|
<Compile Include="Exceptions\StringExtensions.cs" />
|
|
<Compile Include="Exceptions\ValidationException.cs" />
|
|
<Compile Include="Implementations\IngredientBusinessLogicContract.cs" />
|
|
<Compile Include="Implementations\OrderBusinessLogicContract.cs" />
|
|
<Compile Include="Implementations\PekarBusinessLogicContract.cs" />
|
|
<Compile Include="Implementations\PositionBusinessLogicContract.cs" />
|
|
<Compile Include="Implementations\ProductBusinessLogicContract.cs" />
|
|
<Compile Include="Implementations\SalaryBusinessLogicContract.cs" />
|
|
<Compile Include="Infrastructure\Infrastructure.cs" />
|
|
<Compile Include="Infrastructure\IValidation.cs" />
|
|
<Compile Include="Interfaces\BusinessLogicsContracts\IIngredientBusinessLogicContact.cs" />
|
|
<Compile Include="Interfaces\BusinessLogicsContracts\IOrderBusinessLogicContact.cs" />
|
|
<Compile Include="Interfaces\BusinessLogicsContracts\IPekarBusinessLogicContact.cs" />
|
|
<Compile Include="Interfaces\BusinessLogicsContracts\IPositionBusinessLogicContact.cs" />
|
|
<Compile Include="Interfaces\BusinessLogicsContracts\IProductBusinessLogicContact.cs" />
|
|
<Compile Include="Interfaces\BusinessLogicsContracts\ISalaryBusinessLogicContact.cs" />
|
|
<Compile Include="Interfaces\StoragesContracts\IIngredientStorageContact.cs" />
|
|
<Compile Include="Interfaces\StoragesContracts\IOrderStorageContact.cs" />
|
|
<Compile Include="Interfaces\StoragesContracts\IPekarStorageContact.cs" />
|
|
<Compile Include="Interfaces\StoragesContracts\IPositionStorageContact.cs" />
|
|
<Compile Include="Interfaces\StoragesContracts\IProductStorageContact.cs" />
|
|
<Compile Include="Interfaces\StoragesContracts\ISalaryStorageContact.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="CatHasPawsTests" />
|
|
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="App.config" />
|
|
<None Include="packages.config" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
<_Parameter1>CandyHouseTests</_Parameter1>
|
|
</AssemblyAttribute>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0-preview.1.25080.5" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
|
|
</ItemGroup>
|
|
</Project> |