mirror of
https://github.com/actions/runner.git
synced 2026-07-06 20:55:42 +08:00
* Revert "Warn for soon to be deprecated OS versions (#3413)"
This reverts commit ae04147f96.
* Add .NET 8 OS compatibility test
* feedback
14 lines
242 B
C#
14 lines
242 B
C#
using System;
|
|
|
|
namespace TestDotNet8Compatibility
|
|
{
|
|
public static class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
Console.WriteLine("Hello from .NET 8!");
|
|
return 0;
|
|
}
|
|
}
|
|
}
|