1
0
mirror of https://github.com/actions/setup-dotnet.git synced 2026-02-18 23:41:19 +01:00
Files
setup-dotnet/__tests__/sample-csproj/Program.cs
2020-02-06 15:02:47 -05:00

15 lines
290 B
C#

using System;
using Newtonsoft.Json;
namespace sample_csproj
{
class Program
{
static void Main(string[] args)
{
var json = JsonConvert.SerializeObject(new[] {"Hello", "World!" });
Console.WriteLine(json);
}
}
}