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

test-522.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5731d1b4220eac7bff7c8d80cfbd2ae8a9c40a88 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Reflection;

[assembly: AssemblyVersion(Const.Version)]

class Const
{
	internal const string Version = "0.1";
	
	public static void Main () {}
}