Dodanie nowej aplikacji konsolowej .NET
Some checks failed
First CI / build (push) Has been cancelled

This commit is contained in:
Aleksandra Olejarz 2024-11-26 14:02:57 +01:00
parent f70a2803ca
commit 591397afc7
2 changed files with 12 additions and 0 deletions

2
Program.cs Normal file
View File

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

10
lab7.csproj Normal file
View File

@ -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>