Создание проектов и папок

This commit is contained in:
Marselchi 2024-04-27 16:43:48 +04:00
parent 22c8e765f7
commit 3b9c583827
5 changed files with 114 additions and 0 deletions

43
CarCenter/CarCenter.sln Normal file
View File

@ -0,0 +1,43 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34714.143
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterDataModels", "CarCenterDataModels\CarCenterDataModels.csproj", "{0DF028FA-4404-46D3-9752-6B993A5E17DD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterContracts", "CarCenterContracts\CarCenterContracts.csproj", "{35B11D95-5D0B-4D63-99E2-3ABF76178FDA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterBusinessLogic", "CarCenterBusinessLogic\CarCenterBusinessLogic.csproj", "{F7C378AF-AFFA-4E6B-8F21-D1A607B43B9A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterDatabaseImplement", "CarCenterDatabaseImplement\CarCenterDatabaseImplement.csproj", "{B441CCEB-C6EB-4573-87D6-A06F42623199}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0DF028FA-4404-46D3-9752-6B993A5E17DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0DF028FA-4404-46D3-9752-6B993A5E17DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0DF028FA-4404-46D3-9752-6B993A5E17DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0DF028FA-4404-46D3-9752-6B993A5E17DD}.Release|Any CPU.Build.0 = Release|Any CPU
{35B11D95-5D0B-4D63-99E2-3ABF76178FDA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{35B11D95-5D0B-4D63-99E2-3ABF76178FDA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{35B11D95-5D0B-4D63-99E2-3ABF76178FDA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{35B11D95-5D0B-4D63-99E2-3ABF76178FDA}.Release|Any CPU.Build.0 = Release|Any CPU
{F7C378AF-AFFA-4E6B-8F21-D1A607B43B9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F7C378AF-AFFA-4E6B-8F21-D1A607B43B9A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F7C378AF-AFFA-4E6B-8F21-D1A607B43B9A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F7C378AF-AFFA-4E6B-8F21-D1A607B43B9A}.Release|Any CPU.Build.0 = Release|Any CPU
{B441CCEB-C6EB-4573-87D6-A06F42623199}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B441CCEB-C6EB-4573-87D6-A06F42623199}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B441CCEB-C6EB-4573-87D6-A06F42623199}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B441CCEB-C6EB-4573-87D6-A06F42623199}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9FAC8B11-3715-478A-813B-CFE6C308F517}
EndGlobalSection
EndGlobal

View File

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

View File

@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="BindingModels\" />
<Folder Include="ViewModels\" />
<Folder Include="SearchModels\" />
<Folder Include="BusinessLogicsContracts\" />
<Folder Include="StoragesContracts\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CarCenterDataModels\CarCenterDataModels.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Enums\" />
<Folder Include="Models\" />
</ItemGroup>
</Project>

View File

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