From 2b322542f13b09c7708a6910205c754911bbf211 Mon Sep 17 00:00:00 2001 From: ChiKyun Kim Date: Tue, 15 Jul 2025 09:56:28 +0900 Subject: [PATCH] warn clear --- .gitignore | 7 +- Project/EETGW.csproj | 1 - Project/Pub.cs | 2 +- Project/Web/StartupSSE.cs | 101 ------------------ Project/_Common/fUserList.cs | 2 +- Project/fMain.cs | 1 - .../.vs/StaffLayoutCtl.csproj.dtbcache.json | 2 +- Sub/YARTE/.vs/YARTE.csproj.dtbcache.json | 2 +- .../.vs/UMSControl.csproj.dtbcache.json | 2 +- .../FBS0000/.vs/FBS0000.csproj.dtbcache.json | 2 +- SubProject/FBS0000/Holiday/rHolidaySummary.cs | 19 +--- .../FCM0000/.vs/FCM0000.csproj.dtbcache.json | 2 +- SubProject/FCM0000/fCode.cs | 2 +- .../FEQ0000/.vs/FEQ0000.csproj.dtbcache.json | 2 +- SubProject/FEQ0000/PurchaseCR/fPurchaseCR.cs | 6 +- SubProject/FEQ0000/PurchaseEB/fPurchaseEB.cs | 4 +- SubProject/FEQ0000/PurchaseNR/fPurchaseNR.cs | 3 - SubProject/FEQ0000/fUserExportColumn.cs | 2 +- .../FPJ0000/.vs/FPJ0000.csproj.dtbcache.json | 2 +- .../FPJ0000/JobReport_/fJobChartMenu.cs | 4 +- .../JobReport_/fJobProcessSelect.Designer.cs | 1 - .../FPJ0000/JobReport_/rJobReportPrj.cs | 6 +- .../OtConfirm/fOTConfirmValue.Designer.cs | 3 - .../Project/fProjectPartToPurchaseCR.cs | 4 +- SubProject/FPJ0000/SaveCost/fSaveCostList.cs | 61 +++++------ SubProject/FPJ0000/fMailSend.Designer.cs | 1 - 26 files changed, 53 insertions(+), 191 deletions(-) delete mode 100644 Project/Web/StartupSSE.cs diff --git a/.gitignore b/.gitignore index a1264d9..5ddd95a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,5 @@ bin obj *.suo -/.vs/EETGW/v15/Server/sqlite3 -/packages -/.vs/EETGW -/SubProject/FCOMMON/.vs -/DBMigration/.vs/DBMigration +.vs +packages diff --git a/Project/EETGW.csproj b/Project/EETGW.csproj index 240e29c..76a3985 100644 --- a/Project/EETGW.csproj +++ b/Project/EETGW.csproj @@ -412,7 +412,6 @@ - diff --git a/Project/Pub.cs b/Project/Pub.cs index 97c9dba..13caf4a 100644 --- a/Project/Pub.cs +++ b/Project/Pub.cs @@ -99,7 +99,7 @@ namespace Project InitWebView = 1; } - catch (Exception ex) + catch { InitWebView = 2; } diff --git a/Project/Web/StartupSSE.cs b/Project/Web/StartupSSE.cs deleted file mode 100644 index 0d0cece..0000000 --- a/Project/Web/StartupSSE.cs +++ /dev/null @@ -1,101 +0,0 @@ -using Microsoft.Owin; -using Owin; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Threading.Tasks; -using System.Web.Http; - -namespace Project.OWIN -{ - public class StartupSSE - { - - - public void Configuration(IAppBuilder app) - { - var api = new Api(); - app.Run(context => api.Invoke(context)); - } - - public class Subscriber - { - private StreamWriter _writer; - private TaskCompletionSource _tcs; - public Subscriber(Stream body, TaskCompletionSource tcs) - { - this._writer = new StreamWriter(body); - this._tcs = tcs; - } - - public async void WriteAsync(string message) - { - try - { - _writer.Write(message); - _writer.Flush(); - } - catch (Exception e) - { - if (e.HResult == -2146232800) // non-existent connection - _tcs.SetResult(true); - else - _tcs.SetException(e); - } - } - } - - public class Api - { - System.Timers.Timer _timer = new System.Timers.Timer(500); - List _subscribers = new List(); - public Api() - { - _timer.Elapsed += _timer_Elapsed; - } - - void _timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) - { - UpdateSubscribers(); - } - - public void UpdateSubscribers() - { - Console.WriteLine("updating {0} subscribers", _subscribers.Count); - var subscribersCopy = _subscribers.ToList(); - var msg = String.Format("Hello async at {0}\n", DateTime.Now); - subscribersCopy.ForEach(w => w.WriteAsync(msg)); - _timer.Start(); - } - - - public Task Invoke(IOwinContext context) - { - SetEventHeaders(context); - System.IO.Stream responseStream = context.Environment["owin.ResponseBody"] as Stream; - var tcs = new TaskCompletionSource(); - var s = CreateSubscriber(responseStream, tcs); - tcs.Task.ContinueWith(_ => _subscribers.Remove(s)); - Console.WriteLine("Add subscriber. Now have {0}", _subscribers.Count); - s.WriteAsync("Registered\n"); - _timer.Start(); - return tcs.Task; - } - - private Subscriber CreateSubscriber(System.IO.Stream responseStream, TaskCompletionSource tcs) - { - var s = new Subscriber(responseStream, tcs); - _subscribers.Add(s); - return s; - } - - private static void SetEventHeaders(IOwinContext context) - { - context.Response.ContentType = "text/eventstream"; - context.Response.Headers["Transfer-Encoding"] = "chunked"; - context.Response.Headers["cache-control"] = "no-cache"; - } - } - } -} diff --git a/Project/_Common/fUserList.cs b/Project/_Common/fUserList.cs index 1bf9de1..a589f3d 100644 --- a/Project/_Common/fUserList.cs +++ b/Project/_Common/fUserList.cs @@ -44,7 +44,7 @@ namespace Project._Common bs.Filter = filter; tbFind.BackColor = Color.Lime; } - catch (Exception ex) + catch { bs.Filter = ""; tbFind.BackColor = Color.Tomato; diff --git a/Project/fMain.cs b/Project/fMain.cs index 13ba22f..cb263cc 100644 --- a/Project/fMain.cs +++ b/Project/fMain.cs @@ -17,7 +17,6 @@ namespace Project public partial class fMain : fBase { string SearchKey = string.Empty; - ServiceHost host; private IDisposable webApp; bool webok = false; diff --git a/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json b/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json index 1459213..3b0607f 100644 --- a/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json +++ b/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\StaffLayoutCtl","ProjectFileName":"StaffLayoutCtl.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"grid.cs"},{"SourceFile":"grid.Designer.cs"},{"SourceFile":"Item.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\StaffLayoutCtl\\bin\\Debug\\StaffLayoutCtl.dll","OutputItemRelativePath":"StaffLayoutCtl.dll"},{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\StaffLayoutCtl\\bin\\Debug\\StaffLayoutCtl.pdb","OutputItemRelativePath":"StaffLayoutCtl.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\StaffLayoutCtl","ProjectFileName":"StaffLayoutCtl.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"grid.cs"},{"SourceFile":"grid.Designer.cs"},{"SourceFile":"Item.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\StaffLayoutCtl\\bin\\Debug\\StaffLayoutCtl.dll","OutputItemRelativePath":"StaffLayoutCtl.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/Sub/YARTE/.vs/YARTE.csproj.dtbcache.json b/Sub/YARTE/.vs/YARTE.csproj.dtbcache.json index 5615436..69f3e69 100644 --- a/Sub/YARTE/.vs/YARTE.csproj.dtbcache.json +++ b/Sub/YARTE/.vs/YARTE.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE","ProjectFileName":"YARTE.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Buttons\\BoldButton.cs"},{"SourceFile":"Buttons\\CheckboxButton.cs"},{"SourceFile":"Buttons\\ForecolorButton.cs"},{"SourceFile":"Buttons\\IButton.cs"},{"SourceFile":"Buttons\\IFunctionButton.cs"},{"SourceFile":"Buttons\\IHTMLEditorButton.cs"},{"SourceFile":"Buttons\\InsertLinkedImageButton.cs"},{"SourceFile":"Buttons\\ItalicButton.cs"},{"SourceFile":"Buttons\\JustifyCenterButton.cs"},{"SourceFile":"Buttons\\JustifyLeftButton.cs"},{"SourceFile":"Buttons\\JustifyRightButton.cs"},{"SourceFile":"Buttons\\LinkButton.cs"},{"SourceFile":"Buttons\\OrderedListButton.cs"},{"SourceFile":"Buttons\\PredefinedButtonSets.cs"},{"SourceFile":"Buttons\\ReadOnlyButton.cs"},{"SourceFile":"Buttons\\UnderlineButton.cs"},{"SourceFile":"Buttons\\UnlinkButton.cs"},{"SourceFile":"Buttons\\UnorderedListButton.cs"},{"SourceFile":"CheckboxItem.cs"},{"SourceFile":"HtmlEditor.cs"},{"SourceFile":"HTMLEditor.Designer.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.VisualBasic.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","OutputItemRelativePath":"YARTE.dll"},{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.pdb","OutputItemRelativePath":"YARTE.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE","ProjectFileName":"YARTE.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Buttons\\BoldButton.cs"},{"SourceFile":"Buttons\\CheckboxButton.cs"},{"SourceFile":"Buttons\\ForecolorButton.cs"},{"SourceFile":"Buttons\\IButton.cs"},{"SourceFile":"Buttons\\IFunctionButton.cs"},{"SourceFile":"Buttons\\IHTMLEditorButton.cs"},{"SourceFile":"Buttons\\InsertLinkedImageButton.cs"},{"SourceFile":"Buttons\\ItalicButton.cs"},{"SourceFile":"Buttons\\JustifyCenterButton.cs"},{"SourceFile":"Buttons\\JustifyLeftButton.cs"},{"SourceFile":"Buttons\\JustifyRightButton.cs"},{"SourceFile":"Buttons\\LinkButton.cs"},{"SourceFile":"Buttons\\OrderedListButton.cs"},{"SourceFile":"Buttons\\PredefinedButtonSets.cs"},{"SourceFile":"Buttons\\ReadOnlyButton.cs"},{"SourceFile":"Buttons\\UnderlineButton.cs"},{"SourceFile":"Buttons\\UnlinkButton.cs"},{"SourceFile":"Buttons\\UnorderedListButton.cs"},{"SourceFile":"CheckboxItem.cs"},{"SourceFile":"HtmlEditor.cs"},{"SourceFile":"HTMLEditor.Designer.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.VisualBasic.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","OutputItemRelativePath":"YARTE.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SubProject/CMSControl/.vs/UMSControl.csproj.dtbcache.json b/SubProject/CMSControl/.vs/UMSControl.csproj.dtbcache.json index 6af9ffb..09b81d0 100644 --- a/SubProject/CMSControl/.vs/UMSControl.csproj.dtbcache.json +++ b/SubProject/CMSControl/.vs/UMSControl.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\CMSControl","ProjectFileName":"UMSControl.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"cmsview.cs"},{"SourceFile":"EventArgs.cs"},{"SourceFile":"Item.cs"},{"SourceFile":"Slot.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\CMSControl\\bin\\Debug\\UMSControl.dll","OutputItemRelativePath":"UMSControl.dll"},{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\CMSControl\\bin\\Debug\\UMSControl.pdb","OutputItemRelativePath":"UMSControl.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\CMSControl","ProjectFileName":"UMSControl.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"cmsview.cs"},{"SourceFile":"EventArgs.cs"},{"SourceFile":"Item.cs"},{"SourceFile":"Slot.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\CMSControl\\bin\\Debug\\UMSControl.dll","OutputItemRelativePath":"UMSControl.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SubProject/FBS0000/.vs/FBS0000.csproj.dtbcache.json b/SubProject/FBS0000/.vs/FBS0000.csproj.dtbcache.json index 42e9d39..9b042a8 100644 --- a/SubProject/FBS0000/.vs/FBS0000.csproj.dtbcache.json +++ b/SubProject/FBS0000/.vs/FBS0000.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FBS0000","ProjectFileName":"FBS0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"dsMSSQL.cs"},{"SourceFile":"dsMSSQL.Designer.cs"},{"SourceFile":"dsReport.cs"},{"SourceFile":"dsReport.Designer.cs"},{"SourceFile":"EETGW_HolydayRequest.cs"},{"SourceFile":"fLovWorkUser.cs"},{"SourceFile":"fLovWorkUser.Designer.cs"},{"SourceFile":"Holiday\\fErrorChk.cs"},{"SourceFile":"Holiday\\fErrorChk.Designer.cs"},{"SourceFile":"Holiday\\fyeonchastate.cs"},{"SourceFile":"Holiday\\fyeonchastate.Designer.cs"},{"SourceFile":"Holiday\\fHolyDayDataSum.cs"},{"SourceFile":"Holiday\\fHolyDayDataSum.Designer.cs"},{"SourceFile":"Holiday\\fImpKunTae.cs"},{"SourceFile":"Holiday\\fImpKunTae.Designer.cs"},{"SourceFile":"Holiday\\fWorkTableUser.cs"},{"SourceFile":"Holiday\\fWorkTableUser.Designer.cs"},{"SourceFile":"Holiday\\fHolyDayData.cs"},{"SourceFile":"Holiday\\fHolyDayData.Designer.cs"},{"SourceFile":"Holiday\\WorkTable.cs"},{"SourceFile":"Holiday\\WorkTable.Designer.cs"},{"SourceFile":"Holiday\\fHolydayJobReport.cs"},{"SourceFile":"Holiday\\fHolydayJobReport.Designer.cs"},{"SourceFile":"Holiday\\fHolyday.cs"},{"SourceFile":"Holiday\\fHolyday.Designer.cs"},{"SourceFile":"fMinutes.cs"},{"SourceFile":"fMinutes.Designer.cs"},{"SourceFile":"fMinutesDetail.cs"},{"SourceFile":"fMinutesDetail.Designer.cs"},{"SourceFile":"Holiday\\fHolyday_Add.cs"},{"SourceFile":"Holiday\\fHolyday_Add.Designer.cs"},{"SourceFile":"Holyday.cs"},{"SourceFile":"JobReport.cs"},{"SourceFile":"Model_BS0000.Context.cs"},{"SourceFile":"Model_BS0000.cs"},{"SourceFile":"Model_BS0000.Designer.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Holiday\\rHolidaySummary.cs"},{"SourceFile":"Holiday\\rHolidaySummary.Designer.cs"},{"SourceFile":"Users.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FBS0000\\bin\\Debug\\CarlosAg.ExcelXmlWriter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net45\\EntityFramework.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net45\\EntityFramework.SqlServer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FBS0000\\bin\\Debug\\FBS0000.exe","OutputItemRelativePath":"FBS0000.exe"},{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FBS0000\\bin\\Debug\\FBS0000.pdb","OutputItemRelativePath":"FBS0000.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FBS0000","ProjectFileName":"FBS0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"dsMSSQL.cs"},{"SourceFile":"dsMSSQL.Designer.cs"},{"SourceFile":"dsReport.cs"},{"SourceFile":"dsReport.Designer.cs"},{"SourceFile":"fLovWorkUser.cs"},{"SourceFile":"fLovWorkUser.Designer.cs"},{"SourceFile":"Holiday\\fTimeTransfer.cs"},{"SourceFile":"Holiday\\fTimeTransfer.Designer.cs"},{"SourceFile":"Holiday\\fErrorChk.cs"},{"SourceFile":"Holiday\\fErrorChk.Designer.cs"},{"SourceFile":"Holiday\\fyeonchastate.cs"},{"SourceFile":"Holiday\\fyeonchastate.Designer.cs"},{"SourceFile":"Holiday\\fHolyDayDataSum.cs"},{"SourceFile":"Holiday\\fHolyDayDataSum.Designer.cs"},{"SourceFile":"Holiday\\fImpKunTae.cs"},{"SourceFile":"Holiday\\fImpKunTae.Designer.cs"},{"SourceFile":"Holiday\\fWorkTableUser.cs"},{"SourceFile":"Holiday\\fWorkTableUser.Designer.cs"},{"SourceFile":"Holiday\\fHolyDayData.cs"},{"SourceFile":"Holiday\\fHolyDayData.Designer.cs"},{"SourceFile":"Holiday\\WorkTable.cs"},{"SourceFile":"Holiday\\WorkTable.Designer.cs"},{"SourceFile":"Holiday\\fHolydayJobReport.cs"},{"SourceFile":"Holiday\\fHolydayJobReport.Designer.cs"},{"SourceFile":"Holiday\\fHolyday.cs"},{"SourceFile":"Holiday\\fHolyday.Designer.cs"},{"SourceFile":"fMinutes.cs"},{"SourceFile":"fMinutes.Designer.cs"},{"SourceFile":"fMinutesDetail.cs"},{"SourceFile":"fMinutesDetail.Designer.cs"},{"SourceFile":"Holiday\\fHolyday_Add.cs"},{"SourceFile":"Holiday\\fHolyday_Add.Designer.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Holiday\\rHolidaySummary.cs"},{"SourceFile":"Holiday\\rHolidaySummary.Designer.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\arCommUtil.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll"},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FBS0000\\bin\\Debug\\CarlosAg.ExcelXmlWriter.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net45\\EntityFramework.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net45\\EntityFramework.SqlServer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe"},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll"},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FBS0000\\bin\\Debug\\FBS0000.exe","OutputItemRelativePath":"FBS0000.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SubProject/FBS0000/Holiday/rHolidaySummary.cs b/SubProject/FBS0000/Holiday/rHolidaySummary.cs index 4bcd152..96b7257 100644 --- a/SubProject/FBS0000/Holiday/rHolidaySummary.cs +++ b/SubProject/FBS0000/Holiday/rHolidaySummary.cs @@ -43,25 +43,8 @@ namespace FBS0000 //데이터를 재 집계한다. this.dsReport.holydatasum.Clear(); - //1월1일년차데이터는 이월로 변경한다.. - //var 이월데이터 = dsReport.holydata.Where(t => t.cate.StartsWith("이월") == false && t.cate.Contains("이월")).ToList(); - //foreach (var dr in 이월데이터) - //{ - // var basecate = dr.cate.Split('-')[0].Trim(); - // dr.cate = basecate; - // dr.iwol = true; - - //} - - var grp_user = dsReport.holydata.GroupBy(t => t.uid).ToList(); - var sum_drday = 0.0; - var sum_crday = 0.0; - var sum_addday = 0.0; - var sum_janday = 0.0; - var sum_iwol = 0.0; - - + foreach (var grp in grp_user) { //cate group diff --git a/SubProject/FCM0000/.vs/FCM0000.csproj.dtbcache.json b/SubProject/FCM0000/.vs/FCM0000.csproj.dtbcache.json index 7c3be0f..8528a46 100644 --- a/SubProject/FCM0000/.vs/FCM0000.csproj.dtbcache.json +++ b/SubProject/FCM0000/.vs/FCM0000.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCM0000","ProjectFileName":"FCM0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Board\\fPatchList.cs"},{"SourceFile":"Board\\fPatchList.Designer.cs"},{"SourceFile":"DSMail.Designer.cs"},{"SourceFile":"dsMSSQL.cs"},{"SourceFile":"DSPMP.Designer.cs"},{"SourceFile":"DSReport.cs"},{"SourceFile":"DSUser.Designer.cs"},{"SourceFile":"Form2.cs"},{"SourceFile":"Form2.Designer.cs"},{"SourceFile":"fSIDListSelect.cs"},{"SourceFile":"fSIDListSelect.Designer.cs"},{"SourceFile":"Item\\fItemEdit.cs"},{"SourceFile":"Item\\fItemEdit.Designer.cs"},{"SourceFile":"Mail\\fAutoSendSetting.cs"},{"SourceFile":"Mail\\fAutoSendSetting.Designer.cs"},{"SourceFile":"Mail\\fMailAutoAdd.cs"},{"SourceFile":"Mail\\fMailAutoAdd.Designer.cs"},{"SourceFile":"Mail\\fMailBackup.cs"},{"SourceFile":"Mail\\fMailBackup.Designer.cs"},{"SourceFile":"Mail\\fJRForm.cs"},{"SourceFile":"Mail\\fJRForm.Designer.cs"},{"SourceFile":"Mail\\fMailList.cs"},{"SourceFile":"Mail\\fMailList.Designer.cs"},{"SourceFile":"Mail\\fSendMail.cs"},{"SourceFile":"Mail\\fSendMail.Designer.cs"},{"SourceFile":"Board\\fRequestItem.cs"},{"SourceFile":"Board\\fRequestItem.Designer.cs"},{"SourceFile":"Board\\fRequestItem_Add.cs"},{"SourceFile":"Board\\fRequestItem_Add.Designer.cs"},{"SourceFile":"DSInventory.Designer.cs"},{"SourceFile":"dsMSSQL.Designer.cs"},{"SourceFile":"DSQuery.Designer.cs"},{"SourceFile":"DSReport.Designer.cs"},{"SourceFile":"fCode.cs"},{"SourceFile":"fCode.Designer.cs"},{"SourceFile":"Inventory\\fInventoryJagoList.cs"},{"SourceFile":"Inventory\\fInventoryJagoList.Designer.cs"},{"SourceFile":"Inventory\\finventoryAdd.cs"},{"SourceFile":"Inventory\\finventoryAdd.Designer.cs"},{"SourceFile":"Inventory\\fInventoryJagoPlace.cs"},{"SourceFile":"Inventory\\fInventoryJagoPlace.Designer.cs"},{"SourceFile":"User\\fLovUser.cs"},{"SourceFile":"User\\fLovUser.Designer.cs"},{"SourceFile":"Item\\fItemAdd.cs"},{"SourceFile":"Item\\fItemAdd.Designer.cs"},{"SourceFile":"User\\fUserAuth.cs"},{"SourceFile":"User\\fUserAuth.Designer.cs"},{"SourceFile":"User\\fUserGroup.cs"},{"SourceFile":"User\\fUserGroup.Designer.cs"},{"SourceFile":"User\\fUserGroupDev.cs"},{"SourceFile":"User\\fUserGroupDev.Designer.cs"},{"SourceFile":"fCustoms.cs"},{"SourceFile":"fCustoms.Designer.cs"},{"SourceFile":"User\\fUserGroupPermission.cs"},{"SourceFile":"User\\fUserGroupPermission.Designer.cs"},{"SourceFile":"Inventory\\fInventoryUser.cs"},{"SourceFile":"Inventory\\fInventoryUser.Designer.cs"},{"SourceFile":"Inventory\\fInventory.cs"},{"SourceFile":"Inventory\\fInventory.Designer.cs"},{"SourceFile":"Item\\fItems.cs"},{"SourceFile":"Item\\fItems.Designer.cs"},{"SourceFile":"fHolidaytable.cs"},{"SourceFile":"fHolidaytable.Designer.cs"},{"SourceFile":"Item\\fLovOneItem.cs"},{"SourceFile":"Item\\fLovOneItem.Designer.cs"},{"SourceFile":"fLovSupply.cs"},{"SourceFile":"fLovSupply.Designer.cs"},{"SourceFile":"fLovProject.cs"},{"SourceFile":"fLovProject.Designer.cs"},{"SourceFile":"Item\\fLovItem.cs"},{"SourceFile":"Item\\fLovItem.Designer.cs"},{"SourceFile":"Mail\\fMailform.cs"},{"SourceFile":"Mail\\fMailform.Designer.cs"},{"SourceFile":"Customer_Import.cs"},{"SourceFile":"Customer_Import.Designer.cs"},{"SourceFile":"fMaterial_Import.cs"},{"SourceFile":"fMaterial_Import.Designer.cs"},{"SourceFile":"fSelectDate.cs"},{"SourceFile":"fSelectDate.Designer.cs"},{"SourceFile":"Inventory\\RepInvStockUser.cs"},{"SourceFile":"Inventory\\RepInvStockUser.Designer.cs"},{"SourceFile":"Inventory\\RepInvStock.cs"},{"SourceFile":"Inventory\\RepInvStock.Designer.cs"},{"SourceFile":"MethodExtentions.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"FPUtil.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetSpell.2.1.7\\lib\\NetSpell.SpellChecker.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\PrintRichTextBox.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\RichTextBoxEx.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","OutputItemRelativePath":"FCM0000.exe"},{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.pdb","OutputItemRelativePath":"FCM0000.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000","ProjectFileName":"FCM0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Board\\fPatchList.cs"},{"SourceFile":"Board\\fPatchList.Designer.cs"},{"SourceFile":"DSMail.Designer.cs"},{"SourceFile":"dsMSSQL.cs"},{"SourceFile":"DSReport.cs"},{"SourceFile":"DSUser.Designer.cs"},{"SourceFile":"Form2.cs"},{"SourceFile":"Form2.Designer.cs"},{"SourceFile":"fSIDListSelect.cs"},{"SourceFile":"fSIDListSelect.Designer.cs"},{"SourceFile":"Item\\fItemEdit.cs"},{"SourceFile":"Item\\fItemEdit.Designer.cs"},{"SourceFile":"Mail\\fAutoSendSetting.cs"},{"SourceFile":"Mail\\fAutoSendSetting.Designer.cs"},{"SourceFile":"Mail\\fMailAutoAdd.cs"},{"SourceFile":"Mail\\fMailAutoAdd.Designer.cs"},{"SourceFile":"Mail\\fMailBackup.cs"},{"SourceFile":"Mail\\fMailBackup.Designer.cs"},{"SourceFile":"Mail\\fJRForm.cs"},{"SourceFile":"Mail\\fJRForm.Designer.cs"},{"SourceFile":"Mail\\fMailList.cs"},{"SourceFile":"Mail\\fMailList.Designer.cs"},{"SourceFile":"Mail\\fSendMail.cs"},{"SourceFile":"Mail\\fSendMail.Designer.cs"},{"SourceFile":"Board\\fRequestItem.cs"},{"SourceFile":"Board\\fRequestItem.Designer.cs"},{"SourceFile":"Board\\fRequestItem_Add.cs"},{"SourceFile":"Board\\fRequestItem_Add.Designer.cs"},{"SourceFile":"DSInventory.Designer.cs"},{"SourceFile":"dsMSSQL.Designer.cs"},{"SourceFile":"DSQuery.Designer.cs"},{"SourceFile":"DSReport.Designer.cs"},{"SourceFile":"fCode.cs"},{"SourceFile":"fCode.Designer.cs"},{"SourceFile":"Inventory\\fInventoryJagoList.cs"},{"SourceFile":"Inventory\\fInventoryJagoList.Designer.cs"},{"SourceFile":"Inventory\\finventoryAdd.cs"},{"SourceFile":"Inventory\\finventoryAdd.Designer.cs"},{"SourceFile":"Inventory\\fInventoryJagoPlace.cs"},{"SourceFile":"Inventory\\fInventoryJagoPlace.Designer.cs"},{"SourceFile":"User\\fLovUser.cs"},{"SourceFile":"User\\fLovUser.Designer.cs"},{"SourceFile":"Item\\fItemAdd.cs"},{"SourceFile":"Item\\fItemAdd.Designer.cs"},{"SourceFile":"User\\fUserAuth.cs"},{"SourceFile":"User\\fUserAuth.Designer.cs"},{"SourceFile":"User\\fUserGroup.cs"},{"SourceFile":"User\\fUserGroup.Designer.cs"},{"SourceFile":"User\\fUserGroupDev.cs"},{"SourceFile":"User\\fUserGroupDev.Designer.cs"},{"SourceFile":"fCustoms.cs"},{"SourceFile":"fCustoms.Designer.cs"},{"SourceFile":"User\\fUserGroupPermission.cs"},{"SourceFile":"User\\fUserGroupPermission.Designer.cs"},{"SourceFile":"Inventory\\fInventoryUser.cs"},{"SourceFile":"Inventory\\fInventoryUser.Designer.cs"},{"SourceFile":"Inventory\\fInventory.cs"},{"SourceFile":"Inventory\\fInventory.Designer.cs"},{"SourceFile":"Item\\fItems.cs"},{"SourceFile":"Item\\fItems.Designer.cs"},{"SourceFile":"fHolidaytable.cs"},{"SourceFile":"fHolidaytable.Designer.cs"},{"SourceFile":"Item\\fLovOneItem.cs"},{"SourceFile":"Item\\fLovOneItem.Designer.cs"},{"SourceFile":"fLovSupply.cs"},{"SourceFile":"fLovSupply.Designer.cs"},{"SourceFile":"fLovProject.cs"},{"SourceFile":"fLovProject.Designer.cs"},{"SourceFile":"Item\\fLovItem.cs"},{"SourceFile":"Item\\fLovItem.Designer.cs"},{"SourceFile":"Mail\\fMailform.cs"},{"SourceFile":"Mail\\fMailform.Designer.cs"},{"SourceFile":"Customer_Import.cs"},{"SourceFile":"Customer_Import.Designer.cs"},{"SourceFile":"fMaterial_Import.cs"},{"SourceFile":"fMaterial_Import.Designer.cs"},{"SourceFile":"fSelectDate.cs"},{"SourceFile":"fSelectDate.Designer.cs"},{"SourceFile":"Inventory\\RepInvStockUser.cs"},{"SourceFile":"Inventory\\RepInvStockUser.Designer.cs"},{"SourceFile":"Inventory\\RepInvStock.cs"},{"SourceFile":"Inventory\\RepInvStock.Designer.cs"},{"SourceFile":"MethodExtentions.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"FPUtil.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll"},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll"},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetSpell.2.1.7\\lib\\NetSpell.SpellChecker.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\PrintRichTextBox.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\RichTextBoxEx.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll"}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","OutputItemRelativePath":"FCM0000.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SubProject/FCM0000/fCode.cs b/SubProject/FCM0000/fCode.cs index 987bb35..9429382 100644 --- a/SubProject/FCM0000/fCode.cs +++ b/SubProject/FCM0000/fCode.cs @@ -324,7 +324,7 @@ namespace FCM0000 bs.Filter = filter.Replace("{0}", text); tbFind.BackColor = Color.Lime; } - catch (System.Exception ex) + catch { tbFind.BackColor = Color.Tomato; } diff --git a/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json b/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json index b68ca52..307aebb 100644 --- a/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json +++ b/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FEQ0000","ProjectFileName":"FEQ0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"DataBaseManager.cs"},{"SourceFile":"DataClasses1.designer.cs"},{"SourceFile":"dsEQ.cs"},{"SourceFile":"dsEQ.Designer.cs"},{"SourceFile":"DSPrj.Designer.cs"},{"SourceFile":"dsPurchase.cs"},{"SourceFile":"dsPurchase.Designer.cs"},{"SourceFile":"EEDataSet.Designer.cs"},{"SourceFile":"Equipment\\EQFilterApply.cs"},{"SourceFile":"Equipment\\EQFilterApply.Designer.cs"},{"SourceFile":"Equipment\\EQfilterManager.cs"},{"SourceFile":"Equipment\\EQfilterManager.Designer.cs"},{"SourceFile":"Equipment\\fEquipment.cs"},{"SourceFile":"Equipment\\fEquipment.Designer.cs"},{"SourceFile":"Equipment\\fImpEquipment.cs"},{"SourceFile":"Equipment\\fImpEquipment.Designer.cs"},{"SourceFile":"Equipment\\rpt_equipmentAll.cs"},{"SourceFile":"Equipment\\rpt_equipmentAll.Designer.cs"},{"SourceFile":"fColumnFilter.cs"},{"SourceFile":"fColumnFilter.Designer.cs"},{"SourceFile":"fItemin.cs"},{"SourceFile":"fItemin.Designer.cs"},{"SourceFile":"fUserExportColumn.cs"},{"SourceFile":"fUserExportColumn.Designer.cs"},{"SourceFile":"MethodExtentions.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR.Designer.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_ConfRequest.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_ConfRequest.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Add.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Add.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEBList.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEBList.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Ipgo.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Ipgo.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_ConfRequest.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_ConfRequest.Designer.cs"},{"SourceFile":"PurchaseEB\\rPurchaseEB.cs"},{"SourceFile":"PurchaseEB\\rPurchaseEB.Designer.cs"},{"SourceFile":"fPurchaseConfirm.cs"},{"SourceFile":"fPurchaseConfirm.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_ConfRequest.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_ConfRequest.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_Ipgo.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_Ipgo.Designer.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Ipgo.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Ipgo.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNRList.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNRList.Designer.cs"},{"SourceFile":"PurchaseNR\\fInputSC.cs"},{"SourceFile":"PurchaseNR\\fInputSC.Designer.cs"},{"SourceFile":"PurchaseNR\\fMailForm.cs"},{"SourceFile":"PurchaseNR\\fMailForm.Designer.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Add.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Add.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_excelimport.cs"},{"SourceFile":"PurchaseNR\\fPurchase_excelimport.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_AddS.cs"},{"SourceFile":"PurchaseNR\\fPurchase_AddS.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Add.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Add.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Data.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Data.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_ImportO.cs"},{"SourceFile":"PurchaseNR\\fPurchase_ImportO.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Import.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Import.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR.Designer.cs"},{"SourceFile":"PurchaseCR\\rPurchaseCR.cs"},{"SourceFile":"PurchaseCR\\rPurchaseCR.Designer.cs"},{"SourceFile":"PurchaseNR\\fSIDCheckNR.cs"},{"SourceFile":"PurchaseNR\\fSIDCheckNR.Designer.cs"},{"SourceFile":"PurchaseNR\\rPurchaseNR.cs"},{"SourceFile":"PurchaseNR\\rPurchaseNR.Designer.cs"},{"SourceFile":"Purchase\\fBatchUpdate.cs"},{"SourceFile":"Purchase\\fBatchUpdate.Designer.cs"},{"SourceFile":"SqlServerTypes\\Loader.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\AmkorRestfulService\\bin\\debug\\AmkorRestfulService.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\Common7\\IDE\\PublicAssemblies\\Microsoft.mshtml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.VisualBasic.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FEQ0000\\bin\\Debug\\FEQ0000.exe","OutputItemRelativePath":"FEQ0000.exe"},{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FEQ0000\\bin\\Debug\\FEQ0000.pdb","OutputItemRelativePath":"FEQ0000.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FEQ0000","ProjectFileName":"FEQ0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"DataBaseManager.cs"},{"SourceFile":"DataClasses1.designer.cs"},{"SourceFile":"dsEQ.cs"},{"SourceFile":"dsEQ.Designer.cs"},{"SourceFile":"DSPrj.Designer.cs"},{"SourceFile":"dsPurchase.cs"},{"SourceFile":"dsPurchase.Designer.cs"},{"SourceFile":"EEDataSet.Designer.cs"},{"SourceFile":"Equipment\\EQFilterApply.cs"},{"SourceFile":"Equipment\\EQFilterApply.Designer.cs"},{"SourceFile":"Equipment\\EQfilterManager.cs"},{"SourceFile":"Equipment\\EQfilterManager.Designer.cs"},{"SourceFile":"Equipment\\fEquipment.cs"},{"SourceFile":"Equipment\\fEquipment.Designer.cs"},{"SourceFile":"Equipment\\fImpEquipment.cs"},{"SourceFile":"Equipment\\fImpEquipment.Designer.cs"},{"SourceFile":"Equipment\\rpt_equipmentAll.cs"},{"SourceFile":"Equipment\\rpt_equipmentAll.Designer.cs"},{"SourceFile":"fColumnFilter.cs"},{"SourceFile":"fColumnFilter.Designer.cs"},{"SourceFile":"fMonthAmount.cs"},{"SourceFile":"fMonthAmount.Designer.cs"},{"SourceFile":"fItemin.cs"},{"SourceFile":"fItemin.Designer.cs"},{"SourceFile":"fUserExportColumn.cs"},{"SourceFile":"fUserExportColumn.Designer.cs"},{"SourceFile":"MethodExtentions.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR.Designer.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_ConfRequest.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_ConfRequest.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Add.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Add.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEBList.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEBList.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Ipgo.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_Ipgo.Designer.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_ConfRequest.cs"},{"SourceFile":"PurchaseEB\\fPurchaseEB_ConfRequest.Designer.cs"},{"SourceFile":"PurchaseEB\\rPurchaseEB.cs"},{"SourceFile":"PurchaseEB\\rPurchaseEB.Designer.cs"},{"SourceFile":"fPurchaseConfirm.cs"},{"SourceFile":"fPurchaseConfirm.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_ConfRequest.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_ConfRequest.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_Ipgo.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR_Ipgo.Designer.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Ipgo.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Ipgo.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNRList.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNRList.Designer.cs"},{"SourceFile":"PurchaseNR\\fInputSC.cs"},{"SourceFile":"PurchaseNR\\fInputSC.Designer.cs"},{"SourceFile":"PurchaseNR\\fMailForm.cs"},{"SourceFile":"PurchaseNR\\fMailForm.Designer.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Add.cs"},{"SourceFile":"PurchaseCR\\fPurchaseCR_Add.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_excelimport.cs"},{"SourceFile":"PurchaseNR\\fPurchase_excelimport.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_AddS.cs"},{"SourceFile":"PurchaseNR\\fPurchase_AddS.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Add.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Add.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Data.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Data.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_ImportO.cs"},{"SourceFile":"PurchaseNR\\fPurchase_ImportO.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Import.cs"},{"SourceFile":"PurchaseNR\\fPurchase_Import.Designer.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR.cs"},{"SourceFile":"PurchaseNR\\fPurchaseNR.Designer.cs"},{"SourceFile":"PurchaseCR\\rPurchaseCR.cs"},{"SourceFile":"PurchaseCR\\rPurchaseCR.Designer.cs"},{"SourceFile":"PurchaseNR\\fSIDCheckNR.cs"},{"SourceFile":"PurchaseNR\\fSIDCheckNR.Designer.cs"},{"SourceFile":"PurchaseNR\\rPurchaseNR.cs"},{"SourceFile":"PurchaseNR\\rPurchaseNR.Designer.cs"},{"SourceFile":"Purchase\\fBatchUpdate.cs"},{"SourceFile":"Purchase\\fBatchUpdate.Designer.cs"},{"SourceFile":"SqlServerTypes\\Loader.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll"},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe"},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll"},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\Common7\\IDE\\PublicAssemblies\\Microsoft.mshtml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.VisualBasic.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll"}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FEQ0000\\bin\\Debug\\FEQ0000.exe","OutputItemRelativePath":"FEQ0000.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SubProject/FEQ0000/PurchaseCR/fPurchaseCR.cs b/SubProject/FEQ0000/PurchaseCR/fPurchaseCR.cs index e079396..f2c5275 100644 --- a/SubProject/FEQ0000/PurchaseCR/fPurchaseCR.cs +++ b/SubProject/FEQ0000/PurchaseCR/fPurchaseCR.cs @@ -835,7 +835,7 @@ namespace FEQ0000 } //수집된데이터를 보내야한다. - var idx = 0; + //var idx = 0; foreach (var i in rowidxs) { var rowidx = (int)fpSpread1.ActiveSheet.GetValue(i, idxcol.Index); @@ -886,7 +886,7 @@ namespace FEQ0000 //수집된데이터를 보내야한다. - var idx = 0; + //var idx = 0; foreach (var i in rowidxs) { var rowidx = (int)fpSpread1.ActiveSheet.GetValue(i, idxcol.Index); @@ -1444,7 +1444,7 @@ namespace FEQ0000 //수집된데이터를 보내야한다. List rows = new List(); - var idx = 0; + // var idx = 0; foreach (var i in rowidxs) { var rowidx = (int)fpSpread1.ActiveSheet.GetValue(i, idxcol.Index); diff --git a/SubProject/FEQ0000/PurchaseEB/fPurchaseEB.cs b/SubProject/FEQ0000/PurchaseEB/fPurchaseEB.cs index 8224808..5095723 100644 --- a/SubProject/FEQ0000/PurchaseEB/fPurchaseEB.cs +++ b/SubProject/FEQ0000/PurchaseEB/fPurchaseEB.cs @@ -1153,7 +1153,7 @@ namespace FEQ0000 } //수집된데이터를 보내야한다. - var idx = 0; + //var idx = 0; foreach (var i in rowidxs) { var rowidx = (int)fpSpread1.ActiveSheet.GetValue(i, idxcol.Index); @@ -1206,7 +1206,7 @@ namespace FEQ0000 } //수집된데이터를 보내야한다. - var idx = 0; + //var idx = 0; foreach (var i in rowidxs) { var rowidx = (int)fpSpread1.ActiveSheet.GetValue(i, idxcol.Index); diff --git a/SubProject/FEQ0000/PurchaseNR/fPurchaseNR.cs b/SubProject/FEQ0000/PurchaseNR/fPurchaseNR.cs index fbad665..a0c6e16 100644 --- a/SubProject/FEQ0000/PurchaseNR/fPurchaseNR.cs +++ b/SubProject/FEQ0000/PurchaseNR/fPurchaseNR.cs @@ -1146,7 +1146,6 @@ namespace FEQ0000 } //수집된데이터를 보내야한다. - var idx = 0; foreach (var i in rowidxs) { var rowidx = (int)fpSpread1.ActiveSheet.GetValue(i, idxcol.Index); @@ -1196,8 +1195,6 @@ namespace FEQ0000 } //수집된데이터를 보내야한다. - - var idx = 0; foreach (var i in rowidxs) { var rowidx = (int)fpSpread1.ActiveSheet.GetValue(i, idxcol.Index); diff --git a/SubProject/FEQ0000/fUserExportColumn.cs b/SubProject/FEQ0000/fUserExportColumn.cs index 3a92705..9bedd73 100644 --- a/SubProject/FEQ0000/fUserExportColumn.cs +++ b/SubProject/FEQ0000/fUserExportColumn.cs @@ -245,7 +245,7 @@ namespace FEQ0000 book = new libxl.XmlBook(); book.setKey(FCOMMON.info.libxlCompany, FCOMMON.info.libxlKey); var sheet = book.addSheet("data"); - var colno = 0; + //var colno = 0; var rowno = 0; for (int i = 0; i < this.listView1.Columns.Count; i++) { diff --git a/SubProject/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json b/SubProject/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json index 1d0b406..b26da66 100644 --- a/SubProject/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json +++ b/SubProject/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json @@ -1 +1 @@ -{"RootPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FPJ0000","ProjectFileName":"FPJ0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Auth.cs"},{"SourceFile":"Common.cs"},{"SourceFile":"DataBaseManager.cs"},{"SourceFile":"DSComm.Designer.cs"},{"SourceFile":"DSEboard.Designer.cs"},{"SourceFile":"dsJobReport.Designer.cs"},{"SourceFile":"DSKuntae.Designer.cs"},{"SourceFile":"dsMail.Designer.cs"},{"SourceFile":"DSNote.Designer.cs"},{"SourceFile":"dsPRJ.cs"},{"SourceFile":"dsPRJ.Designer.cs"},{"SourceFile":"dsPurchase.Designer.cs"},{"SourceFile":"dsQuery.Designer.cs"},{"SourceFile":"dsReport.cs"},{"SourceFile":"dsReport.Designer.cs"},{"SourceFile":"EBoard\\fEboardData.cs"},{"SourceFile":"EBoard\\fEboardData.Designer.cs"},{"SourceFile":"EBoard\\fEBoardImport.cs"},{"SourceFile":"EBoard\\fEBoardImport.Designer.cs"},{"SourceFile":"EBoard\\fEboardList.cs"},{"SourceFile":"EBoard\\fEboardList.Designer.cs"},{"SourceFile":"EBoard\\fEBoardReport.cs"},{"SourceFile":"EBoard\\fEBoardReport.Designer.cs"},{"SourceFile":"EETGW_DocuForm.cs"},{"SourceFile":"EETGW_HolydayRequest.cs"},{"SourceFile":"EETGW_JobReport_EBoard.cs"},{"SourceFile":"EETGW_Note.cs"},{"SourceFile":"EETGW_ProjectsSchedule.cs"},{"SourceFile":"EETGW_Project_Layout.cs"},{"SourceFile":"EETGW_SaveCost.cs"},{"SourceFile":"fHistAddDay.cs"},{"SourceFile":"fHistAddDay.Designer.cs"},{"SourceFile":"fHistAdd.cs"},{"SourceFile":"fHistAdd.Designer.cs"},{"SourceFile":"fMailSend.cs"},{"SourceFile":"fMailSend.Designer.cs"},{"SourceFile":"fMailList.cs"},{"SourceFile":"fMailList.Designer.cs"},{"SourceFile":"GantChart.cs"},{"SourceFile":"GantChart.Designer.cs"},{"SourceFile":"HolidayLIst.cs"},{"SourceFile":"JobReport.cs"},{"SourceFile":"JobReport_\\fJobChartMenu.cs"},{"SourceFile":"JobReport_\\fJobChartMenu.Designer.cs"},{"SourceFile":"JobReport_\\fProjectConnect.cs"},{"SourceFile":"JobReport_\\fProjectConnect.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportType.cs"},{"SourceFile":"JobReport_\\rJobReportType.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportPrjSche.cs"},{"SourceFile":"JobReport_\\rJobReportPrjSche.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportPrj.cs"},{"SourceFile":"JobReport_\\rJobReportPrj.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportOT.cs"},{"SourceFile":"JobReport_\\rJobReportOT.Designer.cs"},{"SourceFile":"OtConfirm\\fHolyRequest.cs"},{"SourceFile":"OtConfirm\\fHolyRequest.Designer.cs"},{"SourceFile":"OtConfirm\\fOTConfirmOK.cs"},{"SourceFile":"OtConfirm\\fOTConfirmOK.Designer.cs"},{"SourceFile":"OtConfirm\\fHolyRequestAdd.cs"},{"SourceFile":"OtConfirm\\fHolyRequestAdd.Designer.cs"},{"SourceFile":"OtConfirm\\fOTConfirm.cs"},{"SourceFile":"OtConfirm\\fOTConfirm.Designer.cs"},{"SourceFile":"JobReport_\\fJobReportAI.cs"},{"SourceFile":"JobReport_\\fJobReportAI.Designer.cs"},{"SourceFile":"JobReport_\\fJobReport_AddAI.cs"},{"SourceFile":"JobReport_\\fJobReport_AddAI.Designer.cs"},{"SourceFile":"JobReport_\\fSelectProcess.cs"},{"SourceFile":"JobReport_\\fSelectProcess.Designer.cs"},{"SourceFile":"JobReport_\\rK5Dailyform.cs"},{"SourceFile":"JobReport_\\rK5Dailyform.Designer.cs"},{"SourceFile":"JobReport_\\rJobChart.cs"},{"SourceFile":"JobReport_\\rJobChart.Designer.cs"},{"SourceFile":"JobReport_\\K5Dailyform.cs"},{"SourceFile":"JobReport_\\K5Dailyform.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportUser.cs"},{"SourceFile":"JobReport_\\rJobReportUser.Designer.cs"},{"SourceFile":"MailData.cs"},{"SourceFile":"MailForm.cs"},{"SourceFile":"Model1.Context.cs"},{"SourceFile":"Model1.cs"},{"SourceFile":"Model1.Designer.cs"},{"SourceFile":"Note\\fNote.cs"},{"SourceFile":"Note\\fNote.Designer.cs"},{"SourceFile":"OtConfirm\\fOTConfirmValue.cs"},{"SourceFile":"OtConfirm\\fOTConfirmValue.Designer.cs"},{"SourceFile":"OtConfirm\\fOutCoomplete.cs"},{"SourceFile":"OtConfirm\\fOutCoomplete.Designer.cs"},{"SourceFile":"Projects.cs"},{"SourceFile":"Project\\ctlLayout.cs"},{"SourceFile":"Project\\ctlLayout.Designer.cs"},{"SourceFile":"Project\\DSProjectSummary.Designer.cs"},{"SourceFile":"Project\\fLayoutEdit.cs"},{"SourceFile":"Project\\fLayoutEdit.Designer.cs"},{"SourceFile":"Project\\fProjectLayout.cs"},{"SourceFile":"Project\\fProjectLayout.Designer.cs"},{"SourceFile":"Project\\fProjectListU.cs"},{"SourceFile":"Project\\fProjectListU.Designer.cs"},{"SourceFile":"Project\\fProjectListUserDetail.cs"},{"SourceFile":"Project\\fProjectListUserDetail.Designer.cs"},{"SourceFile":"Project\\fProjectListUser.cs"},{"SourceFile":"Project\\fProjectListUser.Designer.cs"},{"SourceFile":"Project\\fProjectPartToPurchaseCR.cs"},{"SourceFile":"Project\\fProjectPartToPurchaseCR.Designer.cs"},{"SourceFile":"Project\\fProjectSummary.cs"},{"SourceFile":"Project\\fProjectSummary.Designer.cs"},{"SourceFile":"Project\\fProjectPartListEdit.cs"},{"SourceFile":"Project\\fProjectPartListEdit.Designer.cs"},{"SourceFile":"Purchase.cs"},{"SourceFile":"SaveCost\\fSaveCostReport.cs"},{"SourceFile":"SaveCost\\fSaveCostReport.Designer.cs"},{"SourceFile":"SaveCost\\fSaveCostData.cs"},{"SourceFile":"SaveCost\\fSaveCostData.Designer.cs"},{"SourceFile":"SaveCost\\fSaveCostList.cs"},{"SourceFile":"SaveCost\\fSaveCostList.Designer.cs"},{"SourceFile":"Note\\fTextEditor.cs"},{"SourceFile":"Note\\fTextEditor.Designer.cs"},{"SourceFile":"Note\\fNote_Add.cs"},{"SourceFile":"Note\\fNote_Add.Designer.cs"},{"SourceFile":"Project\\fPartList.cs"},{"SourceFile":"Project\\fPartList.Designer.cs"},{"SourceFile":"Project\\fProejctHistory.cs"},{"SourceFile":"Project\\fProejctHistory.Designer.cs"},{"SourceFile":"Project\\fProjectData.cs"},{"SourceFile":"Project\\fProjectData.Designer.cs"},{"SourceFile":"Project\\fProjectIOMap.cs"},{"SourceFile":"Project\\fProjectIOMap.Designer.cs"},{"SourceFile":"Project\\fSCCheck.cs"},{"SourceFile":"Project\\fSCCheck.Designer.cs"},{"SourceFile":"Project\\fProjectSchedule.cs"},{"SourceFile":"Project\\fProjectSchedule.Designer.cs"},{"SourceFile":"ImportC.cs"},{"SourceFile":"ImportC.Designer.cs"},{"SourceFile":"Import.cs"},{"SourceFile":"Import.Designer.cs"},{"SourceFile":"JobReport_\\fJobReport.cs"},{"SourceFile":"JobReport_\\fJobReport.Designer.cs"},{"SourceFile":"Project\\fProjectList.cs"},{"SourceFile":"Project\\fProjectList.Designer.cs"},{"SourceFile":"FPUtil.cs"},{"SourceFile":"Project\\rPartList.cs"},{"SourceFile":"Project\\rPartList.Designer.cs"},{"SourceFile":"JobReport_\\fJobReport_Add.cs"},{"SourceFile":"JobReport_\\fJobReport_Add.Designer.cs"},{"SourceFile":"JobReport_\\fJobReportImport.cs"},{"SourceFile":"JobReport_\\fJobReportImport.Designer.cs"},{"SourceFile":"JobReport_\\fLovProject.cs"},{"SourceFile":"JobReport_\\fLovProject.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportDay.cs"},{"SourceFile":"JobReport_\\rJobReportDay.Designer.cs"},{"SourceFile":"JobReport_\\rJobReport.cs"},{"SourceFile":"JobReport_\\rJobReport.Designer.cs"},{"SourceFile":"MethodExtentions.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Project\\fProjectPartImport.cs"},{"SourceFile":"Project\\fProjectPartImport.Designer.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"SqlServerTypes\\Loader.cs"},{"SourceFile":"UserGroup.cs"},{"SourceFile":"Users.cs"},{"SourceFile":"Util.cs"},{"SourceFile":"vEETGW_Project_LayoutList.cs"},{"SourceFile":"vGroupUser.cs"},{"SourceFile":"vHoliday_uselist.cs"},{"SourceFile":"vJobReportForUser.cs"},{"SourceFile":"vUserWorkTimeList.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\AmkorRestfulService\\bin\\debug\\AmkorRestfulService.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net40\\EntityFramework.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net40\\EntityFramework.SqlServer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetSpell.2.1.7\\lib\\NetSpell.SpellChecker.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\PrintRichTextBox.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\RichTextBoxEx.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\CMSControl\\obj\\Debug\\UMSControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FPJ0000\\bin\\Debug\\FPJ0000.exe","OutputItemRelativePath":"FPJ0000.exe"},{"OutputItemFullPath":"D:\\Source\\##### 완료아이템\\(0014) GroupWare\\Source\\SubProject\\FPJ0000\\bin\\Debug\\FPJ0000.pdb","OutputItemRelativePath":"FPJ0000.pdb"}],"CopyToOutputEntries":[]} \ No newline at end of file +{"RootPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FPJ0000","ProjectFileName":"FPJ0000.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"DataBaseManager.cs"},{"SourceFile":"DSComm.Designer.cs"},{"SourceFile":"DSEboard.Designer.cs"},{"SourceFile":"dsJobReport.Designer.cs"},{"SourceFile":"DSKuntae.Designer.cs"},{"SourceFile":"dsMail.Designer.cs"},{"SourceFile":"DSNote.Designer.cs"},{"SourceFile":"dsPRJ.cs"},{"SourceFile":"dsPRJ.Designer.cs"},{"SourceFile":"dsPurchase.Designer.cs"},{"SourceFile":"dsQuery.Designer.cs"},{"SourceFile":"dsReport.cs"},{"SourceFile":"dsReport.Designer.cs"},{"SourceFile":"EBoard\\fEboardData.cs"},{"SourceFile":"EBoard\\fEboardData.Designer.cs"},{"SourceFile":"EBoard\\fEBoardImport.cs"},{"SourceFile":"EBoard\\fEBoardImport.Designer.cs"},{"SourceFile":"EBoard\\fEboardList.cs"},{"SourceFile":"EBoard\\fEboardList.Designer.cs"},{"SourceFile":"EBoard\\fEBoardReport.cs"},{"SourceFile":"EBoard\\fEBoardReport.Designer.cs"},{"SourceFile":"fHistAddDay.cs"},{"SourceFile":"fHistAddDay.Designer.cs"},{"SourceFile":"fHistAdd.cs"},{"SourceFile":"fHistAdd.Designer.cs"},{"SourceFile":"fMailSend.cs"},{"SourceFile":"fMailSend.Designer.cs"},{"SourceFile":"fMailList.cs"},{"SourceFile":"fMailList.Designer.cs"},{"SourceFile":"GantChart.cs"},{"SourceFile":"GantChart.Designer.cs"},{"SourceFile":"JobReport_\\fJobChartMenu.cs"},{"SourceFile":"JobReport_\\fJobChartMenu.Designer.cs"},{"SourceFile":"JobReport_\\fJobProcessSelect.cs"},{"SourceFile":"JobReport_\\fJobProcessSelect.Designer.cs"},{"SourceFile":"JobReport_\\fProjectConnect.cs"},{"SourceFile":"JobReport_\\fProjectConnect.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportType.cs"},{"SourceFile":"JobReport_\\rJobReportType.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportPrjSche.cs"},{"SourceFile":"JobReport_\\rJobReportPrjSche.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportPrj.cs"},{"SourceFile":"JobReport_\\rJobReportPrj.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportOT.cs"},{"SourceFile":"JobReport_\\rJobReportOT.Designer.cs"},{"SourceFile":"OtConfirm\\fHolyRequest.cs"},{"SourceFile":"OtConfirm\\fHolyRequest.Designer.cs"},{"SourceFile":"OtConfirm\\fOTConfirmOK.cs"},{"SourceFile":"OtConfirm\\fOTConfirmOK.Designer.cs"},{"SourceFile":"OtConfirm\\fHolyRequestAdd.cs"},{"SourceFile":"OtConfirm\\fHolyRequestAdd.Designer.cs"},{"SourceFile":"OtConfirm\\fOTConfirm.cs"},{"SourceFile":"OtConfirm\\fOTConfirm.Designer.cs"},{"SourceFile":"JobReport_\\fJobReportAI.cs"},{"SourceFile":"JobReport_\\fJobReportAI.Designer.cs"},{"SourceFile":"JobReport_\\fJobReport_AddAI.cs"},{"SourceFile":"JobReport_\\fJobReport_AddAI.Designer.cs"},{"SourceFile":"JobReport_\\fSelectProcess.cs"},{"SourceFile":"JobReport_\\fSelectProcess.Designer.cs"},{"SourceFile":"JobReport_\\rK5Dailyform.cs"},{"SourceFile":"JobReport_\\rK5Dailyform.Designer.cs"},{"SourceFile":"JobReport_\\rJobChart.cs"},{"SourceFile":"JobReport_\\rJobChart.Designer.cs"},{"SourceFile":"JobReport_\\K5Dailyform.cs"},{"SourceFile":"JobReport_\\K5Dailyform.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportUser.cs"},{"SourceFile":"JobReport_\\rJobReportUser.Designer.cs"},{"SourceFile":"Note\\fNote.cs"},{"SourceFile":"Note\\fNote.Designer.cs"},{"SourceFile":"OtConfirm\\fOTConfirmValue.cs"},{"SourceFile":"OtConfirm\\fOTConfirmValue.Designer.cs"},{"SourceFile":"OtConfirm\\fOutCoomplete.cs"},{"SourceFile":"OtConfirm\\fOutCoomplete.Designer.cs"},{"SourceFile":"Project\\ctlLayout.cs"},{"SourceFile":"Project\\ctlLayout.Designer.cs"},{"SourceFile":"Project\\DSProjectSummary.Designer.cs"},{"SourceFile":"Project\\finputcurrency.cs"},{"SourceFile":"Project\\finputcurrency.Designer.cs"},{"SourceFile":"Project\\fLayoutEdit.cs"},{"SourceFile":"Project\\fLayoutEdit.Designer.cs"},{"SourceFile":"Project\\fProjectLayout.cs"},{"SourceFile":"Project\\fProjectLayout.Designer.cs"},{"SourceFile":"Project\\fProjectListU.cs"},{"SourceFile":"Project\\fProjectListU.Designer.cs"},{"SourceFile":"Project\\fProjectListUserDetail.cs"},{"SourceFile":"Project\\fProjectListUserDetail.Designer.cs"},{"SourceFile":"Project\\fProjectListUser.cs"},{"SourceFile":"Project\\fProjectListUser.Designer.cs"},{"SourceFile":"Project\\fProjectPartToPurchaseCR.cs"},{"SourceFile":"Project\\fProjectPartToPurchaseCR.Designer.cs"},{"SourceFile":"Project\\fProjectSummary.cs"},{"SourceFile":"Project\\fProjectSummary.Designer.cs"},{"SourceFile":"Project\\fProjectPartListEdit.cs"},{"SourceFile":"Project\\fProjectPartListEdit.Designer.cs"},{"SourceFile":"SaveCost\\fSaveCostReport.cs"},{"SourceFile":"SaveCost\\fSaveCostReport.Designer.cs"},{"SourceFile":"SaveCost\\fSaveCostData.cs"},{"SourceFile":"SaveCost\\fSaveCostData.Designer.cs"},{"SourceFile":"SaveCost\\fSaveCostList.cs"},{"SourceFile":"SaveCost\\fSaveCostList.Designer.cs"},{"SourceFile":"Note\\fTextEditor.cs"},{"SourceFile":"Note\\fTextEditor.Designer.cs"},{"SourceFile":"Note\\fNote_Add.cs"},{"SourceFile":"Note\\fNote_Add.Designer.cs"},{"SourceFile":"Project\\fPartList.cs"},{"SourceFile":"Project\\fPartList.Designer.cs"},{"SourceFile":"Project\\fProejctHistory.cs"},{"SourceFile":"Project\\fProejctHistory.Designer.cs"},{"SourceFile":"Project\\fProjectData.cs"},{"SourceFile":"Project\\fProjectData.Designer.cs"},{"SourceFile":"Project\\fProjectIOMap.cs"},{"SourceFile":"Project\\fProjectIOMap.Designer.cs"},{"SourceFile":"Project\\fSCCheck.cs"},{"SourceFile":"Project\\fSCCheck.Designer.cs"},{"SourceFile":"Project\\fProjectSchedule.cs"},{"SourceFile":"Project\\fProjectSchedule.Designer.cs"},{"SourceFile":"ImportC.cs"},{"SourceFile":"ImportC.Designer.cs"},{"SourceFile":"Import.cs"},{"SourceFile":"Import.Designer.cs"},{"SourceFile":"JobReport_\\fJobReport.cs"},{"SourceFile":"JobReport_\\fJobReport.Designer.cs"},{"SourceFile":"Project\\fProjectList.cs"},{"SourceFile":"Project\\fProjectList.Designer.cs"},{"SourceFile":"FPUtil.cs"},{"SourceFile":"Project\\rPartList.cs"},{"SourceFile":"Project\\rPartList.Designer.cs"},{"SourceFile":"JobReport_\\fJobReport_Add.cs"},{"SourceFile":"JobReport_\\fJobReport_Add.Designer.cs"},{"SourceFile":"JobReport_\\fJobReportImport.cs"},{"SourceFile":"JobReport_\\fJobReportImport.Designer.cs"},{"SourceFile":"JobReport_\\fLovProject.cs"},{"SourceFile":"JobReport_\\fLovProject.Designer.cs"},{"SourceFile":"JobReport_\\rJobReportDay.cs"},{"SourceFile":"JobReport_\\rJobReportDay.Designer.cs"},{"SourceFile":"JobReport_\\rJobReport.cs"},{"SourceFile":"JobReport_\\rJobReport.Designer.cs"},{"SourceFile":"MethodExtentions.cs"},{"SourceFile":"Program.cs"},{"SourceFile":"Project\\fProjectPartImport.cs"},{"SourceFile":"Project\\fProjectPartImport.Designer.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"SqlServerTypes\\Loader.cs"},{"SourceFile":"Util.cs"},{"SourceFile":"Properties\\Resources.Designer.cs"},{"SourceFile":"Properties\\Settings.Designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.6.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\arCommUtil.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\arCtl\\bin\\debug\\arControl.Net4.dll"},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\ArSetting.Net4.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net40\\EntityFramework.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\EntityFramework.6.2.0\\lib\\net40\\EntityFramework.SqlServer.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Excel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Localization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PDF.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.PluginCalendar.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Chart.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\FarPoint.Win.Spread.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCM0000\\bin\\debug\\FCM0000.exe"},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FCOMMON\\bin\\Debug\\FCOMMON.dll"},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.CalcEngine.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Spreadsheet.Win.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\GrapeCity\\Spread.NET 11\\Windows Forms\\v11.40.20177.0\\bin\\GrapeCity.Win.PluginInputMan.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\DLL\\libxl.net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Common.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.ProcessingObjectModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1586.0\\lib\\net40\\Microsoft.ReportViewer.WinForms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\Microsoft.SqlServer.Types.14.0.314.76\\lib\\net40\\Microsoft.SqlServer.Types.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\NetOffice.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetSpell.2.1.7\\lib\\NetSpell.SpellChecker.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\OfficeApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Outlook.1.8.1\\lib\\net40\\OutlookApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\PrintRichTextBox.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\RichTextBoxEx.1.0.0\\lib\\RichTextBoxEx.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.ComponentModel.DataAnnotations.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Deployment.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Security.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\CMSControl\\obj\\Debug\\UMSControl.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\packages\\NetOfficeFw.Core.1.8.1\\lib\\net40\\VBIDEApi.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.6\\WindowsBase.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\Sub\\YARTE\\bin\\Debug\\YARTE.dll"}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Data\\Source\\##### 완료아이템\\(0014#) GroupWare\\Source\\SubProject\\FPJ0000\\bin\\Debug\\FPJ0000.exe","OutputItemRelativePath":"FPJ0000.exe"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} \ No newline at end of file diff --git a/SubProject/FPJ0000/JobReport_/fJobChartMenu.cs b/SubProject/FPJ0000/JobReport_/fJobChartMenu.cs index 9d615ee..feecf55 100644 --- a/SubProject/FPJ0000/JobReport_/fJobChartMenu.cs +++ b/SubProject/FPJ0000/JobReport_/fJobChartMenu.cs @@ -323,8 +323,8 @@ namespace FPJ0000.JobReport_ //ETC영역계산 { //전체합산데이터와, 2~10까지의 데이터가 일치하지 않으면 그것이 ETC이다 - var etchr = item.Where(t => t.hrs != null).Sum(t => (float)t.hrs); - var etcot = item.Where(t => t.ot != null).Sum(t => (float)t.ot); + var etchr = item.Sum(t => (float)t.hrs); + var etcot = item.Sum(t => (float)t.ot); //현재데이터의 hrs의 합 var subtotal = 0f; diff --git a/SubProject/FPJ0000/JobReport_/fJobProcessSelect.Designer.cs b/SubProject/FPJ0000/JobReport_/fJobProcessSelect.Designer.cs index 3069635..32b08ad 100644 --- a/SubProject/FPJ0000/JobReport_/fJobProcessSelect.Designer.cs +++ b/SubProject/FPJ0000/JobReport_/fJobProcessSelect.Designer.cs @@ -707,7 +707,6 @@ private System.Windows.Forms.TreeView treeView1; private System.Windows.Forms.Button btRefreshTreeview; private System.Windows.Forms.Label lbWarningManager; - private System.Windows.Forms.DataGridViewTextBoxColumn svalue2DataGridViewTextBoxColumn; private System.Windows.Forms.GroupBox groupBox3; private System.Windows.Forms.Panel panel1; private System.Windows.Forms.GroupBox groupBox4; diff --git a/SubProject/FPJ0000/JobReport_/rJobReportPrj.cs b/SubProject/FPJ0000/JobReport_/rJobReportPrj.cs index 8c63c3c..a0cd740 100644 --- a/SubProject/FPJ0000/JobReport_/rJobReportPrj.cs +++ b/SubProject/FPJ0000/JobReport_/rJobReportPrj.cs @@ -134,7 +134,7 @@ namespace FPJ0000.JobReport_ var TotHrs = dsReport.JobProjectTimes.Sum(t => t.hrs); //데이터를 추가한다. - bool addholy = false; + //bool addholy = false; foreach (var dr in dsReport.JobProjectTimes.OrderByDescending(t => t.PrjStatus + t.PrjName).GroupBy(t => t.PrjName)) { var pidx = dr.Key; @@ -151,13 +151,13 @@ namespace FPJ0000.JobReport_ { row.Add("--"); row.Add("미팅"); - addholy = true; + //addholy = true; } else if (dr.Key == "휴가") { row.Add("--"); row.Add("휴가"); - addholy = true; + //addholy = true; } else { diff --git a/SubProject/FPJ0000/OtConfirm/fOTConfirmValue.Designer.cs b/SubProject/FPJ0000/OtConfirm/fOTConfirmValue.Designer.cs index 71d5bb4..aa6a192 100644 --- a/SubProject/FPJ0000/OtConfirm/fOTConfirmValue.Designer.cs +++ b/SubProject/FPJ0000/OtConfirm/fOTConfirmValue.Designer.cs @@ -206,10 +206,7 @@ namespace FPJ0000.OtConfirm } #endregion - private System.Windows.Forms.Label label1; private System.Windows.Forms.Button btOK; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.Label label3; public System.Windows.Forms.NumericUpDown nudValuePMS; public System.Windows.Forms.RadioButton radAllPMS; public System.Windows.Forms.RadioButton radAll; diff --git a/SubProject/FPJ0000/Project/fProjectPartToPurchaseCR.cs b/SubProject/FPJ0000/Project/fProjectPartToPurchaseCR.cs index 56d99cb..8c6d1fc 100644 --- a/SubProject/FPJ0000/Project/fProjectPartToPurchaseCR.cs +++ b/SubProject/FPJ0000/Project/fProjectPartToPurchaseCR.cs @@ -768,8 +768,8 @@ namespace FPJ0000 private void dv1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) { if (e.RowIndex < 0 || e.ColumnIndex < 0) return; - var colr = "dvc_qtyreq"; - var col = "dvc_qty"; + // var colr = "dvc_qtyreq"; + // var col = "dvc_qty"; //dv1.Rows[e.RowIndex].Cells[e.ColumnIndex] } diff --git a/SubProject/FPJ0000/SaveCost/fSaveCostList.cs b/SubProject/FPJ0000/SaveCost/fSaveCostList.cs index 28b8ab2..f2660c1 100644 --- a/SubProject/FPJ0000/SaveCost/fSaveCostList.cs +++ b/SubProject/FPJ0000/SaveCost/fSaveCostList.cs @@ -351,35 +351,35 @@ namespace FPJ0000 util.MsgE("프로젝트로 등록하세요. 프로젝트 정보 중 [비용절감]을 체크하세요"); return; - var newdr = this.dsMSSQL.EETGW_SaveCost.NewEETGW_SaveCostRow(); - newdr.wuid = FCOMMON.info.Login.no; - newdr.wdate = DateTime.Now; - newdr.pdate = DateTime.Now.ToString("yyyy-MM-dd"); - newdr.edate = DateTime.Now.ToString("yyyy-MM-dd"); - newdr.userManager = FCOMMON.info.Login.nameK; - newdr.userprocess = FCOMMON.info.Login.process; - newdr.costn = 0; - newdr.costo = 0; - newdr.cnt = 1; - newdr.name = "Project Title"; - var f = new fSaveCostData(newdr); - f.StartPosition = FormStartPosition.CenterScreen; - var dlg = f.ShowDialog(); - if (dlg == System.Windows.Forms.DialogResult.OK) - { - this.dsMSSQL.EETGW_SaveCost.AddEETGW_SaveCostRow(newdr); - try - { + //var newdr = this.dsMSSQL.EETGW_SaveCost.NewEETGW_SaveCostRow(); + //newdr.wuid = FCOMMON.info.Login.no; + //newdr.wdate = DateTime.Now; + //newdr.pdate = DateTime.Now.ToString("yyyy-MM-dd"); + //newdr.edate = DateTime.Now.ToString("yyyy-MM-dd"); + //newdr.userManager = FCOMMON.info.Login.nameK; + //newdr.userprocess = FCOMMON.info.Login.process; + //newdr.costn = 0; + //newdr.costo = 0; + //newdr.cnt = 1; + //newdr.name = "Project Title"; + //var f = new fSaveCostData(newdr); + //f.StartPosition = FormStartPosition.CenterScreen; + //var dlg = f.ShowDialog(); + //if (dlg == System.Windows.Forms.DialogResult.OK) + //{ + // this.dsMSSQL.EETGW_SaveCost.AddEETGW_SaveCostRow(newdr); + // try + // { - ta.Update(newdr); - } - catch (Exception ex) - { - FCOMMON.Util.MsgE("Save Error\n" + ex.Message); - } + // ta.Update(newdr); + // } + // catch (Exception ex) + // { + // FCOMMON.Util.MsgE("Save Error\n" + ex.Message); + // } - } - else newdr.Delete(); + //} + //else newdr.Delete(); } private void btEdit_Click(object sender, EventArgs e) @@ -442,13 +442,6 @@ namespace FPJ0000 { util.MsgE("프로젝트로 등록하세요. 프로젝트 정보 중 [비용절감]을 체크하세요"); return; - - var newdr = this.dsMSSQL.EETGW_SaveCost.NewEETGW_SaveCostRow(); - newdr.wuid = FCOMMON.info.Login.no; - newdr.wdate = DateTime.Now; - newdr.pdate = DateTime.Now.ToShortDateString(); - newdr.gcode = FCOMMON.info.Login.gcode; - this.dsMSSQL.EETGW_SaveCost.AddEETGW_SaveCostRow(newdr); } } } \ No newline at end of file diff --git a/SubProject/FPJ0000/fMailSend.Designer.cs b/SubProject/FPJ0000/fMailSend.Designer.cs index e41b880..532ae6d 100644 --- a/SubProject/FPJ0000/fMailSend.Designer.cs +++ b/SubProject/FPJ0000/fMailSend.Designer.cs @@ -832,7 +832,6 @@ private System.Windows.Forms.TextBox textBox3; private dsMail dsMail; private dsMailTableAdapters.MailDataTableAdapter ta; - private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1; private YARTE.UI.HtmlEditor htmlEditor1; private System.Windows.Forms.ToolStripButton toolStripButton2; private System.Windows.Forms.ToolStripButton toolStripButton3;