Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
SharedAssemblyInfo.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 #pragma warning disable 436 // The type 'type' in 'assembly' conflicts with the imported type 'type2' in 'assembly' (due to ParadoxVersion being duplicated)
4 using System;
5 using System.Reflection;
6 using SiliconStudio;
7 
8 [assembly:AssemblyCompany("Silicon Studio")]
9 [assembly:AssemblyCopyright("Copyright © 2011 Silicon Studio")]
10 
11 [assembly:AssemblyTrademark("")]
12 [assembly:AssemblyCulture("")]
13 
14 [assembly: AssemblyVersion(ParadoxVersion.CurrentAssemblyAsText)]
15 [assembly: AssemblyFileVersion(ParadoxVersion.CurrentAssemblyAsText)]
16 
17 [assembly: AssemblyInformationalVersion(ParadoxVersion.CurrentAsText)]
18 
19 #if DEBUG
20 [assembly:AssemblyConfiguration("Debug")]
21 #else
22 [assembly:AssemblyConfiguration("Release")]
23 #endif
24 
25 namespace SiliconStudio
26 {
27  /// <summary>
28  /// Internal version used to identify Paradox version.
29  /// </summary>
30  /// <remarks>
31  /// Note: When modifying the version here, it must be modified also in the Paradox.pdxpkg
32  /// </remarks>
33  internal class ParadoxVersion
34  {
35  /// <summary>
36  /// The .NET current assembly version as text, not including pre-release (alpha, beta...) information.
37  /// </summary>
38  public const string CurrentAssemblyAsText = "1.0.0";
39 
40  /// <summary>
41  /// The Store current version as text, including pre-release (alpha, beta...) information
42  /// </summary>
43  /// <remarks>
44  /// Version number as described in http://docs.nuget.org/docs/reference/versioning
45  /// When using pre-release (alpha, beta, rc...etc.) and because the order of the release is in alphabetical order,
46  /// please use a double digit like alpha00 alpha01...etc. in order to make sure that we will follow the correct
47  /// order for the versions.
48  /// </remarks>
49  public const string CurrentAsText = CurrentAssemblyAsText + "-beta05";
50  }
51 
52  partial class PublicKeys
53  {
54 #if SILICONSTUDIO_SIGNED
55  public const string Default = ", PublicKey=0024000004800000940000000602000000240000525341310004000001000100f5ddb3ad5749f108242f29cfaa2205e4a6b87c7444314975dc0fbed53b7d638c17f9540763e7355be932481737cd97a4104aecda872c4805ed9473c70c239d8798b22aefc351bb2cc387eb4391f31c53aeb0452b89433562b06754af8e460384656cd388fb9bbfef348292f9fb4ee6d07b74a8490923079865a60238df259cd2";
56 #else
57  public const string Default = "";
58 #endif
59  }
60 }