+ Папочки

This commit is contained in:
spacyboy 2024-04-28 19:12:06 +04:00
parent 54d23f7166
commit b1161502fa
2 changed files with 26 additions and 1 deletions

View File

@ -9,7 +9,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterDataModels", "CarC
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterContracts", "CarCenterContracts\CarCenterContracts.csproj", "{A1AAA9E0-F136-4327-B87E-602AC821E049}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterContracts", "CarCenterContracts\CarCenterContracts.csproj", "{A1AAA9E0-F136-4327-B87E-602AC821E049}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterBusinessLogic", "CarCenterBusinessLogic\CarCenterBusinessLogic.csproj", "{3736E810-EE9C-4424-964B-FBAA50385E64}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterBusinessLogic", "CarCenterBusinessLogic\CarCenterBusinessLogic.csproj", "{3736E810-EE9C-4424-964B-FBAA50385E64}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterDataBaseImplement", "CarCenterDataBaseImplement\CarCenterDataBaseImplement.csproj", "{BA715056-F26D-4828-B24D-C008733FB61A}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -33,6 +35,10 @@ Global
{3736E810-EE9C-4424-964B-FBAA50385E64}.Debug|Any CPU.Build.0 = Debug|Any CPU {3736E810-EE9C-4424-964B-FBAA50385E64}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3736E810-EE9C-4424-964B-FBAA50385E64}.Release|Any CPU.ActiveCfg = Release|Any CPU {3736E810-EE9C-4424-964B-FBAA50385E64}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3736E810-EE9C-4424-964B-FBAA50385E64}.Release|Any CPU.Build.0 = Release|Any CPU {3736E810-EE9C-4424-964B-FBAA50385E64}.Release|Any CPU.Build.0 = Release|Any CPU
{BA715056-F26D-4828-B24D-C008733FB61A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA715056-F26D-4828-B24D-C008733FB61A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA715056-F26D-4828-B24D-C008733FB61A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA715056-F26D-4828-B24D-C008733FB61A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

View File

@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CarCenterContracts\CarCenterContracts.csproj" />
<ProjectReference Include="..\CarCenterDataModels\CarCenterDataModels.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Implements\" />
<Folder Include="Models\" />
</ItemGroup>
</Project>