Skip to content

Commit

Permalink
publish 6.7.9.10R1 stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
ScutGame committed Sep 11, 2015
1 parent 4d19fb1 commit e92eea8
Show file tree
Hide file tree
Showing 67 changed files with 1,951 additions and 490 deletions.
1 change: 1 addition & 0 deletions Release/6.7.9.10/AccountServer/Web/Default.ashx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<%@ WebHandler Language="C#" CodeBehind="Default.ashx.cs" Class="AccountServer.Default" %>
1 change: 1 addition & 0 deletions Release/6.7.9.10/AccountServer/Web/Global.asax
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="AccountServer.Global" Language="C#" %>
30 changes: 30 additions & 0 deletions Release/6.7.9.10/AccountServer/Web/NLog.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
This file needs to be put in the application directory. Make sure to set
'Copy to Output Directory' option in Visual Studio.
-->
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<variable name="logDirectory" value="D:/NLog/AccountLog"/>
<targets>
<target name="Info" xsi:type="File" fileName="${logDirectory}/Info/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="Debug" xsi:type="File" fileName="${logDirectory}/Debug/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="Exception" xsi:type="File" fileName="${logDirectory}/Exception/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="Fatal" xsi:type="File" fileName="${logDirectory}/Fatal/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="Warn" xsi:type="File" fileName="${logDirectory}/Warn/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="Client" xsi:type="File" fileName="${logDirectory}/Client/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="SqlError" xsi:type="File" fileName="${logDirectory}/Sql/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="Complement" xsi:type="File" fileName="${logDirectory}/Complement/${date:format=yyyyMMddHH}.txt" layout="${message}"/>
<target name="Console" xsi:type="Console" layout="${message}"/>
</targets>
<rules>
<logger name="*" level="Info" writeTo="Info,Console"/>
<logger name="*" level="Debug" writeTo="Debug"/>
<logger name="*" level="Error" writeTo="Exception"/>
<logger name="*" level="Fatal" writeTo="Fatal"/>
<logger name="*" level="Warn" writeTo="Warn"/>
<logger name="Client" level="Trace" writeTo="Client"/>
<logger name="Sql" level="Trace" writeTo="SqlError"/>
<logger name="Complement" level="Trace" writeTo="Complement"/>
</rules>
</nlog>
28 changes: 28 additions & 0 deletions Release/6.7.9.10/AccountServer/Web/Web.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<appSettings>
<add key="Product.SignKey" value=""/>
<add key="Product.ClientDesDeKey" value="j6=9=1ac"/>
<add key="Redis.Host" value="127.0.0.1:6379" />
<add key="Redis.Db" value="0" />
</appSettings>
<connectionStrings>
<add name="SnsCenter" providerName="SqlDataProvider" connectionString="Data Source=localhost;Database=SnsCenter;Uid=sa;Pwd=123" />
</connectionStrings>

<system.web>
<compilation targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="Default.ashx"/>
</files>
</defaultDocument>
</system.webServer>
</configuration>
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file added Release/6.7.9.10/Console/GameServer.exe
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<add key="Game.Language.TypeName" value="GameServer.CsScript.Locale.SimplifiedLanguage"/>
<add key="Game.Action.Script.TypeName" value="GameServer.CsScript.Action.Action{0}"/>
<add key="Script_IsDebug" value="True"/>
<add key="PublishType" value="Debug" />
<add key="Lua_Disable" value="True"/>

<!--脚本解密回调配置-->
Expand Down
Binary file added Release/6.7.9.10/Console/GameServer.pdb
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SCUT Server"
#define MyAppVersion "6.7.9.8"
#define MyAppVersion "6.7.9.10"
#define MyAppPublisher "ScutGame, Inc."
#define MyAppCopyright "Copyright (c) 2013-2015 scutgame.com Inc."
#define MyAppURL "http://www.scutgame.com/"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "SCUT Server"
#define MyAppVersion "6.7.9.8"
#define MyAppVersion "6.7.9.10"
#define MyAppPublisher "ScutGame, Inc."
#define MyAppCopyright "Copyright (c) 2013-2015 scutgame.com Inc."
#define MyAppURL "http://www.scutgame.com/"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added Release/6.7.9.10/Lib/Mono.Cecil.Mdb.dll
Binary file not shown.
Binary file added Release/6.7.9.10/Lib/Mono.Cecil.Pdb.dll
Binary file not shown.
Binary file added Release/6.7.9.10/Lib/Mono.Cecil.dll
Binary file not shown.
Binary file added Release/6.7.9.10/Lib/MySql.Data.dll
Binary file not shown.
Binary file added Release/6.7.9.10/Lib/NLog.dll
Binary file not shown.
File renamed without changes.
Binary file added Release/6.7.9.10/Lib/Newtonsoft.Json.dll
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file added Release/6.7.9.10/Lib/ServiceStack.Redis.dll
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit e92eea8

Please sign in to comment.