Merge branch 'publish-tests1' of https://github.com/sridhar-ms/cli
This commit is contained in:
commit
f910bc9eff
42 changed files with 1825 additions and 128 deletions
20
test/TestProjects/TestLibrary/Helper.cs
Normal file
20
test/TestProjects/TestLibrary/Helper.cs
Normal 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!");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in a new issue