2021-09-09 | wangsheng | ![]() |
2021-08-13 | Dear_Sheng | ![]() |
2021-07-12 | Dear_Sheng | ![]() |
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/.vs/AutoCheckSMS/v16/.suoBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/App.config
@@ -2,9 +2,12 @@ <configuration> <connectionStrings> <!--<add name="ConnectionString" connectionString="server=.;uid=yzm;pwd=zjunmedia587GM$$;database=smsdb" providerName="System.Data.SqlClient"/>--> <add name="ConnectionString" connectionString="server=.;uid=sa;pwd=123456;database=smsdb" providerName="System.Data.SqlClient"/> <add name="ConnectionString" connectionString="Data Source=DESKTOP-MMFLSTG;Initial Catalog=smsdb;Integrated Security=True" providerName="System.Data.SqlClient"/> </connectionStrings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <appSettings> <add key="OutUserid" value="12856,11"/> </appSettings> </configuration> ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/Models/tbl_sms_task.cs
@@ -25,4 +25,9 @@ public int IsAudit { get => _isAudit; set => _isAudit = value; } public int IsSend { get => _isSend; set => _isSend = value; } } public class UserID { public string Userid { get; set; } } } ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/SQLHelper.cs
@@ -37,21 +37,53 @@ public List<tbl_sms_task> GetSmsConent() { List<tbl_sms_task> list = new List<tbl_sms_task>(); string[] Out = System.Configuration.ConfigurationManager.AppSettings["OutUserid"].Trim().Split(','); string U_sql = "select userid,parentuserid from tbl_user where isuse=1 and isdelete=0"; DataSet U_ds1 = da.ExecuteDataSet(CommandType.Text, U_sql); DataTable U_dt = U_ds1.Tables[0]; List<GetUserID> IGetID = new List<GetUserID>(); foreach (DataRow item in U_dt.Rows) { IGetID.Add(new GetUserID{ UserID = item[0].ToString(), ParentuserID = item[1].ToString() }); } List<GetUserID> GetID = GetSonUsserID(Out, IGetID); string[] I_Out = new string[GetID.Count]; int i = 0; foreach (var item in GetID) { I_Out[i] = item.UserID; i++; } Log4netService.Debug($"è¿æ»¤ID个æ°:{GetID.Count}"); try { string time = DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:mm"); string sql = $"select TaskID,UserID,MsgContent,ReadError,IsAudit from tbl_sms_task where CreateTime>= '{time}'and IsAudit=0 and ReadError like '%åå 宿%' and (MsgContent not like '%é订%' and MsgContent not like '%.c%' and MsgContent not like '%ç¹å¯¹ç¹%')"; string sql = $"select TaskID,UserID,MsgContent,ReadError,IsAudit from tbl_sms_task where CreateTime>= '{time}'and IsAudit=0 and ReadError like '%åå 宿%' and msgContent not like '%é' and MsgContent not like '%å_é%' and MsgContent not like '%é订%' and MsgContent not like '%é_T%' and MsgContent not like '%.c%' and MsgContent not like '%ç¹å¯¹ç¹%'"; DataSet ds = da.ExecuteDataSet(CommandType.Text, sql); DataTable dt = ds.Tables[0]; if (dt.Rows.Count > 0) { foreach (DataRow dr in dt.Rows) { int taskid = int.Parse(dr["TaskID"].ToString()); int userid = int.Parse(dr["UserID"].ToString()); string content = dr["MsgContent"].ToString(); int isaudit = int.Parse(dr["IsAudit"].ToString()); list.Add(new tbl_sms_task() { TaskID = taskid, UserID = userid, MsgContent = content, IsAudit = isaudit }); if (!I_Out.Contains(dr["UserID"].ToString().Trim())) { int taskid = int.Parse(dr["TaskID"].ToString()); int userid = int.Parse(dr["UserID"].ToString()); string content = dr["MsgContent"].ToString(); int isaudit = int.Parse(dr["IsAudit"].ToString()); list.Add(new tbl_sms_task() { TaskID = taskid, UserID = userid, MsgContent = content, IsAudit = isaudit }); } else { Console.WriteLine($"ãå®¡æ ¸æä½ãåå¨è¿æ»¤IDï¼{dr["UserID"].ToString().Trim()},è·³è¿è¯¥IDå 容"); Log4netService.Debug($"ãå®¡æ ¸æä½ãåå¨è¿æ»¤IDï¼{dr["UserID"].ToString().Trim()},è·³è¿è¯¥IDå 容ï¼{dr["MsgContent"]}"); } } } } @@ -61,6 +93,68 @@ } return list; } /// <summary> /// éå½è·åè·ååID /// </summary> /// <param name="UserID">ä¼ å ¥ä¸çº§ID</param> /// <param name="GetID">ä¼ å ¥è´¦å·è¡¨</param> /// <returns></returns> public static List<GetUserID> GetSonUsserID(string[] UserID, List<GetUserID> GetID) { List<GetUserID> LGetID = new List<GetUserID>(); List<GetUserID> LID = new List<GetUserID>(); for (int i = 0; i < UserID.Length; i++) { LID.AddRange(GetID.Where(a => a.ParentuserID == UserID[i]).ToList());//å°GetIDä¸ç¬¦åä¸çº§IDçææåIDä¼ å ¥LID } if (LID.Count != 0)//é彿¡ä»¶ { string[] SonID = new string[LID.Count]; int i = 0; foreach (var item in LID) { //Console.WriteLine($"éå½ IDï¼{item.ParentuserID} åIDï¼{item.UserID}"); SonID[i] = item.UserID; i++; }//å°åIDè½¬ææ°ç» //for (int l = 0; l < SonID.Length; l++) //{ // Console.WriteLine($"éè¦éå½çIDï¼{SonID[l]}"); //} for (int h = 0; h < UserID.Length; h++) { LGetID.Add(new GetUserID { UserID = UserID[h].ToString(), ParentuserID = 0.ToString() }); } LGetID.AddRange(GetSonUsserID(SonID, GetID)); } else { for (int i = 0; i < UserID.Length; i++) { LGetID.Add(new GetUserID { UserID = UserID[i].ToString(), ParentuserID = 0.ToString() }); } return LGetID; } return LGetID; } public class GetUserID { public string UserID { get; set; } public string ParentuserID { get; set; } } /// <summary> /// æ´æ°å®¡æ ¸ç¶æ @@ -99,6 +193,7 @@ List<tbl_sms_task> list = new List<tbl_sms_task>(); try { string[] OutUserid = System.Configuration.ConfigurationManager.AppSettings["OutUserid"].Trim().Split(','); string time = DateTime.Now.AddHours(-1).ToString("yyyy-MM-dd HH:mm"); string sql = $"select TaskID,UserID,MsgContent,ReadError,IsAudit from tbl_sms_task_log where CreateTime>= '{time}' and issend=2 and (MsgContent not like '%é订%' and MsgContent not like '%.c%' and MsgContent not like '%ç¹å¯¹ç¹%') and IsAudit=2"; DataSet ds = da.ExecuteDataSet(CommandType.Text, sql); @@ -107,11 +202,22 @@ { foreach (DataRow dr in dt.Rows) { int taskid = int.Parse(dr["TaskID"].ToString()); int userid = int.Parse(dr["UserID"].ToString()); string content = dr["MsgContent"].ToString(); int isaudit = int.Parse(dr["IsAudit"].ToString()); list.Add(new tbl_sms_task() { TaskID = taskid, UserID = userid, MsgContent = content, IsAudit = isaudit }); foreach (var item in OutUserid) { if (dr["UserID"].ToString() != item) { int taskid = int.Parse(dr["TaskID"].ToString()); int userid = int.Parse(dr["UserID"].ToString()); string content = dr["MsgContent"].ToString(); int isaudit = int.Parse(dr["IsAudit"].ToString()); list.Add(new tbl_sms_task() { TaskID = taskid, UserID = userid, MsgContent = content, IsAudit = isaudit }); } else { Console.WriteLine($"åå¨è¿æ»¤IDï¼{item},è·³è¿è¯¥IDå 容"); Log4netService.Debug($"ãæ¨¡æ¿æä½ãåå¨è¿æ»¤IDï¼{item},è·³è¿è¯¥IDå 容ï¼{dr["MsgContent"]}"); } } } } } ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/bin/Debug/App.config
@@ -2,9 +2,12 @@ <configuration> <connectionStrings> <!--<add name="ConnectionString" connectionString="server=.;uid=yzm;pwd=zjunmedia587GM$$;database=smsdb" providerName="System.Data.SqlClient"/>--> <add name="ConnectionString" connectionString="server=.;uid=sa;pwd=123456;database=smsdb" providerName="System.Data.SqlClient"/> <add name="ConnectionString" connectionString="Data Source=DESKTOP-MMFLSTG;Initial Catalog=smsdb;Integrated Security=True" providerName="System.Data.SqlClient"/> </connectionStrings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <appSettings> <add key="OutUserid" value="12856,11"/> </appSettings> </configuration> ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/bin/Debug/AutoCheckSMS.exeBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/bin/Debug/AutoCheckSMS.exe.config
@@ -2,9 +2,12 @@ <configuration> <connectionStrings> <!--<add name="ConnectionString" connectionString="server=.;uid=yzm;pwd=zjunmedia587GM$$;database=smsdb" providerName="System.Data.SqlClient"/>--> <add name="ConnectionString" connectionString="server=.;uid=sa;pwd=123456;database=smsdb" providerName="System.Data.SqlClient"/> <add name="ConnectionString" connectionString="Data Source=DESKTOP-MMFLSTG;Initial Catalog=smsdb;Integrated Security=True" providerName="System.Data.SqlClient"/> </connectionStrings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <appSettings> <add key="OutUserid" value="12856,11"/> </appSettings> </configuration> ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/bin/Debug/AutoCheckSMS.pdbBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/bin/Debug/logs/Error2021-07-12.log
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/bin/Debug/logs/app2021-07-12.log
New file @@ -0,0 +1,15 @@ 2021-07-12 15:43:46,750 [1] DEBUG RollingFileLog - å 载模æ¿...263 2021-07-12 15:43:46,823 [5] DEBUG RollingFileLog - 模æ¿å¤ç线ç¨å¯å¨...线ç¨ID:5 2021-07-12 15:43:46,824 [5] DEBUG RollingFileLog - 模æ¿å¤ç 2021-07-12 15:43:46,832 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:43:56,839 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:44:06,849 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:44:16,858 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:44:26,866 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:44:36,882 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:44:46,890 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:44:51,996 [5] DEBUG RollingFileLog - 模æ¿å¤ç 2021-07-12 15:44:56,899 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:45:06,910 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:45:16,922 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 2021-07-12 15:45:26,928 [4] DEBUG RollingFileLog - è·åå¾ å®¡æ ¸çè®°å½:0 ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/obj/Debug/AutoCheckSMS.csproj.CoreCompileInputs.cache
@@ -1 +1 @@ cf16ffa1ea37edaa8cf2978f10377312566fe503 241fe42e299de88b264a7708adbb51e2dd6146e9 ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/obj/Debug/AutoCheckSMS.csproj.FileListAbsolute.txt
@@ -24,3 +24,29 @@ C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\log4net.config C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\log4net.dll C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\log4net.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\App.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\log4net.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\AutoCheckSMS.exe.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\AutoCheckSMS.exe D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\AutoCheckSMS.pdb D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\log4net.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.ServiceLocation.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.Configuration.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.Interception.Configuration.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.Interception.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\log4net.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.ServiceLocation.pdb D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.ServiceLocation.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.Configuration.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.Interception.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\bin\Debug\Microsoft.Practices.Unity.Interception.Configuration.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\obj\Debug\AutoCheckSMS.csproj.CoreCompileInputs.cache D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\obj\Debug\AutoCheckSMS.csproj.CopyComplete D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\obj\Debug\AutoCheckSMS.exe D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\AutoCheckSMS\obj\Debug\AutoCheckSMS.pdb ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/obj/Debug/AutoCheckSMS.exeBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/obj/Debug/AutoCheckSMS.pdbBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/AutoCheckSMS/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cacheBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/bin/Debug/Test.exeBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/bin/Debug/Test.pdbBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cacheBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/obj/Debug/Test.csproj.AssemblyReference.cacheBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/obj/Debug/Test.csproj.FileListAbsolute.txt
@@ -5,3 +5,10 @@ C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\Test\obj\Debug\Test.exe C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\Test\obj\Debug\Test.pdb C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\Test\obj\Debug\Test.csprojAssemblyReference.cache D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\Test\bin\Debug\Test.exe.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\Test\bin\Debug\Test.exe D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\Test\bin\Debug\Test.pdb D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\Test\obj\Debug\Test.csprojAssemblyReference.cache D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\Test\obj\Debug\Test.csproj.CoreCompileInputs.cache D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\Test\obj\Debug\Test.exe D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\Test\obj\Debug\Test.pdb ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/obj/Debug/Test.csprojAssemblyReference.cacheBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/obj/Debug/Test.exeBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/Test/obj/Debug/Test.pdbBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/App.config
@@ -2,7 +2,7 @@ <configuration> <connectionStrings> <!--<add name="ConnectionString" connectionString="server=.;uid=yzm;pwd=zjunmedia587GM$$;database=smsdb" providerName="System.Data.SqlClient"/>--> <add name="ConnectionString" connectionString="server=.;uid=sa;pwd=123456;database=smsdb" providerName="System.Data.SqlClient"/> <add name="ConnectionString" connectionString="Data Source=DESKTOP-MMFLSTG;Initial Catalog=smsdb;Integrated Security=True" providerName="System.Data.SqlClient"/> </connectionStrings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/App.configBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/AutoCheckSMS.exeBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/AutoCheckSMS.exe.configBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/AutoCheckSMS.pdbBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/Microsoft.Practices.ServiceLocation.xmlBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/Microsoft.Practices.Unity.Interception.xmlBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/TestTemplate.exeBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/TestTemplate.exe.config
@@ -2,7 +2,7 @@ <configuration> <connectionStrings> <!--<add name="ConnectionString" connectionString="server=.;uid=yzm;pwd=zjunmedia587GM$$;database=smsdb" providerName="System.Data.SqlClient"/>--> <add name="ConnectionString" connectionString="server=.;uid=sa;pwd=123456;database=smsdb" providerName="System.Data.SqlClient"/> <add name="ConnectionString" connectionString="Data Source=DESKTOP-MMFLSTG;Initial Catalog=smsdb;Integrated Security=True" providerName="System.Data.SqlClient"/> </connectionStrings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/TestTemplate.pdbBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/bin/Debug/log4net.xml
Diff too large ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cacheBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/obj/Debug/TestTemplate.csproj.AssemblyReference.cacheBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/obj/Debug/TestTemplate.csproj.CoreCompileInputs.cache
@@ -1 +1 @@ a99203b17f1c99a90226b37b308bb31b79490da3 7a82d43fc49ece2595b02ec058f9013e7b9695ad ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/obj/Debug/TestTemplate.csproj.FileListAbsolute.txt
@@ -24,3 +24,29 @@ C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.csproj.CopyComplete C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.exe C:\Users\Administrator\Desktop\Archives\Repos\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.pdb D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\log4net.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\App.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\TestTemplate.exe.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\TestTemplate.exe D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\TestTemplate.pdb D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\AutoCheckSMS.exe D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\log4net.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.ServiceLocation.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.Unity.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.Unity.Interception.dll D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\AutoCheckSMS.pdb D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\AutoCheckSMS.exe.config D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\log4net.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.ServiceLocation.pdb D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.ServiceLocation.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.Unity.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\bin\Debug\Microsoft.Practices.Unity.Interception.xml D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.csprojAssemblyReference.cache D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.csproj.CoreCompileInputs.cache D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.csproj.CopyComplete D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.exe D:\Company\izjun\æéªå¹³å°èªå¨å®¡æ ¸\TestTemplate\obj\Debug\TestTemplate.pdb ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/obj/Debug/TestTemplate.csprojAssemblyReference.cacheBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/obj/Debug/TestTemplate.exeBinary files differ
ÕÆ¿¥Æ½Ì¨×Ô¶¯ÉóºË/TestTemplate/obj/Debug/TestTemplate.pdbBinary files differ