Add .NET 8 console application
All checks were successful
First CI / build (push) Successful in 10s

This commit is contained in:
sofacela
2025-11-20 13:42:11 +01:00
parent 96e177fecd
commit cc332750f8
2 changed files with 13 additions and 0 deletions

11
lab7-ci.csproj Normal file
View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>lab7_ci</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>