Add SdkVersion to Template.ToString()

- Documents which SdkVersion was tested
This commit is contained in:
Mike Harder 2018-06-20 12:51:22 -07:00
parent 43be2bff95
commit daebec95f3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace AspNetCoreSdkTests.Templates
GetHttpResponsesAfterExec, LazyThreadSafetyMode.ExecutionAndPublication);
}
public override string ToString() => $"{Name}, source: {NuGetPackageSource}, rid: {RuntimeIdentifier}";
public override string ToString() => $"{Name}, source: {NuGetPackageSource}, rid: {RuntimeIdentifier}, sdk: {DotNetUtil.SdkVersion}";
private string TempDir => Path.Combine(AssemblySetUp.TempDir, Name, NuGetPackageSource.Name, RuntimeIdentifier.Name );