Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LinkerDriver.cs « TestCasesRunner « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc2469ca31de6a943481ceeaa471de92ec0b8a82 (plain)
1
2
3
4
5
6
7
8
namespace Mono.Linker.Tests.TestCasesRunner {
	public class LinkerDriver {
		public virtual void Link (string [] args)
		{
			Driver.Main (args);
		}
	}
}