From 0e2bcb4a6d7ee19f5989d7ef259a02b2726d5a5c Mon Sep 17 00:00:00 2001 From: Xylo Date: Fri, 1 Dec 2023 11:16:23 +0100 Subject: [PATCH] Switch to a better language --- Program.cs | 2 ++ ci-lab7.csproj | 11 +++++++++++ main.c | 6 ------ 3 files changed, 13 insertions(+), 6 deletions(-) create mode 100644 Program.cs create mode 100644 ci-lab7.csproj delete mode 100644 main.c diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/ci-lab7.csproj b/ci-lab7.csproj new file mode 100644 index 0000000..e8e6da6 --- /dev/null +++ b/ci-lab7.csproj @@ -0,0 +1,11 @@ + + + + Exe + net6.0 + ci_lab7 + enable + enable + + + diff --git a/main.c b/main.c deleted file mode 100644 index df257a6..0000000 --- a/main.c +++ /dev/null @@ -1,6 +0,0 @@ -#include -int main() -{ - printf("Halo, Welt!"); - return 0; -} \ No newline at end of file