Skip to content

Commit d839ee4

Browse files
committed
feat: Initial code
1 parent 6001635 commit d839ee4

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

Open Rails Code Bot.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp2.2</TargetFramework>
6+
<RootNamespace>Open_Rails_Code_Bot</RootNamespace>
7+
</PropertyGroup>
8+
9+
</Project>

Program.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace Open_Rails_Code_Bot
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Hello World!");
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)