aboutsummaryrefslogtreecommitdiff
path: root/Codeforces.Console
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-08-09 09:12:09 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-08-09 09:12:09 +0300
commitd6adac69ab2ebcbb4b0b234005b4f928319e5cb3 (patch)
tree58043aac32f7702f5b72888d2c2a1b191264521e /Codeforces.Console
Initial commit
Diffstat (limited to 'Codeforces.Console')
-rw-r--r--Codeforces.Console/Codeforces.Console.csproj10
-rw-r--r--Codeforces.Console/Program.cs2
2 files changed, 12 insertions, 0 deletions
diff --git a/Codeforces.Console/Codeforces.Console.csproj b/Codeforces.Console/Codeforces.Console.csproj
new file mode 100644
index 0000000..74abf5c
--- /dev/null
+++ b/Codeforces.Console/Codeforces.Console.csproj
@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net6.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ </PropertyGroup>
+
+</Project>
diff --git a/Codeforces.Console/Program.cs b/Codeforces.Console/Program.cs
new file mode 100644
index 0000000..3751555
--- /dev/null
+++ b/Codeforces.Console/Program.cs
@@ -0,0 +1,2 @@
+// See https://aka.ms/new-console-template for more information
+Console.WriteLine("Hello, World!");