ci: add initial implementation of update runner action, ref: A24-10

This commit is contained in:
Simon Diesenreiter
2024-12-03 13:25:53 +01:00
parent e03afad8e6
commit 8cb14caff1
3 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="AoCAPI" Version="2.3.0" />
</ItemGroup>
</Project>