diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..c71a63a --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,8 @@ +{ + "permissions": { + "allow": [ + "Bash(curl:*)" + ], + "deny": [] + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 5ddd95a..582bc3a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ obj *.suo .vs packages +.vscode +*.tmp +*.zip \ No newline at end of file diff --git a/Project/Dialog/fWarning.cs b/Project/Dialog/fWarning.cs deleted file mode 100644 index f927ec6..0000000 --- a/Project/Dialog/fWarning.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace Project.Dialog -{ - public partial class fWarning : Form - { - public fWarning() - { - InitializeComponent(); - } - } -} diff --git a/Project/EETGW.csproj b/Project/EETGW.csproj index 96236e1..ba64ce4 100644 --- a/Project/EETGW.csproj +++ b/Project/EETGW.csproj @@ -50,7 +50,7 @@ true Full False - ..\..\..\..\..\Amkor\GroupWare\ + ..\..\..\..\amkor\GroupWare\ TRACE;DEBUG;WEB1 prompt 4 @@ -283,16 +283,17 @@ fLogin_WB.cs - + Form - - fWarning.cs + + fSystemCheck.cs + @@ -425,6 +426,7 @@ + @@ -527,8 +529,8 @@ fUnZip.cs - - fWarning.cs + + fSystemCheck.cs fLog.cs @@ -670,6 +672,21 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + PreserveNewest diff --git a/Project/Program.cs b/Project/Program.cs index a46c090..e371717 100644 --- a/Project/Program.cs +++ b/Project/Program.cs @@ -2,10 +2,10 @@ using System.Collections.Generic; using System.Linq; using System.Windows.Forms; -using System.IO.Compression; -using System.IO; using System.DirectoryServices; using System.ServiceModel.Configuration; +using System.Threading; +using System.Diagnostics; namespace Project { @@ -17,94 +17,87 @@ namespace Project [STAThread] static void Main() { + // COM 초기화 (WebView2 오류 방지) + System.Threading.Thread.CurrentThread.SetApartmentState(System.Threading.ApartmentState.STA); + Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); // Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); // AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); - var fi = new System.IO.FileInfo("WebView2Runtime.zip"); - if (fi.Exists) + // 중복실행 방지 체크 + if (!CheckSingleInstance()) { - var existlen = 0; - var webruntimepath = new System.IO.DirectoryInfo("WebView2Runtime"); - if (webruntimepath.Exists) + return; // 프로그램 종료 + } + + // WebView2Runtime 압축해제와 SqlServerTypes 로드는 fWarning에서 처리 + + // fWarning 폼을 먼저 표시하여 실행환경 체크 + using(var f = new Dialog.fSystemCheck()) + { + Application.Run(f); + if (f.environmentCheckCompleted) + Application.Run(new fMain()); + } + } + + /// + /// 중복실행 방지 체크 + /// + /// 단일 인스턴스인 경우 true, 중복실행인 경우 false + static bool CheckSingleInstance() + { + string processName = Process.GetCurrentProcess().ProcessName; + Process[] processes = Process.GetProcessesByName(processName); + + if (processes.Length > 1) + { + // 중복실행 감지 + string message = "⚠️ GroupWare 프로그램이 이미 실행 중입니다!\n\n" + + "동시에 여러 개의 GroupWare를 실행할 수 없습니다.\n\n" + + "해결방법을 선택하세요:"; + + var result = MessageBox.Show(message + "\n\n예(Y): 기존 프로그램을 종료하고 새로 시작\n아니오(N): 현재 실행을 취소", + "중복실행 감지", + MessageBoxButtons.YesNo, + MessageBoxIcon.Warning); + + if (result == DialogResult.Yes) { - var filen = new System.IO.FileInfo("WebView2Runtime\\version.txt"); - if(filen.Exists) - { - var verstr = System.IO.File.ReadAllText(filen.FullName); - int.TryParse(verstr, out existlen); - } - } - if(existlen != fi.Length) - { - //fi 파일의 압축을 해제한다. - var fprogress = new Dialog.fUnZip(); - fprogress.TopMost = true; - fprogress.Show(); - Application.DoEvents(); + // 기존 프로세스들을 종료 try { - if (webruntimepath.Exists) + int currentProcessId = Process.GetCurrentProcess().Id; + foreach (Process process in processes) { - fprogress.label1.Text = "기존폴더삭제"; - Application.DoEvents(); - webruntimepath.Delete(true); - - - } - var diruntime = new System.IO.DirectoryInfo("runtimes"); - if (diruntime.Exists) diruntime.Delete(true); - webruntimepath.Create(); - diruntime.Create(); - - - using (var archive = ZipFile.OpenRead(fi.FullName)) - { - int totalFiles = archive.Entries.Count; - int currentFile = 0; - long totalSize = archive.Entries.Sum(e => e.Length); - long extractedSize = 0; - - foreach (var entry in archive.Entries) + if (process.Id != currentProcessId) { - currentFile++; - extractedSize += entry.Length; - int progress = (int)((extractedSize * 100) / totalSize); - - fprogress.label1.Text = $"압축 해제 중... ({currentFile}/{totalFiles})"; - fprogress.label2.Text = $"{entry.FullName} ({progress}%)"; - fprogress.progressBar1.Value = progress; - Application.DoEvents(); - - string destinationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, entry.FullName); - string destinationDir = Path.GetDirectoryName(destinationPath); - - if (!Directory.Exists(destinationDir)) - Directory.CreateDirectory(destinationDir); - - if (entry.Length > 0) - entry.ExtractToFile(destinationPath, true); + process.Kill(); + process.WaitForExit(3000); // 3초 대기 } } - System.IO.File.WriteAllText("WebView2Runtime\\version.txt", fi.Length.ToString()); + // 잠시 대기 후 계속 진행 + Thread.Sleep(1000); + return true; } catch (Exception ex) { - fprogress.Hide(); - MessageBox.Show($"WebView2 Runtime 압축 해제 중 오류가 발생했습니다: {ex.Message}", "오류", MessageBoxButtons.OK, MessageBoxIcon.Error); - } - finally { - fprogress.Dispose(); + MessageBox.Show($"기존 프로그램 종료 중 오류가 발생했습니다:\n{ex.Message}\n\n" + + "작업관리자에서 수동으로 종료해주세요.", + "오류", MessageBoxButtons.OK, MessageBoxIcon.Error); + return false; } } + else + { + // 현재 실행을 취소 + return false; + } } - - SqlServerTypes.Utilities.LoadNativeAssemblies(AppDomain.CurrentDomain.BaseDirectory); - - Application.Run(new fMain()); + return true; // 단일 인스턴스 } static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) diff --git a/Project/Pub.cs b/Project/Pub.cs index eb6bdd3..843dd98 100644 --- a/Project/Pub.cs +++ b/Project/Pub.cs @@ -234,8 +234,9 @@ namespace Project InitWebView = 1; } - catch + catch(Exception ex) { + Console.WriteLine(ex.Message); InitWebView = 2; } } diff --git a/Project/Web/Controller/DashBoardController.cs b/Project/Web/Controller/DashBoardController.cs index db29bbf..8ad5471 100644 --- a/Project/Web/Controller/DashBoardController.cs +++ b/Project/Web/Controller/DashBoardController.cs @@ -463,7 +463,7 @@ namespace Project.Web.Controllers } //공용값 적용 - ApplyCommonValue(ref contents); + //ApplyCommonValue(ref contents); var resp = new HttpResponseMessage() { diff --git a/Project/Web/Controller/HomeController.cs b/Project/Web/Controller/HomeController.cs index 9888c16..b6feefd 100644 --- a/Project/Web/Controller/HomeController.cs +++ b/Project/Web/Controller/HomeController.cs @@ -28,28 +28,6 @@ namespace Project.Web.Controllers public class HomeController : BaseController { - [HttpPost] - public void Index([FromBody]string value) - { - - } - - // PUT api/values/5 - public void Put(int id, [FromBody]string value) - { - } - - // DELETE api/values/5 - public void Delete(int id) - { - } - - [HttpGet] - public string Test() - { - return "test"; - } - [HttpGet] public string TestLogin() { @@ -202,7 +180,7 @@ namespace Project.Web.Controllers info.Login.no = "dev"; info.Login.nameK = "개발자"; info.Login.dept = GInfo.name; - info.Login.level = 9; + info.Login.level = 10; info.Login.email = UInfo.email; info.Login.hp = UInfo.hp; info.Login.tel = UInfo.tel; @@ -319,36 +297,7 @@ namespace Project.Web.Controllers return resp; } - [HttpGet] - public HttpResponseMessage Index() - { - // DashBoard로 리디렉션하도록 변경 - var filePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Web", "wwwroot", "DashBoard", "index.html"); - var contents = string.Empty; - - if (System.IO.File.Exists(filePath)) - { - contents = System.IO.File.ReadAllText(filePath, System.Text.Encoding.UTF8); - } - else - { - // 파일이 없으면 404 에러 페이지 또는 기본 메시지 - contents = "

404 - File Not Found

The requested file was not found: " + filePath + "

"; - } - - //공용값 적용 - ApplyCommonValue(ref contents); - - var resp = new HttpResponseMessage() - { - Content = new StringContent( - contents, - System.Text.Encoding.UTF8, - "text/html") - }; - - return resp; - } + [HttpGet] public HttpResponseMessage GetPreviousLoginInfo() diff --git a/Project/Web/wwwroot/DashBoard/index.html b/Project/Web/wwwroot/DashBoard/index.html index 6aa93d3..f72eeaa 100644 --- a/Project/Web/wwwroot/DashBoard/index.html +++ b/Project/Web/wwwroot/DashBoard/index.html @@ -120,6 +120,7 @@ } +
diff --git a/Project/Web/wwwroot/Kuntae/index.html b/Project/Web/wwwroot/Kuntae/index.html index c7316cb..f8543c8 100644 --- a/Project/Web/wwwroot/Kuntae/index.html +++ b/Project/Web/wwwroot/Kuntae/index.html @@ -383,7 +383,7 @@ * 공통 네비게이션 컴포넌트 * 서버에서 메뉴 정보를 받아와서 동적으로 네비게이션을 생성합니다. */ - class ㄴ { + class CommonNavigation { constructor(currentPage = '') { this.currentPage = currentPage; this.menuItems = []; diff --git a/Project/fMain.cs b/Project/fMain.cs index ac262e8..54c4a7f 100644 --- a/Project/fMain.cs +++ b/Project/fMain.cs @@ -95,6 +95,7 @@ namespace Project Pub.log.Flush(); } + //ConnectionMultiplexer redisConnection; //IDatabase db; @@ -102,52 +103,23 @@ namespace Project { EnsureVisibleAndUsableSize(); this.Text = Application.ProductName + " v" + Application.ProductVersion; - Pub.init(); - - Pub.InitializeWebView2(); + + // 실행환경 체크는 fWarning에서 이미 완료됨 setToolbar(); - var f = new Dialog.fWarning(); - f.TopMost = true; - f.Show(); - _SetLang(); if (Pub.setting.FullScreen) this.WindowState = FormWindowState.Maximized; else this.WindowState = FormWindowState.Normal; this.Show(); Application.DoEvents(); - - // 데이터베이스 접속 정보 확인 - Pub.dbinfo = DatabaseConnectionString.Utility.Read(); - if (Pub.dbinfo.IsValid == false) - { - Application.DoEvents(); - this.Visible = false; - MessageBox.Show("데이터베이스 접속정보가 존재하지 않습니다\n개발부서에 접속정보를 문의하세요", "Alert", MessageBoxButtons.OK, MessageBoxIcon.Error); - Pub.dbinfo = DatabaseConnectionString.Utility.ShowForm(); - if (Pub.dbinfo.IsValid == false) - { - MessageBox.Show("데이터 베이스 정보가 없습니다\n프로그램이 정상 작동하지 않을 수 있습니다", "Alert", MessageBoxButtons.OK, MessageBoxIcon.Error); - } - this.Visible = true; - } - Properties.Settings.Default["CS"] = Pub.dbinfo.ToString(); - Properties.Settings.Default["gwcs"] = Pub.dbinfo.ToString(); - //Util.MsgE(Pub.dbinfo.ToString()); - //Data Source=K4FASQL.kr.ds.amkor.com,50150;Initial Catalog=EE;Persist Security Info=True;User ID=eeadm;Password=uJnU8a8q&DJ+ug-D;Encrypt=False;TrustServerCertificate=True - - - Pub.barcode = new Device.Barcode(); - if (!Pub.setting.Barcode.isEmpty()) Pub.barcode.PortName = Pub.setting.Barcode; + // 바코드 이벤트 연결 Pub.barcode.ReceiveData += barcode_ReceiveData; - FCOMMON.info.camIndex = Pub.setting.CamIndex; UpdateControls(); - tmDisplay.Start(); //display timer - // Start OWIN host + // Start OWIN host (실행환경 체크는 이미 완료됨) try { var options = new StartOptions(Pub.setting.WebServiceURL); @@ -164,22 +136,36 @@ namespace Project webok = false; } + // WebView2 초기화 재시도 (필요시) + if (Pub.InitWebView == 0) + { + try + { + Console.WriteLine("WebView2 재초기화 시도..."); + Pub.InitializeWebView2(); + } + catch (Exception retryEx) + { + Console.WriteLine($"WebView2 재초기화 실패: {retryEx.Message}"); + // 실패해도 계속 진행 + } + } + + // WebView2 대기 (짧게 조정) var wat = new System.Diagnostics.Stopwatch(); wat.Restart(); while (true) { if (Pub.InitWebView != 0) break; - if (wat.ElapsedMilliseconds > 5000) break; - System.Threading.Thread.Sleep(1000); + if (wat.ElapsedMilliseconds > 3000) break; // 5초에서 3초로 단축 + System.Threading.Thread.Sleep(500); // 1초에서 0.5초로 단축 Application.DoEvents(); } - - f.Dispose(); + + Console.WriteLine($"WebView2 초기화 상태: {Pub.InitWebView}"); Func_Login(); - - ///즐겨찾기 목록 갱신 Update_FavoriteSite(); @@ -187,8 +173,6 @@ namespace Project //사용기록추적 Pub.CheckNRegister3(Application.ProductName, "chi", Application.ProductVersion); - - } void Update_FavoriteSite() @@ -243,7 +227,7 @@ namespace Project //220421 FCOMMON.info.Disable_8hourover = Pub.setting.Disable8HourOver; - if (FCOMMON.info.Login.level >= 10) btDev.Visible = true; + if ( FCOMMON.info.Login.level >= 10) btDev.Visible = true; sbLogin.Text = string.Format("[{0}] ({1}-{2} T:{3}) - ({5}){4}", FCOMMON.info.Login.title, @@ -383,9 +367,9 @@ namespace Project string formkey = "WORKBOOK"; if (!ShowForm(formkey)) { - if (this.webok && Pub.InitWebView == 1 && System.Diagnostics.Debugger.IsAttached) - AddForm(formkey, new Dialog.fJobReport()); - else + //if (this.webok && Pub.InitWebView == 1 && System.Diagnostics.Debugger.IsAttached) + // AddForm(formkey, new Dialog.fJobReport()); + //else AddForm(formkey, new FPJ0000.fJobReport()); } diff --git a/Project/Dialog/fWarning.Designer.cs b/Project/fSystemCheck.Designer.cs similarity index 88% rename from Project/Dialog/fWarning.Designer.cs rename to Project/fSystemCheck.Designer.cs index 893175c..e587c34 100644 --- a/Project/Dialog/fWarning.Designer.cs +++ b/Project/fSystemCheck.Designer.cs @@ -1,6 +1,6 @@ namespace Project.Dialog { - partial class fWarning + partial class fSystemCheck { /// /// Required designer variable. @@ -36,22 +36,22 @@ this.label1.Dock = System.Windows.Forms.DockStyle.Fill; this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(543, 66); + this.label1.Size = new System.Drawing.Size(551, 127); this.label1.TabIndex = 0; this.label1.Text = " 실행 환경을 검사하고 있습니다"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // - // fWarning + // fSystemCheck // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(543, 66); + this.ClientSize = new System.Drawing.Size(551, 127); this.Controls.Add(this.label1); this.MaximizeBox = false; this.MinimizeBox = false; - this.Name = "fWarning"; + this.Name = "fSystemCheck"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "fWarning"; + this.Text = " "; this.ResumeLayout(false); } diff --git a/Project/fSystemCheck.cs b/Project/fSystemCheck.cs new file mode 100644 index 0000000..522a437 --- /dev/null +++ b/Project/fSystemCheck.cs @@ -0,0 +1,414 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using System.Net.NetworkInformation; +using System.Net; +using System.IO.Compression; +using System.IO; +using FCOMMON; +using Microsoft.Owin.Hosting; +using System.Diagnostics; + +namespace Project.Dialog +{ + public partial class fSystemCheck : Form + { + private Timer checkTimer; + public bool environmentCheckCompleted = false; + + public fSystemCheck() + { + InitializeComponent(); + + // 폼 설정 + this.Text = "GroupWare 시작 중..."; + this.FormBorderStyle = FormBorderStyle.FixedDialog; + this.ControlBox = false; + this.ShowInTaskbar = false; + this.TopMost = true; + + // 타이머 설정 + checkTimer = new Timer(); + checkTimer.Interval = 100; // 0.1초 + checkTimer.Tick += CheckTimer_Tick; + checkTimer.Start(); + + this.Load += FSystemCheck_Load; + } + + private void FSystemCheck_Load(object sender, EventArgs e) + { + // 환경 체크 시작 + this.Show(); + Application.DoEvents(); + Task.Run(() => PerformEnvironmentCheck()); + } + + private void SafeInvoke(Action action) + { + if (this.IsHandleCreated) + { + if (this.InvokeRequired) + this.Invoke(action); + else + action(); + } + } + + protected override void OnClosed(EventArgs e) + { + base.OnClosed(e); + + checkTimer?.Stop(); + checkTimer?.Dispose(); + if (components != null) + { + components.Dispose(); + } + } + private void CheckTimer_Tick(object sender, EventArgs e) + { + if (environmentCheckCompleted) + { + checkTimer.Stop(); + this.Hide(); + + // fWarning 폼 닫기 + this.Close(); + } + } + + /// + /// 실행환경 체크 수행 + /// + private async void PerformEnvironmentCheck() + { + try + { + // UI 업데이트 + this.Invoke(new Action(() => { + label1.Text = "🔍 실행환경을 검사하고 있습니다..."; + })); + + await Task.Delay(500); + + + // 1. Pub 초기화 + SafeInvoke(() => { + label1.Text = "⚙️ 시스템 초기화 중..."; + }); + + Pub.init(); + await Task.Delay(300); + + + // 0. WebView2Runtime 압축해제 체크 + SafeInvoke(() => { + label1.Text = "🌐 WebView2 Runtime 확인 중..."; + }); + await CheckAndExtractWebView2Runtime(); + + + // 2. WebView2 초기화 (메인 스레드에서 실행) + SafeInvoke(() => { + label1.Text = "🌐 WebView2 초기화 중..."; + try + { + Pub.InitializeWebView2(); + } + catch (Exception ex) + { + // COM 스레드 모드 오류 처리 + if (ex.Message.Contains("RPC_E_CHANGED_MODE") || ex.Message.Contains("스레드 모드")) + { + Console.WriteLine($"WebView2 초기화 COM 오류 (무시됨): {ex.Message}"); + // 이 오류는 무시하고 계속 진행 (fMain에서 다시 시도) + } + else + { + Console.WriteLine($"WebView2 초기화 오류: {ex.Message}"); + // 다른 심각한 오류는 무시하고 계속 (fMain에서 처리) + } + } + }); + await Task.Delay(500); + + // 3. 데이터베이스 접속 정보 확인 + SafeInvoke(() => { + label1.Text = "🗄️ 데이터베이스 연결 확인 중..."; + }); + + CheckDatabaseConnection(); + await Task.Delay(300); + + // 4. 포트 7979 사용 여부 체크 + SafeInvoke(() => { + label1.Text = "🔌 포트 7979 상태 확인 중..."; + }); + + CheckPort7979InUse(); + await Task.Delay(300); + + // 5. 바코드 설정 + SafeInvoke(() => { + label1.Text = "📊 바코드 설정 초기화 중..."; + }); + + InitializeBarcodeSettings(); + await Task.Delay(300); + + // 6. 웹서버 시작 시뮬레이션 (실제 시작은 fMain에서) + SafeInvoke(() => { + label1.Text = "🚀 웹서버 준비 중..."; + }); + + await Task.Delay(500); + + // 7. SqlServerTypes 라이브러리 로드 + SafeInvoke(() => { + label1.Text = "📚 Reporting System 로드 중..."; + }); + + SqlServerTypes.Utilities.LoadNativeAssemblies(AppDomain.CurrentDomain.BaseDirectory); + await Task.Delay(300); + + // 완료 + SafeInvoke(() => { + label1.Text = "✅ 실행환경 검사 완료"; + }); + + await Task.Delay(500); + environmentCheckCompleted = true; + } + catch (Exception ex) + { + var st = new System.Diagnostics.StackTrace(ex, true); + var frame = st.GetFrame(0); + var fileName = frame?.GetFileName() ?? "Unknown"; + var lineNumber = frame?.GetFileLineNumber() ?? 0; + var errorMsg = $"실행환경 검사 중 오류가 발생했습니다:\n{ex.Message}\n\n파일: {System.IO.Path.GetFileName(fileName)}\n줄수: {lineNumber}"; + + SafeInvoke(() => { + MessageBox.Show(errorMsg, "오류", MessageBoxButtons.OK, MessageBoxIcon.Error); + Application.Exit(); + }); + } + } + + /// + /// 데이터베이스 연결 확인 + /// + private void CheckDatabaseConnection() + { + Pub.dbinfo = DatabaseConnectionString.Utility.Read(); + if (Pub.dbinfo.IsValid == false) + { + this.Invoke(new Action(() => { + this.Visible = false; + MessageBox.Show("데이터베이스 접속정보가 존재하지 않습니다\n개발부서에 접속정보를 문의하세요", + "Alert", MessageBoxButtons.OK, MessageBoxIcon.Error); + + Pub.dbinfo = DatabaseConnectionString.Utility.ShowForm(); + if (Pub.dbinfo.IsValid == false) + { + MessageBox.Show("데이터 베이스 정보가 없습니다\n프로그램이 정상 작동하지 않을 수 있습니다", + "Alert", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + this.Visible = true; + })); + } + + Properties.Settings.Default["CS"] = Pub.dbinfo.ToString(); + Properties.Settings.Default["gwcs"] = Pub.dbinfo.ToString(); + } + + /// + /// 포트 7979가 이미 사용중인지 체크하고 경고 표시 + /// + private void CheckPort7979InUse() + { + try + { + // 현재 사용중인 TCP 포트 목록 가져오기 + IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); + TcpConnectionInformation[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpConnections(); + IPEndPoint[] tcpListeners = ipGlobalProperties.GetActiveTcpListeners(); + + // 포트 7979가 이미 사용중인지 확인 + bool port7979InUse = false; + + // TCP 연결 중에서 7979 포트 사용하는지 확인 + foreach (var tcpInfo in tcpConnInfoArray) + { + if (tcpInfo.LocalEndPoint.Port == 7979) + { + port7979InUse = true; + break; + } + } + + // TCP 리스너 중에서 7979 포트 사용하는지 확인 + if (!port7979InUse) + { + foreach (var listener in tcpListeners) + { + if (listener.Port == 7979) + { + port7979InUse = true; + break; + } + } + } + + // 포트가 이미 사용중이면 경고 메시지 표시 + if (port7979InUse) + { + this.Invoke(new Action(() => { + string warningMessage = "⚠️ 경고: 포트 7979가 이미 사용 중입니다!\n\n" + + "다른 프로그램이 포트 7979를 사용하고 있어서\n" + + "웹 서버가 정상적으로 시작되지 않을 수 있습니다.\n\n" + + "해결방법:\n" + + "1. 다른 GroupWare 프로그램을 종료하세요\n" + + "2. 작업관리자에서 관련 프로세스를 종료하세요\n" + + "3. 컴퓨터를 재시작하세요"; + + MessageBox.Show(warningMessage, "포트 충돌 경고", MessageBoxButtons.OK, MessageBoxIcon.Warning); + })); + + Pub.log.Add($"포트 7979가 이미 사용 중입니다. 웹서버 시작에 문제가 발생할 수 있습니다."); + } + } + catch (Exception ex) + { + // 포트 체크 중 오류가 발생해도 프로그램 실행은 계속 + Pub.log.AddE($"포트 7979 체크 중 오류 발생: {ex.Message}"); + Console.WriteLine($"Port check error: {ex.Message}"); + } + } + + /// + /// 바코드 설정 초기화 + /// + private void InitializeBarcodeSettings() + { + Pub.barcode = new Device.Barcode(); + if (!Pub.setting.Barcode.isEmpty()) + Pub.barcode.PortName = Pub.setting.Barcode; + + FCOMMON.info.camIndex = Pub.setting.CamIndex; + } + + + + + /// + /// WebView2Runtime 압축해제 체크 및 실행 + /// + private async Task CheckAndExtractWebView2Runtime() + { + var fi = new System.IO.FileInfo("WebView2Runtime.zip"); + if (!fi.Exists) return; + + var existlen = 0; + var webruntimepath = new System.IO.DirectoryInfo("WebView2Runtime"); + if (webruntimepath.Exists) + { + var filen = new System.IO.FileInfo("WebView2Runtime\\version.txt"); + if (filen.Exists) + { + var verstr = System.IO.File.ReadAllText(filen.FullName); + int.TryParse(verstr, out existlen); + } + } + + if (existlen != fi.Length) + { + this.Invoke(new Action(() => { + label1.Text = "📦 WebView2Runtime 압축해제 중..."; + })); + + await Task.Run(() => { + // fUnZip 폼을 메인 스레드에서 생성 + fUnZip fprogress = null; + this.Invoke(new Action(() => { + fprogress = new fUnZip(); + fprogress.TopMost = true; + fprogress.Show(); + Application.DoEvents(); + })); + + try + { + if (webruntimepath.Exists) + { + this.Invoke(new Action(() => { + fprogress.label1.Text = "기존폴더삭제"; + Application.DoEvents(); + })); + webruntimepath.Delete(true); + } + + var diruntime = new System.IO.DirectoryInfo("runtimes"); + if (diruntime.Exists) diruntime.Delete(true); + webruntimepath.Create(); + diruntime.Create(); + + using (var archive = ZipFile.OpenRead(fi.FullName)) + { + int totalFiles = archive.Entries.Count; + int currentFile = 0; + long totalSize = archive.Entries.Sum(e => e.Length); + long extractedSize = 0; + + foreach (var entry in archive.Entries) + { + currentFile++; + extractedSize += entry.Length; + int progress = (int)((extractedSize * 100) / totalSize); + + this.Invoke(new Action(() => { + fprogress.label1.Text = $"압축 해제 중... ({currentFile}/{totalFiles})"; + fprogress.label2.Text = $"{entry.FullName} ({progress}%)"; + fprogress.progressBar1.Value = progress; + Application.DoEvents(); + })); + + string destinationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, entry.FullName); + string destinationDir = Path.GetDirectoryName(destinationPath); + + if (!Directory.Exists(destinationDir)) + Directory.CreateDirectory(destinationDir); + + if (entry.Length > 0) + entry.ExtractToFile(destinationPath, true); + } + } + + System.IO.File.WriteAllText("WebView2Runtime\\version.txt", fi.Length.ToString()); + } + catch (Exception ex) + { + this.Invoke(new Action(() => { + fprogress.Hide(); + MessageBox.Show($"WebView2 Runtime 압축 해제 중 오류가 발생했습니다: {ex.Message}", + "오류", MessageBoxButtons.OK, MessageBoxIcon.Error); + })); + } + finally + { + this.Invoke(new Action(() => { + fprogress.Dispose(); + })); + } + }); + } + } + + } +} diff --git a/Project/Dialog/fWarning.resx b/Project/fSystemCheck.resx similarity index 100% rename from Project/Dialog/fWarning.resx rename to Project/fSystemCheck.resx diff --git a/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json b/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json index 3b0607f..d515e13 100644 --- a/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json +++ b/Sub/StaffLayoutCtl/.vs/StaffLayoutCtl.csproj.dtbcache.json @@ -1 +1 @@ -{"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 +{"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 69f3e69..3c8c645 100644 --- a/Sub/YARTE/.vs/YARTE.csproj.dtbcache.json +++ b/Sub/YARTE/.vs/YARTE.csproj.dtbcache.json @@ -1 +1 @@ -{"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 +{"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 09b81d0..57ddf48 100644 --- a/SubProject/CMSControl/.vs/UMSControl.csproj.dtbcache.json +++ b/SubProject/CMSControl/.vs/UMSControl.csproj.dtbcache.json @@ -1 +1 @@ -{"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 +{"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 9b042a8..3783c1b 100644 --- a/SubProject/FBS0000/.vs/FBS0000.csproj.dtbcache.json +++ b/SubProject/FBS0000/.vs/FBS0000.csproj.dtbcache.json @@ -1 +1 @@ -{"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 +{"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/FCM0000/.vs/FCM0000.csproj.dtbcache.json b/SubProject/FCM0000/.vs/FCM0000.csproj.dtbcache.json index 8528a46..fd4fdf2 100644 --- a/SubProject/FCM0000/.vs/FCM0000.csproj.dtbcache.json +++ b/SubProject/FCM0000/.vs/FCM0000.csproj.dtbcache.json @@ -1 +1 @@ -{"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 +{"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/FCOMMON/DataBaseManager.cs b/SubProject/FCOMMON/DataBaseManager.cs index 1aa0d02..ed0ca9e 100644 --- a/SubProject/FCOMMON/DataBaseManager.cs +++ b/SubProject/FCOMMON/DataBaseManager.cs @@ -6,6 +6,7 @@ using System.Data.SqlClient; using System.Windows.Forms; using FCOMMON.Models; using System.Data; +using System.Reflection; namespace FCOMMON { @@ -1801,5 +1802,218 @@ namespace FCOMMON cn2.Dispose(); return retval; } + + #region Generic Query Methods + + /// + /// Generic Query method that returns a list of objects of type T + /// + /// The type to map the results to + /// SQL query string + /// Anonymous object containing parameters + /// List of objects of type T + public static List Query(string sql, object parameters = null) where T : new() + { + var retval = new List(); + var cn = getCn(); + + try + { + cn.Open(); + var cmd = new SqlCommand(sql, cn); + + // Add parameters if provided + if (parameters != null) + { + AddParameters(cmd, parameters); + } + + var rdr = cmd.ExecuteReader(); + while (rdr.Read()) + { + var item = MapReaderToObject(rdr); + retval.Add(item); + } + rdr.Close(); + cmd.Dispose(); + } + catch (Exception ex) + { + // Log error if needed + throw new Exception($"Query<{typeof(T).Name}> failed: {ex.Message}", ex); + } + finally + { + cn.Close(); + cn.Dispose(); + } + + return retval; + } + + /// + /// Generic QuerySingle method that returns a single object of type T + /// + /// The type to map the result to + /// SQL query string + /// Anonymous object containing parameters + /// Single object of type T + /// Thrown when no data is found or more than one row is returned + public static T QuerySingle(string sql, object parameters = null) where T : new() + { + var results = Query(sql, parameters); + + if (results.Count == 0) + throw new InvalidOperationException("Sequence contains no elements"); + if (results.Count > 1) + throw new InvalidOperationException("Sequence contains more than one element"); + + return results.First(); + } + + /// + /// Generic QuerySingleOrDefault method that returns a single object of type T or default value + /// + /// The type to map the result to + /// SQL query string + /// Anonymous object containing parameters + /// Single object of type T or default value if no data found + /// Thrown when more than one row is returned + public static T QuerySingleOrDefault(string sql, object parameters = null) where T : new() + { + var results = Query(sql, parameters); + + if (results.Count == 0) + return default(T); + if (results.Count > 1) + throw new InvalidOperationException("Sequence contains more than one element"); + + return results.First(); + } + + /// + /// Execute a command with parameters and return the number of affected rows + /// + /// SQL command string + /// Anonymous object containing parameters + /// Number of affected rows + public static int Execute(string sql, object parameters = null) + { + var cn = getCn(); + int retval = 0; + + try + { + cn.Open(); + var cmd = new SqlCommand(sql, cn); + + // Add parameters if provided + if (parameters != null) + { + AddParameters(cmd, parameters); + } + + retval = cmd.ExecuteNonQuery(); + cmd.Dispose(); + } + catch (Exception ex) + { + throw new Exception($"Execute failed: {ex.Message}", ex); + } + finally + { + cn.Close(); + cn.Dispose(); + } + + return retval; + } + + /// + /// Helper method to add parameters from an anonymous object to a SqlCommand + /// + /// SqlCommand to add parameters to + /// Anonymous object containing parameters + private static void AddParameters(SqlCommand cmd, object parameters) + { + if (parameters == null) return; + + var properties = parameters.GetType().GetProperties(); + foreach (var prop in properties) + { + var value = prop.GetValue(parameters, null) ?? DBNull.Value; + cmd.Parameters.AddWithValue("@" + prop.Name, value); + } + } + + /// + /// Helper method to map a SqlDataReader to an object of type T + /// + /// The type to map to + /// SqlDataReader containing the data + /// Object of type T with mapped values + private static T MapReaderToObject(SqlDataReader reader) where T : new() + { + var obj = new T(); + var type = typeof(T); + var properties = type.GetProperties(BindingFlags.Public | BindingFlags.Instance); + + foreach (var prop in properties) + { + // Check if the property has a setter + if (!prop.CanWrite) continue; + + // Try to find a column with the same name (case insensitive) + var columnName = FindColumnName(reader, prop.Name); + if (columnName == null) continue; + + var value = reader[columnName]; + if (value == DBNull.Value) continue; + + // Convert the value to the property type if needed + try + { + if (prop.PropertyType.IsGenericType && prop.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>)) + { + // Handle nullable types + var underlyingType = Nullable.GetUnderlyingType(prop.PropertyType); + var convertedValue = Convert.ChangeType(value, underlyingType); + prop.SetValue(obj, convertedValue, null); + } + else + { + var convertedValue = Convert.ChangeType(value, prop.PropertyType); + prop.SetValue(obj, convertedValue, null); + } + } + catch + { + // If conversion fails, skip this property + } + } + + return obj; + } + + /// + /// Helper method to find a column name in the reader (case insensitive) + /// + /// SqlDataReader to search in + /// Property name to find + /// Column name if found, null otherwise + private static string FindColumnName(SqlDataReader reader, string propertyName) + { + for (int i = 0; i < reader.FieldCount; i++) + { + var columnName = reader.GetName(i); + if (string.Equals(columnName, propertyName, StringComparison.OrdinalIgnoreCase)) + { + return columnName; + } + } + return null; + } + + #endregion } } diff --git a/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json b/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json index 307aebb..2d1237d 100644 --- a/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json +++ b/SubProject/FEQ0000/.vs/FEQ0000.csproj.dtbcache.json @@ -1 +1 @@ -{"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 +{"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/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json b/SubProject/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json index b26da66..be73404 100644 --- a/SubProject/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json +++ b/SubProject/FPJ0000/.vs/FPJ0000.csproj.dtbcache.json @@ -1 +1 @@ -{"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 +{"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