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
		
			
				
	
	
		
			19 lines
		
	
	
		
			646 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			646 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<Project Sdk="Microsoft.NET.Sdk">
 | 
						|
 | 
						|
  <PropertyGroup>
 | 
						|
    <TargetFrameworks>netcoreapp3.1;netcoreapp2.2</TargetFrameworks>
 | 
						|
    <RootNamespace>sample_csproj</RootNamespace>
 | 
						|
 | 
						|
    <IsPackable>false</IsPackable>
 | 
						|
  </PropertyGroup>
 | 
						|
 | 
						|
  <ItemGroup>
 | 
						|
    <!-- These packages will be downloaded over the network for testing proxy settings -->
 | 
						|
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
 | 
						|
    <PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
 | 
						|
    <PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
 | 
						|
    <PackageReference Include="coverlet.collector" Version="1.2.0" />
 | 
						|
  </ItemGroup>
 | 
						|
 | 
						|
</Project>
 |