3 лаба. Создание нового проекта. Скачивание пакетов.

This commit is contained in:
Андрей Байгулов 2024-03-28 21:55:29 +04:00
parent 25869a56bf
commit 1b5fad8c37
3 changed files with 37 additions and 1 deletions

View File

@ -13,7 +13,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarListImplement", "Su
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarView", "SushiBarView\SushiBarView.csproj", "{149793FF-D4B1-4627-BBCB-ADFC6769C8FE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SushiBarFileImplement", "SushiBarFileImplement\SushiBarFileImplement.csproj", "{FAF3D975-5D08-4515-A51A-94FF76BB985A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarFileImplement", "SushiBarFileImplement\SushiBarFileImplement.csproj", "{FAF3D975-5D08-4515-A51A-94FF76BB985A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SushiBarDatabaseImplement", "SushiBarDatabaseImplement\SushiBarDatabaseImplement.csproj", "{DDA8F283-045D-4556-80DA-85CB448B6263}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -45,6 +47,10 @@ Global
{FAF3D975-5D08-4515-A51A-94FF76BB985A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FAF3D975-5D08-4515-A51A-94FF76BB985A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FAF3D975-5D08-4515-A51A-94FF76BB985A}.Release|Any CPU.Build.0 = Release|Any CPU
{DDA8F283-045D-4556-80DA-85CB448B6263}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDA8F283-045D-4556-80DA-85CB448B6263}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDA8F283-045D-4556-80DA-85CB448B6263}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDA8F283-045D-4556-80DA-85CB448B6263}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -0,0 +1,7 @@
namespace SushiBarDatabaseImplement
{
public class Class1
{
}
}

View File

@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.17" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.17" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.17">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SushiBarContracts\SushiBarContracts.csproj" />
<ProjectReference Include="..\SushiBarDataModels\SushiBarDataModels.csproj" />
</ItemGroup>
</Project>