working on build scripts

This commit is contained in:
Andrew Stanton-Nurse 2016-02-02 10:04:50 -08:00
parent f273ea4f7d
commit d524732bbb
111 changed files with 3052 additions and 1989 deletions

View file

@ -16,7 +16,7 @@ namespace Microsoft.DotNet.Tests.EndToEnd
private static readonly string s_expectedOutput = "Hello World!" + Environment.NewLine;
private static readonly string s_testdirName = "e2etestroot";
private static readonly string s_outputdirName = "test space/bin";
private static string RestoredTestProjectDirectory { get; set; }
private string Rid { get; set; }
@ -33,7 +33,7 @@ namespace Microsoft.DotNet.Tests.EndToEnd
{
Console.WriteLine("Dummy Entrypoint.");
}
public EndToEndTest()
{
TestInstanceSetup();
@ -192,7 +192,7 @@ namespace Microsoft.DotNet.Tests.EndToEnd
{
Directory.Delete(RestoredTestProjectDirectory, true);
}
catch(Exception e) {}
catch(Exception) {}
Directory.CreateDirectory(RestoredTestProjectDirectory);
@ -231,4 +231,4 @@ namespace Microsoft.DotNet.Tests.EndToEnd
File.SetLastWriteTimeUtc(csFile, DateTime.UtcNow);
}
}
}
}