89f0b05958
* WIP Improve sln migration tests * Simple migration test * Improve the test * WIP update test assets * Update test * Test a bug fix * Add another migrate sln test * Fix FilePath related tests * Finish the migrate sln tests * Fix tests * Fix another path issue
15 lines
278 B
C#
15 lines
278 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestLibrary
|
|
{
|
|
public static class Lib
|
|
{
|
|
public static string GetMessage()
|
|
{
|
|
return "Hello from TestLibrary.Lib";
|
|
}
|
|
}
|
|
}
|