Address PR feedback

This commit is contained in:
Sridhar Periyasamy 2016-09-26 15:30:51 -07:00
parent 7ee2bd1f26
commit a50708ac5c
8 changed files with 86 additions and 8 deletions

View file

@ -0,0 +1,15 @@
// 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 ProjectE
{
public static string GetMessage()
{
return "This string came from ProjectG";
}
}
}