mirror of
				https://github.com/actions/setup-dotnet.git
				synced 2025-11-04 04:03:45 +00:00 
			
		
		
		
	* 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!");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |