Add project files.

This commit is contained in:
Ross Healy
2024-02-03 11:25:25 +00:00
parent 3ac369be73
commit 84a0645539
3 changed files with 37 additions and 0 deletions

25
console-applicaion.sln Normal file
View File

@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34321.82
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "console-applicaion", "console-applicaion\console-applicaion.csproj", "{499551A3-F630-4B22-ACAA-B94F3FF8C122}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{499551A3-F630-4B22-ACAA-B94F3FF8C122}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{499551A3-F630-4B22-ACAA-B94F3FF8C122}.Debug|Any CPU.Build.0 = Debug|Any CPU
{499551A3-F630-4B22-ACAA-B94F3FF8C122}.Release|Any CPU.ActiveCfg = Release|Any CPU
{499551A3-F630-4B22-ACAA-B94F3FF8C122}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2655DAEE-9DD1-44F8-A1EF-4519B071F32E}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1 @@


View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>console_applicaion</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>