using nuget packages

This commit is contained in:
2025-11-11 11:27:13 +01:00
parent 80bc441e36
commit 7dc5db1e17
6 changed files with 29 additions and 3 deletions

View File

@@ -1,2 +1,5 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
using Groomgy.HelloWorld;
// See https://aka.ms/new-console-template for more information
var svc = new HelloWorldService();
Console.WriteLine(svc.Say());

View File

@@ -7,4 +7,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Groomgy.HelloWorld" Version="1.16.1" />
</ItemGroup>
</Project>