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

This commit is contained in:
ivans 2025-02-05 21:09:12 +04:00
parent e1545d926b
commit 76b0ff87cb
2 changed files with 34 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.10.35004.147
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SweetBunsContracts", "SweetBunsContracts\SweetBunsContracts.csproj", "{9D734A14-E182-4FEC-A0EE-A97BBCBE5D76}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9D734A14-E182-4FEC-A0EE-A97BBCBE5D76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D734A14-E182-4FEC-A0EE-A97BBCBE5D76}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D734A14-E182-4FEC-A0EE-A97BBCBE5D76}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D734A14-E182-4FEC-A0EE-A97BBCBE5D76}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {87724E55-BB62-4DE8-ABF8-7D6EC0B61573}
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>