Merge branch 'publish-tests1' of https://github.com/sridhar-ms/cli

This commit is contained in:
Sridhar Periyasamy 2015-12-14 17:42:22 -08:00
commit f910bc9eff
42 changed files with 1825 additions and 128 deletions

View file

@ -0,0 +1,20 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
namespace TestLibrary
{
public static class Helper
{
public static string GetMessage()
{
return "This string came from the test library!";
}
public static void SayHi()
{
Console.WriteLine("Hello there!");
}
}
}