создал проект с ссылками и пакетами

This commit is contained in:
aleksandr chegodaev 2024-04-30 18:30:17 +04:00
parent d8d329ed58
commit eca2a3a9a5
3 changed files with 49 additions and 4 deletions

View File

@ -3,13 +3,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34525.116
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenter", "CarCenter.csproj", "{67226823-B581-4EF2-85D9-EF237B3DA3AF}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenter", "CarCenter.csproj", "{67226823-B581-4EF2-85D9-EF237B3DA3AF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterDataModels", "..\CarCenterDataModels\CarCenterDataModels.csproj", "{5C83F791-9BDF-4EE7-A2F9-E163E9A26613}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterDataModels", "..\CarCenterDataModels\CarCenterDataModels.csproj", "{5C83F791-9BDF-4EE7-A2F9-E163E9A26613}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterContracts", "..\CarCenterContracts\CarCenterContracts.csproj", "{4A207999-1093-4596-B779-7366629753D3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterContracts", "..\CarCenterContracts\CarCenterContracts.csproj", "{4A207999-1093-4596-B779-7366629753D3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterBusinessLogics", "..\CarCenterBusinessLogics\CarCenterBusinessLogics.csproj", "{6AD3202B-AE23-425B-B71C-07BC326F6EA6}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterBusinessLogics", "..\CarCenterBusinessLogics\CarCenterBusinessLogics.csproj", "{6AD3202B-AE23-425B-B71C-07BC326F6EA6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterDatabaseImplement", "..\CarCenterDatabaseImplement\CarCenterDatabaseImplement.csproj", "{40629ABC-25BF-4898-996D-1F821DA20F54}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -33,6 +35,10 @@ Global
{6AD3202B-AE23-425B-B71C-07BC326F6EA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6AD3202B-AE23-425B-B71C-07BC326F6EA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6AD3202B-AE23-425B-B71C-07BC326F6EA6}.Release|Any CPU.Build.0 = Release|Any CPU
{40629ABC-25BF-4898-996D-1F821DA20F54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{40629ABC-25BF-4898-996D-1F821DA20F54}.Debug|Any CPU.Build.0 = Debug|Any CPU
{40629ABC-25BF-4898-996D-1F821DA20F54}.Release|Any CPU.ActiveCfg = Release|Any CPU
{40629ABC-25BF-4898-996D-1F821DA20F54}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

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

View File

@ -0,0 +1,32 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Implements\" />
<Folder Include="Models\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CarCenterContracts\CarCenterContracts.csproj" />
<ProjectReference Include="..\CarCenterDataModels\CarCenterDataModels.csproj" />
</ItemGroup>
</Project>