1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/*
* BAssemblyInfo.cs
* Copyright © 2008-2011 kbinani
*
* This file is part of org.kbinani.cadencii.
*
* org.kbinani.cadencii is free software; you can redistribute it and/or
* modify it under the terms of the GPLv3 License.
*
* org.kbinani.cadencii is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#if JAVA
package org.kbinani.cadencii;
#else
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle( "Cadencii" )]
[assembly: AssemblyDescription( "" )]
[assembly: AssemblyConfiguration( org.kbinani.cadencii.BAssemblyInfo.id )]
[assembly: AssemblyCompany( "" )]
[assembly: AssemblyProduct( "Cadencii" )]
[assembly: AssemblyCopyright( "Copyright (C) 2008-2011 kbinani. All Rights Reserved." )]
[assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )]
[assembly: ComVisible( false )]
[assembly: Guid( "5028b296-d7be-4278-a799-ffaf50026128" )]
[assembly: AssemblyVersion( "1.0.0.0" )]
[assembly: AssemblyFileVersion( org.kbinani.cadencii.BAssemblyInfo.fileVersion )]
namespace org.kbinani.cadencii {
#endif
public class BAssemblyInfo {
public const String id = "$Id: BAssemblyInfo.cs 1726 2011-08-13 18:27:18Z kbinani $";
public const String fileVersionMeasure = "3";
public const String fileVersionMinor = "5";
public const String fileVersion = fileVersionMeasure + "." + fileVersionMinor + ".1";
}
#if !JAVA
}
#endif
|