mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-23 03:51:07 +07:00
352338157c
* Use dotnet-install scripts for proper sxs * Update dotnet version in testing * Error message cleanup * SxS testing in the dotnet project * Update package lock * Test fixes * Use proper environment variable * Set dotnet root for windows
16 lines
289 B
C#
16 lines
289 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
|
|
namespace sample_csproj
|
|
{
|
|
[TestClass]
|
|
public class Program
|
|
{
|
|
[TestMethod]
|
|
public void TestMethod1()
|
|
{
|
|
Console.WriteLine("Hello, World!");
|
|
}
|
|
}
|
|
}
|