This commit is contained in:
danila 2025-02-06 01:36:38 +04:00
parent 66f3baba42
commit 5222f0148e
6 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.13.35507.96 d17.13
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AndDietCokeContract", "AndDietCokeContract\AndDietCokeContract.csproj", "{7B2E436C-9A9F-4167-8C80-850154523E50}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7B2E436C-9A9F-4167-8C80-850154523E50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7B2E436C-9A9F-4167-8C80-850154523E50}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7B2E436C-9A9F-4167-8C80-850154523E50}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7B2E436C-9A9F-4167-8C80-850154523E50}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C36B4A8E-5A4A-4CE6-95E0-A03B9A3E324C}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

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

13
Pizzeria/Pizzeria.sln Normal file
View File

@ -0,0 +1,13 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.13.35507.96 d17.13
MinimumVisualStudioVersion = 10.0.40219.1
Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EBC704CA-8C25-4C61-83CC-0D64F8C8E6D9}
EndGlobalSection
EndGlobal

View File

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

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>