| 1 | #region license
|
|---|
| 2 | /*
|
|---|
| 3 | Copyright (c) 2008, Kouji Yamaguchi
|
|---|
| 4 | All rights reserved.
|
|---|
| 5 |
|
|---|
| 6 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|---|
| 7 |
|
|---|
| 8 | * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|---|
| 9 |
|
|---|
| 10 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|---|
| 11 |
|
|---|
| 12 | * Neither the name of coma2n nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|---|
| 13 |
|
|---|
| 14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|---|
| 15 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 16 | IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
|---|
| 17 | OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|---|
| 18 | OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|---|
| 19 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 20 | */
|
|---|
| 21 | #endregion
|
|---|
| 22 |
|
|---|
| 23 | using System.Reflection;
|
|---|
| 24 | //
|
|---|
| 25 | // �A�Z���u���Ɋւ����ʏ��͈ȉ���
|
|---|
| 26 | // �����Z�b�g����Đ��䂳�����B�A�Z���u���Ɋ֘A�t�����Ă��� |
|---|
| 27 | // ����X�����́A�����̑����l��X���Ă��������B
|
|---|
| 28 | //
|
|---|
| 29 | [assembly: AssemblyProduct("Silverlight JQuery Wrapper")]
|
|---|
| 30 | [assembly: AssemblyCopyright("Copyright (c) 2008, Kouji Yamaguchi All rights reserved.")]
|
|---|
| 31 |
|
|---|
| 32 | //
|
|---|
| 33 | // �A�Z���u���̃o�[�W�������́A�ȉ���4 �̑����ō\�������� :
|
|---|
| 34 | //
|
|---|
| 35 | // Major Version
|
|---|
| 36 | // Minor Version
|
|---|
| 37 | // Build Number
|
|---|
| 38 | // Revision
|
|---|
| 39 | //
|
|---|
| 40 | // ���ɂ������ɁA'*' ���āA���ׂĂ̒l��肷�邩�A
|
|---|
| 41 | // �r���h�������r�W�����ԍ�����ɂ��邱�Ƃ��ł��܂��B
|
|---|
| 42 |
|
|---|
| 43 | [assembly: AssemblyVersion("0.1.0.0")]
|
|---|