forked from hechenqingyuan/gitwms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlobal.asax.cs
75 lines (67 loc) · 2.26 KB
/
Global.asax.cs
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using Git.Framework.Email;
using Git.Framework.Resource;
using Git.Storage.Common;
using Git.Storage.Common.EnumJson;
using Git.Storage.Provider.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace Git.Storage.Web
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RouteConfig.RegisterRoutes(RouteTable.Routes);
//加载缓存修改文
ResourceManager.LoadCache();
//注册枚举值
EnumToJsonHelper.Reg(typeof(EAudite),
typeof(EBadType),
typeof(ECusType),
typeof(EInType),
typeof(EEquipmentStatus),
typeof(EIsDelete),
typeof(ELocalType),
typeof(EMoveType),
typeof(EOutType),
typeof(EProductType),
typeof(EReturnStatus),
typeof(EStorageType),
typeof(EOpType),
typeof(ECheckType),
typeof(EReturnType),
typeof(EChange),
typeof(EOrderStatus),
typeof(EOrderType),
typeof(ESupType),
typeof(EDataSourceType),
typeof(EReportType),
typeof(EElementType),
typeof(ESequence),
typeof(EUnit),
typeof(EBool));
SetVersion();
//初始化规则
SequenceProvider sequenceProvider = new SequenceProvider();
sequenceProvider.Init();
}
/// <summary>
/// 得到系统编译的版本
/// </summary>
private void SetVersion()
{
System.Reflection.AssemblyName assName = System.Reflection.Assembly.GetExecutingAssembly().GetName();
string version = "V" + assName.Version.ToString();
version = version.Substring(0, version.LastIndexOf("."));
Git.Framework.Cache.CacheHelper.Add(Git.Storage.Provider.CacheKey.CACHE_SYS_VERSION,version);
}
}
}