From 359f0f7b6cf59a817270aa2e8baeef7752467fdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TwojeImi=C4=99=20NazwiskoJulia?= Date: Wed, 19 Nov 2025 23:54:58 +0100 Subject: [PATCH] Add .NET 8 console application --- Lab_7.csproj | 10 ++++++++++ Program.cs | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 Lab_7.csproj create mode 100644 Program.cs diff --git a/Lab_7.csproj b/Lab_7.csproj new file mode 100644 index 0000000..2150e37 --- /dev/null +++ b/Lab_7.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + 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!");