Add deterministic build tests sample (#820)

Add deterministic build tests sample
This commit is contained in:
Marco Rossignoli
2020-04-18 19:31:03 +02:00
committed by GitHub
parent a0e22ec622
commit 2e2b578fcc
18 changed files with 489 additions and 0 deletions
@@ -0,0 +1,12 @@
using System;
namespace ClassLibrary1
{
public class Class1
{
public int Method()
{
return 42;
}
}
}
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>