Skip to content

Commit

Permalink
초기 커밋.
Browse files Browse the repository at this point in the history
  • Loading branch information
guddus326 committed Jun 22, 2021
1 parent ba21c7a commit 222967c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
25 changes: 25 additions & 0 deletions CSBasic5.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31321.278
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSBasic5", "CSBasic5\CSBasic5.csproj", "{4397306F-BE30-479E-A04E-B8A9C8AA2D3B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4397306F-BE30-479E-A04E-B8A9C8AA2D3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4397306F-BE30-479E-A04E-B8A9C8AA2D3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4397306F-BE30-479E-A04E-B8A9C8AA2D3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4397306F-BE30-479E-A04E-B8A9C8AA2D3B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {CB453A1A-8743-473F-8232-4DA72521942E}
EndGlobalSection
EndGlobal
8 changes: 8 additions & 0 deletions CSBasic5/CSBasic5.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

</Project>
12 changes: 12 additions & 0 deletions CSBasic5/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;

namespace CSBasic5
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

0 comments on commit 222967c

Please sign in to comment.