commit f8f127a2c77c35f8ea2d3129c548bdc1ac0c789c Author: lihansani Date: Mon Jul 13 09:26:08 2026 +0800 first commit diff --git a/DCIT.App.csproj b/DCIT.App.csproj new file mode 100644 index 0000000..bec43bf --- /dev/null +++ b/DCIT.App.csproj @@ -0,0 +1,27 @@ + + + WinExe + net6.0-windows + true + disable + disable + latest + DCIT.App + + x64 + false + + + + + + + + + tools\DocTo\docto.exe + PreserveNewest + PreserveNewest + true + + + \ No newline at end of file diff --git a/Forms/AutoExtractPreviewForm.cs b/Forms/AutoExtractPreviewForm.cs new file mode 100644 index 0000000..8a37193 --- /dev/null +++ b/Forms/AutoExtractPreviewForm.cs @@ -0,0 +1,154 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Linq; +using System.Windows.Forms; +using DCIT.Core.Models; + +namespace DCIT.App.Forms +{ + public sealed class AutoExtractPreviewForm : Form + { + private readonly BindingList _items; + private readonly DataGridView _grid; + + public AutoExtractPreviewForm(IList candidates) + { + Text = "自动提取预览"; + StartPosition = FormStartPosition.CenterParent; + MinimumSize = new Size(980, 540); + Width = 1200; + Height = 720; + + _items = new BindingList(candidates.ToList()); + _grid = new DataGridView + { + Dock = DockStyle.Fill, + AllowUserToAddRows = false, + AllowUserToDeleteRows = false, + AutoGenerateColumns = false, + MultiSelect = true, + SelectionMode = DataGridViewSelectionMode.FullRowSelect, + DataSource = _items, + }; + + _grid.Columns.Add(new DataGridViewCheckBoxColumn + { + DataPropertyName = nameof(ExtractionCandidate.Append), + HeaderText = "追加", + Width = 60, + }); + _grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(ExtractionCandidate.CategoryDisplay), + HeaderText = "提取类型", + Width = 180, + ReadOnly = true, + }); + _grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(ExtractionCandidate.OriginalText), + HeaderText = "原文本", + Width = 260, + ReadOnly = true, + }); + _grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(ExtractionCandidate.StatisticDisplay), + HeaderText = "统计值", + Width = 180, + ReadOnly = true, + }); + _grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(ExtractionCandidate.FirstDocumentPath), + HeaderText = "首次出现文档", + Width = 360, + ReadOnly = true, + }); + _grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(ExtractionCandidate.FirstOccurrenceOrder), + HeaderText = "首次出现顺序", + Width = 120, + ReadOnly = true, + }); + + var buttonPanel = new FlowLayoutPanel + { + Dock = DockStyle.Bottom, + Height = 44, + Padding = new Padding(8), + FlowDirection = FlowDirection.RightToLeft, + }; + + var confirmButton = new Button + { + Text = "追加选中项", + AutoSize = true, + }; + confirmButton.Click += ConfirmButton_Click; + + var cancelButton = new Button + { + Text = "取消", + AutoSize = true, + }; + cancelButton.Click += delegate + { + DialogResult = DialogResult.Cancel; + Close(); + }; + + var selectAllButton = new Button + { + Text = "全选", + AutoSize = true, + }; + selectAllButton.Click += delegate + { + foreach (var item in _items) + { + item.Append = true; + } + + _grid.Refresh(); + }; + + var clearButton = new Button + { + Text = "全不选", + AutoSize = true, + }; + clearButton.Click += delegate + { + foreach (var item in _items) + { + item.Append = false; + } + + _grid.Refresh(); + }; + + buttonPanel.Controls.Add(confirmButton); + buttonPanel.Controls.Add(cancelButton); + buttonPanel.Controls.Add(clearButton); + buttonPanel.Controls.Add(selectAllButton); + + Controls.Add(_grid); + Controls.Add(buttonPanel); + } + + public IList SelectedCandidates + { + get { return _items.Where(item => item.Append).ToList(); } + } + + private void ConfirmButton_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.OK; + Close(); + } + } +} diff --git a/Forms/MainForm.cs b/Forms/MainForm.cs new file mode 100644 index 0000000..d5858f0 --- /dev/null +++ b/Forms/MainForm.cs @@ -0,0 +1,3380 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using System.Windows.Forms; +using DCIT.App.Presentation; +using DCIT.Core.Models; +using DCIT.Core.Services; +using DCIT.Core.Utilities; + +namespace DCIT.App.Forms +{ + public sealed class MainForm : Form + { + private readonly ConfigurationService _configurationService; + private readonly LogService _logService; + private readonly FileScanService _fileScanService; + private readonly RuleService _ruleService; + private readonly AutoExtractService _autoExtractService; + private readonly IDocumentProcessingService _documentProcessingService; + private readonly IUserDialogService _dialogService; + private readonly BatchExecutionPlanner _batchExecutionPlanner = new BatchExecutionPlanner(); + + private readonly BindingList _replaceItems = new BindingList(); + private readonly BindingList _restoreItems = new BindingList(); + private readonly BindingList _rules = new BindingList(); + + private readonly TabControl _tabControl = new TabControl(); + private readonly TabPage _replaceTab = new TabPage("替换"); + private readonly TabPage _restoreTab = new TabPage("恢复"); + private readonly TabPage _settingsTab = new TabPage("设置"); + + private readonly TextBox _txtReplaceSource = new TextBox(); + private readonly TextBox _txtReplaceOutput = new TextBox(); + private readonly TextBox _txtRuleFile = new TextBox(); + private readonly TextBox _txtRestoreSource = new TextBox(); + private readonly TextBox _txtRestoreOutput = new TextBox(); + private readonly ComboBox _cmbRestoreDiffInput = new ComboBox(); + + private readonly DataGridView _gridReplace = new DataGridView(); + private readonly DataGridView _gridRestore = new DataGridView(); + private readonly DataGridView _gridRules = new DataGridView(); + private SplitContainer _settingsRuleListSplitContainer; + private readonly RichTextBox _logBox = new RichTextBox(); + private readonly ContextMenuStrip _logContextMenu = new ContextMenuStrip(); + private readonly ContextMenuStrip _replaceGridContextMenu = new ContextMenuStrip(); + private readonly ContextMenuStrip _restoreGridContextMenu = new ContextMenuStrip(); + private readonly ContextMenuStrip _ruleGridContextMenu = new ContextMenuStrip(); + + private readonly Button _btnAutoExtract = new Button(); + private readonly Button _btnStartReplace = new Button(); + private readonly Button _btnStopReplace = new Button(); + private readonly Button _btnStartRestore = new Button(); + private readonly Button _btnStopRestore = new Button(); + private readonly Button _btnBrowseReplaceSource = new Button(); + private readonly Button _btnBrowseReplaceOutput = new Button(); + private readonly Button _btnSelectAllReplace = new Button(); + private readonly Button _btnClearReplace = new Button(); + private readonly Button _btnBrowseRestoreSource = new Button(); + private readonly Button _btnBrowseRestoreOutput = new Button(); + private readonly Button _btnSelectAllRestore = new Button(); + private readonly Button _btnClearRestore = new Button(); + private readonly Button _btnUndoAutoExtract = new Button(); + private readonly Button _btnSaveRules = new Button(); + private readonly Button _btnOpenRules = new Button(); + + private readonly ProgressBar _replaceTotalProgress = new ProgressBar(); + private readonly ProgressBar _replaceFileProgress = new ProgressBar(); + private readonly ProgressBar _restoreTotalProgress = new ProgressBar(); + private readonly ProgressBar _restoreFileProgress = new ProgressBar(); + + private readonly Label _lblReplaceRuntime = new Label(); + private readonly Label _lblRestoreRuntime = new Label(); + + private readonly CheckBox _chkJsonDiffEncryption = new CheckBox(); + private readonly CheckBox _chkEnableImageReplacement = new CheckBox(); + private readonly CheckBox _chkUseFixedImageSeed = new CheckBox(); + private readonly CheckBox _chkExtractKeywords = new CheckBox(); + private readonly CheckBox _chkExtractWords = new CheckBox(); + private readonly CheckBox _chkExtractSentences = new CheckBox(); + private readonly CheckBox _chkKeywordFrequency = new CheckBox(); + private readonly CheckBox _chkKeywordTfIdf = new CheckBox(); + private readonly CheckBox _chkKeywordTextRank = new CheckBox(); + private readonly CheckBox _chkChineseWords = new CheckBox(); + private readonly CheckBox _chkEnglishWords = new CheckBox(); + private readonly CheckBox _chkChineseSentences = new CheckBox(); + private readonly CheckBox _chkEnglishSentences = new CheckBox(); + private readonly CheckBox _chkExcludeEmails = new CheckBox(); + private readonly NumericUpDown _numKeywordCount = new NumericUpDown(); + private readonly NumericUpDown _numWordCount = new NumericUpDown(); + private readonly NumericUpDown _numSentenceCount = new NumericUpDown(); + private readonly NumericUpDown _numFixedImageSeed = new NumericUpDown(); + private readonly NumericUpDown _numMinChineseLength = new NumericUpDown(); + private readonly NumericUpDown _numMinEnglishLength = new NumericUpDown(); + private readonly TextBox _txtSentenceDelimiters = new TextBox(); + + private AppConfig _config; + private ConfigurationLoadResult _configurationLoadResult; + private RuleFile _ruleFile = new RuleFile(); + private List _lastAutoExtractRuleIds = new List(); + + private CancellationTokenSource _replaceScanCancellation; + private CancellationTokenSource _restoreScanCancellation; + private CancellationTokenSource _autoExtractCancellation; + private CancellationTokenSource _replaceExecutionCancellation; + private CancellationTokenSource _restoreExecutionCancellation; + private bool _isAutoExtractRunning; + private bool _isReplaceRunning; + private bool _isRestoreRunning; + private bool _skipConfigSaveOnClose; + private bool _settingsRuleListInitialWidthApplied; + private int _lastReplaceRuntimeFlushTick; + private int _lastRestoreRuntimeFlushTick; + + private const int RuntimeUiRefreshIntervalMilliseconds = 100; + + public MainForm( + ConfigurationService configurationService, + LogService logService, + FileScanService fileScanService, + RuleService ruleService, + AutoExtractService autoExtractService, + IDocumentProcessingService documentProcessingService, + IUserDialogService dialogService) + { + _configurationService = configurationService; + _logService = logService; + _fileScanService = fileScanService; + _ruleService = ruleService; + _autoExtractService = autoExtractService; + _documentProcessingService = documentProcessingService; + _dialogService = dialogService; + + _configurationLoadResult = _configurationService.Load(); + _config = _configurationLoadResult.Config; + + Text = "WORD 2007 格式调整软件"; + StartPosition = FormStartPosition.CenterScreen; + MinimumSize = new Size(1400, 900); + Width = 1600; + Height = 980; + Font = new Font("Microsoft YaHei UI", 9F); + + InitializeLayout(); + BindData(); + ApplyConfigToUi(); + + _logService.EntryWritten += LogService_EntryWritten; + _logService.WriteFailed += LogService_WriteFailed; + FormClosing += MainForm_FormClosing; + Shown += MainForm_Shown; + } + + private void InitializeLayout() + { + var splitContainer = new SplitContainer + { + Dock = DockStyle.Fill, + Orientation = Orientation.Horizontal, + SplitterDistance = 720, + }; + + _tabControl.Dock = DockStyle.Fill; + _tabControl.TabPages.Add(_replaceTab); + _tabControl.TabPages.Add(_restoreTab); + _tabControl.TabPages.Add(_settingsTab); + + splitContainer.Panel1.Controls.Add(_tabControl); + + _logBox.Dock = DockStyle.Fill; + _logBox.ReadOnly = true; + _logBox.BackColor = Color.White; + _logBox.Font = new Font("Consolas", 10F); + splitContainer.Panel2.Controls.Add(_logBox); + + Controls.Add(splitContainer); + + BuildReplaceTab(); + BuildRestoreTabV2(); + BuildSettingsTab(); + ConfigureContextMenus(); + } + + private void BuildReplaceTab() + { + var root = new TableLayoutPanel + { + Dock = DockStyle.Fill, + ColumnCount = 1, + RowCount = 3, + }; + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + root.RowStyles.Add(new RowStyle(SizeType.Percent, 100F)); + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + + var pathPanel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 6, + AutoSize = true, + Padding = new Padding(8), + }; + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 120F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 120F)); + + _btnBrowseReplaceSource.Text = "选择原始文件夹"; + _btnBrowseReplaceSource.Dock = DockStyle.Fill; + _btnBrowseReplaceOutput.Text = "选择替换文件夹"; + _btnBrowseReplaceOutput.Dock = DockStyle.Fill; + _btnSelectAllReplace.Text = "全选"; + _btnSelectAllReplace.AutoSize = true; + _btnClearReplace.Text = "全不选"; + _btnClearReplace.AutoSize = true; + _btnAutoExtract.Text = "自动提取"; + _btnStartReplace.Text = "开始替换"; + _btnStopReplace.Text = "停止"; + _btnStopReplace.Enabled = false; + _lblReplaceRuntime.AutoSize = true; + _lblReplaceRuntime.Text = "当前文件 0/0 | 当前规则 - | 当前文件命中 0 | 累计命中 0"; + + AddLabeledRow(pathPanel, 0, "原始文件夹", _txtReplaceSource, _btnBrowseReplaceSource, "替换文件夹", _txtReplaceOutput, _btnBrowseReplaceOutput); + + _btnBrowseReplaceSource.Click += async delegate { await BrowseFolderIntoTextBoxAsync(_txtReplaceSource, RefreshReplaceScanAsync); }; + _btnBrowseReplaceOutput.Click += async delegate { await BrowseFolderIntoTextBoxAsync(_txtReplaceOutput, RefreshReplaceScanAsync); }; + _txtReplaceSource.Leave += async delegate { await RefreshReplaceScanAsync(); }; + _txtReplaceOutput.Leave += async delegate { await RefreshReplaceScanAsync(); }; + _btnSelectAllReplace.Click += delegate { SetSelection(_replaceItems, true); }; + _btnClearReplace.Click += delegate { SetSelection(_replaceItems, false); }; + _btnAutoExtract.Click += async delegate { await RunAutoExtractAsync(); }; + _btnStartReplace.Click += StartReplaceExecution_Click; + _btnStopReplace.Click += StopReplaceOrAutoExtract_Click; + + ConfigureFileGrid(_gridReplace, isRestoreGrid: false); + + var gridPanel = new Panel { Dock = DockStyle.Fill, Padding = new Padding(8, 0, 8, 0) }; + _gridReplace.Dock = DockStyle.Fill; + gridPanel.Controls.Add(_gridReplace); + + var bottomPanel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 1, + AutoSize = true, + Padding = new Padding(8), + }; + + var buttonPanel = new FlowLayoutPanel + { + Dock = DockStyle.Top, + AutoSize = true, + FlowDirection = FlowDirection.LeftToRight, + }; + buttonPanel.Controls.Add(_btnSelectAllReplace); + buttonPanel.Controls.Add(_btnClearReplace); + buttonPanel.Controls.Add(_btnAutoExtract); + buttonPanel.Controls.Add(_btnStartReplace); + buttonPanel.Controls.Add(_btnStopReplace); + + bottomPanel.Controls.Add(buttonPanel); + bottomPanel.Controls.Add(CreateProgressLine("总进度", _replaceTotalProgress)); + bottomPanel.Controls.Add(CreateProgressLine("单文件进度", _replaceFileProgress)); + bottomPanel.Controls.Add(_lblReplaceRuntime); + + root.Controls.Add(pathPanel, 0, 0); + root.Controls.Add(gridPanel, 0, 1); + root.Controls.Add(bottomPanel, 0, 2); + _replaceTab.Controls.Add(root); + } + + private void BuildRestoreTab() + { + var root = new TableLayoutPanel + { + Dock = DockStyle.Fill, + ColumnCount = 1, + RowCount = 3, + }; + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + root.RowStyles.Add(new RowStyle(SizeType.Percent, 100F)); + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + + var pathPanel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 6, + AutoSize = true, + Padding = new Padding(8), + }; + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 120F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 120F)); + + var btnBrowseRestoreSource = new Button { Text = "选择替换文件夹", Dock = DockStyle.Fill }; + var btnBrowseRestoreOutput = new Button { Text = "选择恢复文件夹", Dock = DockStyle.Fill }; + var btnSelectAllRestore = new Button { Text = "全选", AutoSize = true }; + var btnClearRestore = new Button { Text = "全不选", AutoSize = true }; + _btnStartRestore.Text = "开始恢复"; + _btnStopRestore.Text = "停止"; + _btnStopRestore.Enabled = false; + _lblRestoreRuntime.AutoSize = true; + _lblRestoreRuntime.Text = "当前文件 0/0 | 当前规则 - | 当前文件命中 0 | 累计命中 0"; + + AddLabeledRow(pathPanel, 0, "替换文件夹", _txtRestoreSource, btnBrowseRestoreSource, "恢复文件夹", _txtRestoreOutput, btnBrowseRestoreOutput); + + btnBrowseRestoreSource.Click += async delegate { await BrowseFolderIntoTextBoxAsync(_txtRestoreSource, RefreshRestoreScanAsync); }; + btnBrowseRestoreOutput.Click += async delegate { await BrowseFolderIntoTextBoxAsync(_txtRestoreOutput, RefreshRestoreScanAsync); }; + _txtRestoreSource.Leave += async delegate { await RefreshRestoreScanAsync(); }; + _txtRestoreOutput.Leave += async delegate { await RefreshRestoreScanAsync(); }; + btnSelectAllRestore.Click += delegate { SetSelection(_restoreItems, true); }; + btnClearRestore.Click += delegate { SetSelection(_restoreItems, false); }; + _btnStartRestore.Click += StartRestoreExecution_Click; + + ConfigureFileGrid(_gridRestore, isRestoreGrid: true); + + var gridPanel = new Panel { Dock = DockStyle.Fill, Padding = new Padding(8, 0, 8, 0) }; + _gridRestore.Dock = DockStyle.Fill; + gridPanel.Controls.Add(_gridRestore); + + var bottomPanel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 1, + AutoSize = true, + Padding = new Padding(8), + }; + + var buttonPanel = new FlowLayoutPanel + { + Dock = DockStyle.Top, + AutoSize = true, + FlowDirection = FlowDirection.LeftToRight, + }; + buttonPanel.Controls.Add(btnSelectAllRestore); + buttonPanel.Controls.Add(btnClearRestore); + buttonPanel.Controls.Add(_btnStartRestore); + buttonPanel.Controls.Add(_btnStopRestore); + + bottomPanel.Controls.Add(buttonPanel); + bottomPanel.Controls.Add(CreateProgressLine("总进度", _restoreTotalProgress)); + bottomPanel.Controls.Add(CreateProgressLine("单文件进度", _restoreFileProgress)); + bottomPanel.Controls.Add(_lblRestoreRuntime); + + root.Controls.Add(pathPanel, 0, 0); + root.Controls.Add(gridPanel, 0, 1); + root.Controls.Add(bottomPanel, 0, 2); + _restoreTab.Controls.Add(root); + } + + private void BuildRestoreTabV2() + { + var root = new TableLayoutPanel + { + Dock = DockStyle.Fill, + ColumnCount = 1, + RowCount = 3, + }; + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + root.RowStyles.Add(new RowStyle(SizeType.Percent, 100F)); + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + + var pathPanel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 6, + AutoSize = true, + Padding = new Padding(8), + }; + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 120F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F)); + pathPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 120F)); + + _btnBrowseRestoreSource.Text = "选择替换文件夹"; + _btnBrowseRestoreSource.Dock = DockStyle.Fill; + _btnBrowseRestoreOutput.Text = "选择恢复文件夹"; + _btnBrowseRestoreOutput.Dock = DockStyle.Fill; + _btnSelectAllRestore.Text = "全选"; + _btnSelectAllRestore.AutoSize = true; + _btnClearRestore.Text = "全不选"; + _btnClearRestore.AutoSize = true; + + _btnStartRestore.Text = "开始恢复"; + _btnStopRestore.Text = "停止"; + _btnStopRestore.Enabled = false; + _lblRestoreRuntime.AutoSize = true; + _lblRestoreRuntime.Text = "当前文件 0/0 | 当前规则 - | 当前文件命中 0 | 累计命中 0"; + + _cmbRestoreDiffInput.DropDownStyle = ComboBoxStyle.DropDownList; + _cmbRestoreDiffInput.Items.Clear(); + _cmbRestoreDiffInput.Items.Add(".diff"); + _cmbRestoreDiffInput.Items.Add(".bmp"); + _cmbRestoreDiffInput.SelectedIndex = 0; + + AddLabeledRow(pathPanel, 0, "替换文件夹", _txtRestoreSource, _btnBrowseRestoreSource, "恢复文件夹", _txtRestoreOutput, _btnBrowseRestoreOutput); + pathPanel.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + pathPanel.Controls.Add(new Label { Text = "差异文件格式", Anchor = AnchorStyles.Left, AutoSize = true }, 0, 1); + pathPanel.Controls.Add(_cmbRestoreDiffInput, 1, 1); + + _btnBrowseRestoreSource.Click += async delegate { await BrowseFolderIntoTextBoxAsync(_txtRestoreSource, RefreshRestoreScanAsync); }; + _btnBrowseRestoreOutput.Click += async delegate { await BrowseFolderIntoTextBoxAsync(_txtRestoreOutput, RefreshRestoreScanAsync); }; + _txtRestoreSource.Leave += async delegate { await RefreshRestoreScanAsync(); }; + _txtRestoreOutput.Leave += async delegate { await RefreshRestoreScanAsync(); }; + _cmbRestoreDiffInput.SelectedIndexChanged += async delegate { await RefreshRestoreScanAsync(); }; + _btnSelectAllRestore.Click += delegate { SetSelection(_restoreItems, true); }; + _btnClearRestore.Click += delegate { SetSelection(_restoreItems, false); }; + _btnStartRestore.Click += StartRestoreExecution_Click; + _btnStopRestore.Click += StopRestore_Click; + + ConfigureFileGrid(_gridRestore, isRestoreGrid: true); + + var gridPanel = new Panel { Dock = DockStyle.Fill, Padding = new Padding(8, 0, 8, 0) }; + _gridRestore.Dock = DockStyle.Fill; + gridPanel.Controls.Add(_gridRestore); + + var bottomPanel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 1, + AutoSize = true, + Padding = new Padding(8), + }; + + var buttonPanel = new FlowLayoutPanel + { + Dock = DockStyle.Top, + AutoSize = true, + FlowDirection = FlowDirection.LeftToRight, + }; + buttonPanel.Controls.Add(_btnSelectAllRestore); + buttonPanel.Controls.Add(_btnClearRestore); + buttonPanel.Controls.Add(_btnStartRestore); + buttonPanel.Controls.Add(_btnStopRestore); + + bottomPanel.Controls.Add(buttonPanel); + bottomPanel.Controls.Add(CreateProgressLine("总进度", _restoreTotalProgress)); + bottomPanel.Controls.Add(CreateProgressLine("单文件进度", _restoreFileProgress)); + bottomPanel.Controls.Add(_lblRestoreRuntime); + + root.Controls.Add(pathPanel, 0, 0); + root.Controls.Add(gridPanel, 0, 1); + root.Controls.Add(bottomPanel, 0, 2); + _restoreTab.Controls.Add(root); + } + + private void BuildSettingsTab() + { + var root = new TableLayoutPanel + { + Dock = DockStyle.Fill, + ColumnCount = 1, + RowCount = 3, + }; + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + root.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + root.RowStyles.Add(new RowStyle(SizeType.Percent, 100F)); + + var topPanel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 5, + AutoSize = true, + Padding = new Padding(8), + }; + topPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + topPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F)); + topPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + topPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 110F)); + topPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 140F)); + + _btnOpenRules.Text = "打开规则"; + _btnSaveRules.Text = "保存规则"; + _btnUndoAutoExtract.Text = "撤销自动提取"; + _btnUndoAutoExtract.Enabled = false; + + topPanel.Controls.Add(new Label { Text = "规则文件", Anchor = AnchorStyles.Left, AutoSize = true }, 0, 0); + _txtRuleFile.Dock = DockStyle.Fill; + topPanel.Controls.Add(_txtRuleFile, 1, 0); + topPanel.Controls.Add(_btnOpenRules, 2, 0); + topPanel.Controls.Add(_btnSaveRules, 3, 0); + topPanel.Controls.Add(_btnUndoAutoExtract, 4, 0); + + _btnOpenRules.Click += OpenRules_Click; + _btnSaveRules.Click += SaveRules_Click; + _btnUndoAutoExtract.Click += UndoAutoExtract_Click; + + var actionPanel = new FlowLayoutPanel + { + Dock = DockStyle.Top, + AutoSize = true, + Padding = new Padding(8, 0, 8, 8), + }; + + var btnAddRule = new Button { Text = "新增规则", AutoSize = true }; + var btnDeleteRule = new Button { Text = "删除规则", AutoSize = true }; + var btnMoveUp = new Button { Text = "上移", AutoSize = true }; + var btnMoveDown = new Button { Text = "下移", AutoSize = true }; + + btnAddRule.Click += AddRule_Click; + btnDeleteRule.Click += DeleteRule_Click; + btnMoveUp.Click += MoveRuleUp_Click; + btnMoveDown.Click += MoveRuleDown_Click; + + actionPanel.Controls.Add(btnAddRule); + actionPanel.Controls.Add(btnDeleteRule); + actionPanel.Controls.Add(btnMoveUp); + actionPanel.Controls.Add(btnMoveDown); + + var settingsAndGrid = new SplitContainer + { + Dock = DockStyle.Fill, + Orientation = Orientation.Vertical, + SplitterDistance = 350, + }; + _settingsRuleListSplitContainer = settingsAndGrid; + settingsAndGrid.HandleCreated += delegate { ApplySettingsRuleListInitialWidth(settingsAndGrid); }; + settingsAndGrid.SizeChanged += delegate { ApplySettingsRuleListInitialWidth(settingsAndGrid); }; + settingsAndGrid.VisibleChanged += delegate { ApplySettingsRuleListInitialWidth(settingsAndGrid); }; + _tabControl.SelectedIndexChanged += async delegate + { + ApplySettingsRuleListInitialWidth(settingsAndGrid); + await RefreshScanOnTabSwitchAsync(); + }; + + settingsAndGrid.Panel1.Controls.Add(BuildAutoExtractSettingsGroup()); + settingsAndGrid.Panel2.Controls.Add(BuildRulesGridPanel()); + + root.Controls.Add(topPanel, 0, 0); + root.Controls.Add(actionPanel, 0, 1); + root.Controls.Add(settingsAndGrid, 0, 2); + _settingsTab.Controls.Add(root); + } + + private void ApplySettingsRuleListInitialWidth(SplitContainer splitContainer) + { + if (_settingsRuleListInitialWidthApplied || splitContainer == null || splitContainer.Orientation != Orientation.Vertical) + { + return; + } + + if (splitContainer.ClientSize.Width < 600) + { + return; + } + + var availableWidth = splitContainer.ClientSize.Width - splitContainer.SplitterWidth; + if (availableWidth <= 0 || availableWidth < splitContainer.Panel1MinSize + splitContainer.Panel2MinSize) + { + return; + } + + var leftWidth = availableWidth / 3; + var maxLeftWidth = splitContainer.ClientSize.Width - splitContainer.SplitterWidth - splitContainer.Panel2MinSize; + if (maxLeftWidth < splitContainer.Panel1MinSize) + { + return; + } + + leftWidth = Math.Max(splitContainer.Panel1MinSize, Math.Min(maxLeftWidth, leftWidth)); + splitContainer.SplitterDistance = leftWidth; + _settingsRuleListInitialWidthApplied = true; + } + + private void ConfigureContextMenus() + { + ConfigureLogContextMenu(); + ConfigureFileGridContextMenu(_gridReplace, _replaceGridContextMenu); + ConfigureFileGridContextMenu(_gridRestore, _restoreGridContextMenu); + ConfigureRuleGridContextMenu(); + } + + private void ConfigureLogContextMenu() + { + _logContextMenu.Items.Clear(); + _logContextMenu.Items.Add("复制全部内容", null, delegate { CopyAllLogs(); }); + _logContextMenu.Items.Add("清空日志", null, delegate { ClearLogBox(); }); + _logBox.ContextMenuStrip = _logContextMenu; + } + + private void ConfigureFileGridContextMenu(DataGridView grid, ContextMenuStrip menu) + { + menu.Items.Clear(); + menu.Items.Add("删除", null, delegate + { + if (ReferenceEquals(grid, _gridReplace)) + { + DeleteSelectedFileItems(_replaceItems, grid); + } + else + { + DeleteSelectedFileItems(_restoreItems, grid); + } + }); + menu.Items.Add("启用", null, delegate { SetSelectedFileItems(grid, true); }); + menu.Items.Add("不启用", null, delegate { SetSelectedFileItems(grid, false); }); + grid.ContextMenuStrip = menu; + } + + private void ConfigureRuleGridContextMenu() + { + _ruleGridContextMenu.Items.Clear(); + _ruleGridContextMenu.Items.Add("删除", null, delegate { DeleteSelectedRules(); }); + _ruleGridContextMenu.Items.Add("启用", null, delegate { SetSelectedRulesEnabled(true); }); + _ruleGridContextMenu.Items.Add("不启用", null, delegate { SetSelectedRulesEnabled(false); }); + _gridRules.ContextMenuStrip = _ruleGridContextMenu; + } + + private Control BuildAutoExtractSettingsGroup() + { + var group = new GroupBox + { + Text = "自动提取设置", + Dock = DockStyle.Fill, + Padding = new Padding(12), + }; + + var layout = new TableLayoutPanel + { + Dock = DockStyle.Fill, + ColumnCount = 2, + AutoScroll = true, + }; + layout.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 55F)); + layout.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 45F)); + + _chkJsonDiffEncryption.Text = "JSON 差异文件加密"; + _chkEnableImageReplacement.Text = "启用图片替换"; + _chkUseFixedImageSeed.Text = "使用固定图像随机种子"; + _chkExtractKeywords.Text = "提取关键字"; + _chkExtractWords.Text = "提取高频词"; + _chkExtractSentences.Text = "提取高频句"; + _chkKeywordFrequency.Text = "关键字算法: 词频"; + _chkKeywordTfIdf.Text = "关键字算法: TF-IDF"; + _chkKeywordTextRank.Text = "关键字算法: TextRank"; + _chkChineseWords.Text = "统计中文词"; + _chkEnglishWords.Text = "统计英文词"; + _chkChineseSentences.Text = "统计中文句"; + _chkEnglishSentences.Text = "统计英文句"; + _chkExcludeEmails.Text = "排除邮箱地址"; + + ConfigureNumeric(_numKeywordCount, 1, 1000); + ConfigureNumeric(_numWordCount, 1, 1000); + ConfigureNumeric(_numSentenceCount, 1, 1000); + ConfigureNumeric(_numFixedImageSeed, 0, int.MaxValue); + ConfigureNumeric(_numMinChineseLength, 1, 50); + ConfigureNumeric(_numMinEnglishLength, 1, 50); + + AddSettingRow(layout, 0, _chkJsonDiffEncryption, new Label()); + AddSettingRow(layout, 1, _chkEnableImageReplacement, new Label()); + AddSettingRow(layout, 2, _chkUseFixedImageSeed, _numFixedImageSeed); + AddSettingRow(layout, 3, _chkExtractKeywords, _chkKeywordFrequency); + AddSettingRow(layout, 4, _chkExtractWords, _chkKeywordTfIdf); + AddSettingRow(layout, 5, _chkExtractSentences, _chkKeywordTextRank); + AddSettingRow(layout, 6, new Label { Text = "关键字最大数量", Anchor = AnchorStyles.Left, AutoSize = true }, _numKeywordCount); + AddSettingRow(layout, 7, new Label { Text = "高频词最大数量", Anchor = AnchorStyles.Left, AutoSize = true }, _numWordCount); + AddSettingRow(layout, 8, new Label { Text = "高频句最大数量", Anchor = AnchorStyles.Left, AutoSize = true }, _numSentenceCount); + AddSettingRow(layout, 9, _chkChineseWords, _chkEnglishWords); + AddSettingRow(layout, 10, _chkChineseSentences, _chkEnglishSentences); + AddSettingRow(layout, 11, new Label { Text = "中文最小长度", Anchor = AnchorStyles.Left, AutoSize = true }, _numMinChineseLength); + AddSettingRow(layout, 12, new Label { Text = "英文最小长度", Anchor = AnchorStyles.Left, AutoSize = true }, _numMinEnglishLength); + AddSettingRow(layout, 13, new Label { Text = "句子分隔符", Anchor = AnchorStyles.Left, AutoSize = true }, _txtSentenceDelimiters); + AddSettingRow(layout, 14, _chkExcludeEmails, new Label()); + + _chkUseFixedImageSeed.CheckedChanged += delegate + { + _numFixedImageSeed.Enabled = _chkUseFixedImageSeed.Checked; + }; + + group.Controls.Add(layout); + return group; + } + + private Control BuildRulesGridPanel() + { + ConfigureRuleGrid(_gridRules); + var panel = new Panel + { + Dock = DockStyle.Fill, + Padding = new Padding(8), + }; + panel.Controls.Add(_gridRules); + _gridRules.Dock = DockStyle.Fill; + return panel; + } + + private void BindData() + { + _gridReplace.DataSource = _replaceItems; + _gridRestore.DataSource = _restoreItems; + _gridRules.DataSource = _rules; + } + + private void ApplyConfigToUi() + { + _txtReplaceSource.Text = _config.ReplacePage.SourceDirectory ?? string.Empty; + _txtReplaceOutput.Text = _config.ReplacePage.OutputDirectory ?? string.Empty; + _txtRuleFile.Text = _config.ReplacePage.RuleFilePath ?? string.Empty; + _txtRestoreSource.Text = _config.RestorePage.ReplaceDirectory ?? string.Empty; + _txtRestoreOutput.Text = _config.RestorePage.RestoreDirectory ?? string.Empty; + _cmbRestoreDiffInput.SelectedItem = string.Equals(_config.RestorePage.DiffInputFormat, ".bmp", StringComparison.OrdinalIgnoreCase) + ? ".bmp" + : ".diff"; + + var auto = _config.Settings.AutoExtract; + _chkJsonDiffEncryption.Checked = _config.Settings.JsonDiffEncryption; + _chkEnableImageReplacement.Checked = _config.Settings.EnableImageReplacement; + _chkUseFixedImageSeed.Checked = _config.Settings.UseFixedImageSeed; + _numFixedImageSeed.Value = Math.Max(_numFixedImageSeed.Minimum, Math.Min(_numFixedImageSeed.Maximum, _config.Settings.FixedImageSeed)); + _numFixedImageSeed.Enabled = _chkUseFixedImageSeed.Checked; + _chkExtractKeywords.Checked = auto.ExtractKeywords; + _chkExtractWords.Checked = auto.ExtractHighFrequencyWords; + _chkExtractSentences.Checked = auto.ExtractHighFrequencySentences; + _chkKeywordFrequency.Checked = auto.UseKeywordFrequency; + _chkKeywordTfIdf.Checked = auto.UseKeywordTfIdf; + _chkKeywordTextRank.Checked = auto.UseKeywordTextRank; + _chkChineseWords.Checked = auto.CountChineseWords; + _chkEnglishWords.Checked = auto.CountEnglishWords; + _chkChineseSentences.Checked = auto.CountChineseSentences; + _chkEnglishSentences.Checked = auto.CountEnglishSentences; + _chkExcludeEmails.Checked = auto.ExcludeEmailAddresses; + _numKeywordCount.Value = auto.MaxKeywordCount; + _numWordCount.Value = auto.MaxWordCount; + _numSentenceCount.Value = auto.MaxSentenceCount; + _numMinChineseLength.Value = auto.MinChineseWordLength; + _numMinEnglishLength.Value = auto.MinEnglishWordLength; + _txtSentenceDelimiters.Text = auto.SentenceDelimiters ?? string.Empty; + + if (!string.IsNullOrWhiteSpace(_txtRuleFile.Text) && File.Exists(_txtRuleFile.Text)) + { + LoadRuleFile(_txtRuleFile.Text); + } + } + + private void CaptureUiToConfig() + { + _config.ReplacePage.SourceDirectory = _txtReplaceSource.Text.Trim(); + _config.ReplacePage.OutputDirectory = _txtReplaceOutput.Text.Trim(); + _config.ReplacePage.RuleFilePath = _txtRuleFile.Text.Trim(); + _config.RestorePage.ReplaceDirectory = _txtRestoreSource.Text.Trim(); + _config.RestorePage.RestoreDirectory = _txtRestoreOutput.Text.Trim(); + _config.RestorePage.DiffInputFormat = GetSelectedRestoreDiffInputFormat(); + + var auto = _config.Settings.AutoExtract; + _config.Settings.JsonDiffEncryption = _chkJsonDiffEncryption.Checked; + _config.Settings.EnableImageReplacement = _chkEnableImageReplacement.Checked; + _config.Settings.UseFixedImageSeed = _chkUseFixedImageSeed.Checked; + _config.Settings.FixedImageSeed = Decimal.ToInt32(_numFixedImageSeed.Value); + auto.ExtractKeywords = _chkExtractKeywords.Checked; + auto.ExtractHighFrequencyWords = _chkExtractWords.Checked; + auto.ExtractHighFrequencySentences = _chkExtractSentences.Checked; + auto.UseKeywordFrequency = _chkKeywordFrequency.Checked; + auto.UseKeywordTfIdf = _chkKeywordTfIdf.Checked; + auto.UseKeywordTextRank = _chkKeywordTextRank.Checked; + auto.CountChineseWords = _chkChineseWords.Checked; + auto.CountEnglishWords = _chkEnglishWords.Checked; + auto.CountChineseSentences = _chkChineseSentences.Checked; + auto.CountEnglishSentences = _chkEnglishSentences.Checked; + auto.ExcludeEmailAddresses = _chkExcludeEmails.Checked; + auto.MaxKeywordCount = Decimal.ToInt32(_numKeywordCount.Value); + auto.MaxWordCount = Decimal.ToInt32(_numWordCount.Value); + auto.MaxSentenceCount = Decimal.ToInt32(_numSentenceCount.Value); + auto.MinChineseWordLength = Decimal.ToInt32(_numMinChineseLength.Value); + auto.MinEnglishWordLength = Decimal.ToInt32(_numMinEnglishLength.Value); + auto.SentenceDelimiters = _txtSentenceDelimiters.Text; + } + + private async void MainForm_Shown(object sender, EventArgs e) + { + _logService.Info("APP_START", "程序启动。"); + if (_configurationLoadResult.IsCorrupted) + { + var message = "config.json 已损坏或无法解析,当前禁止执行替换、恢复和自动提取。是否重建默认配置?" + + Environment.NewLine + + _configurationLoadResult.ErrorMessage; + var result = ShowMessage(message, "配置文件损坏", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); + if (result == DialogResult.Yes) + { + _config = _configurationService.CreateDefault(); + ApplyConfigToUi(); + _configurationService.Save(_config); + _logService.Warning("CONFIG_RESET", "配置文件已重建为默认值。", _configurationLoadResult.ErrorMessage); + } + else + { + _logService.Error("CONFIG_BLOCK", "配置文件损坏且用户拒绝重建默认配置。", _configurationLoadResult.ErrorMessage); + _skipConfigSaveOnClose = true; + Close(); + return; + } + } + else if (_configurationLoadResult.IsMissing) + { + _logService.Info("CONFIG_DEFAULT", "config.json 不存在,当前使用默认配置。"); + } + + await RefreshReplaceScanAsync(); + await RefreshRestoreScanAsync(); + UpdateActionStates(); + } + + private void MainForm_FormClosing(object sender, FormClosingEventArgs e) + { + if (_isAutoExtractRunning || _isReplaceRunning || _isRestoreRunning) + { + e.Cancel = true; + ShowMessage("当前仍有任务在执行,请先停止任务并等待当前文件处理完成。", "WORD 2007 格式调整软件", MessageBoxButtons.OK, MessageBoxIcon.Information); + return; + } + + try + { + if (!_skipConfigSaveOnClose) + { + CaptureUiToConfig(); + _configurationService.Save(_config); + } + } + catch (Exception ex) + { + ShowMessage("保存配置失败: " + ex.Message, "WORD 2007 格式调整软件", MessageBoxButtons.OK, MessageBoxIcon.Warning); + } + } + + private void LogService_EntryWritten(object sender, LogEntry entry) + { + if (InvokeRequired) + { + BeginInvoke(new Action(LogService_EntryWritten), sender, entry); + return; + } + + var color = Color.Black; + switch (entry.Level) + { + case LogLevel.Info: + color = Color.Green; + break; + case LogLevel.Warning: + color = Color.DarkOrange; + break; + case LogLevel.Error: + color = Color.Red; + break; + } + + _logBox.SelectionStart = _logBox.TextLength; + _logBox.SelectionColor = color; + _logBox.AppendText(string.Format("{0:HH:mm:ss} [{1}] {2} {3}", entry.Timestamp, entry.Level.ToString().ToUpperInvariant(), entry.EventCode, entry.Message) + Environment.NewLine); + if (!string.IsNullOrWhiteSpace(entry.Detail)) + { + _logBox.SelectionColor = Color.Black; + _logBox.AppendText(IndentBlock(entry.Detail) + Environment.NewLine); + } + + _logBox.SelectionStart = _logBox.TextLength; + _logBox.ScrollToCaret(); + FlushLogBox(); + } + + private void LogService_WriteFailed(object sender, LogWriteFailureEventArgs e) + { + if (InvokeRequired) + { + BeginInvoke(new Action(LogService_WriteFailed), sender, e); + return; + } + + var detail = string.Format( + "日志文件写入失败,当前日志路径: {0}{1}{2}", + e.LogFilePath, + Environment.NewLine, + e.Exception.Message); + + _logBox.SelectionStart = _logBox.TextLength; + _logBox.SelectionColor = Color.Red; + _logBox.AppendText(string.Format("{0:HH:mm:ss} [ERROR] LOG_WRITE_FAIL 日志文件写入失败", DateTime.Now) + Environment.NewLine); + _logBox.SelectionColor = Color.Black; + _logBox.AppendText(IndentBlock(detail) + Environment.NewLine); + _logBox.SelectionStart = _logBox.TextLength; + _logBox.ScrollToCaret(); + FlushLogBox(); + + if (_isAutoExtractRunning && _autoExtractCancellation != null && !_autoExtractCancellation.IsCancellationRequested) + { + _autoExtractCancellation.Cancel(); + } + + if (_isReplaceRunning && _replaceExecutionCancellation != null && !_replaceExecutionCancellation.IsCancellationRequested) + { + _replaceExecutionCancellation.Cancel(); + } + + if (_isRestoreRunning && _restoreExecutionCancellation != null && !_restoreExecutionCancellation.IsCancellationRequested) + { + _restoreExecutionCancellation.Cancel(); + } + + ShowMessage( + "日志文件当前无法继续写入。当前正在处理的文件会在可控状态结束后停止,后续文件不会继续处理。" + + Environment.NewLine + + detail, + "日志异常", + MessageBoxButtons.OK, + MessageBoxIcon.Warning); + } + + private void FlushLogBox() + { + FlushControl(_logBox, forceRefresh: false); + } + + private string GetAllLogText() + { + return _logBox.Text; + } + + private static string IndentBlock(string value) + { + if (string.IsNullOrWhiteSpace(value)) + { + return string.Empty; + } + + var normalized = value.Replace("\r\n", "\n").Replace('\r', '\n'); + return " " + normalized.Replace("\n", Environment.NewLine + " "); + } + + private string BuildReplaceScanStartDetail(string sourceDirectory, string configuredOutputDirectory, string effectiveOutputDirectory) + { + var builder = new StringBuilder(); + AppendKeyValue(builder, "原始文件夹", sourceDirectory); + AppendKeyValue(builder, "替换文件夹(输入)", configuredOutputDirectory); + AppendKeyValue(builder, "替换文件夹(生效)", effectiveOutputDirectory); + return builder.ToString().TrimEnd(); + } + + private string BuildReplaceScanDoneDetail(IList items) + { + var builder = new StringBuilder(); + AppendKeyValue(builder, "候选数量", (items == null ? 0 : items.Count).ToString()); + AppendScanItems(builder, items); + return builder.ToString().TrimEnd(); + } + + private string BuildRestoreScanStartDetail(string replaceDirectory, string configuredOutputDirectory, string effectiveOutputDirectory, string diffInputFormat) + { + var builder = new StringBuilder(); + AppendKeyValue(builder, "替换文件夹", replaceDirectory); + AppendKeyValue(builder, "恢复文件夹(输入)", configuredOutputDirectory); + AppendKeyValue(builder, "恢复文件夹(生效)", effectiveOutputDirectory); + AppendKeyValue(builder, "差异文件格式", diffInputFormat); + return builder.ToString().TrimEnd(); + } + + private string BuildRestoreScanDoneDetail(IList items, string diffInputFormat) + { + var builder = new StringBuilder(); + AppendKeyValue(builder, "候选数量", (items == null ? 0 : items.Count).ToString()); + AppendKeyValue(builder, "差异文件格式", diffInputFormat); + AppendScanItems(builder, items); + return builder.ToString().TrimEnd(); + } + + private string BuildReplaceBatchPlanDetail(IList selectedItems, BatchExecutionPlan plan, RuleFile executionRuleFile, bool encryptDiff, int? fixedImageSeed) + { + var builder = new StringBuilder(); + AppendKeyValue(builder, "原始文件夹", _txtReplaceSource.Text.Trim()); + AppendKeyValue(builder, "替换文件夹", _txtReplaceOutput.Text.Trim()); + AppendKeyValue(builder, "规则文件", _txtRuleFile.Text.Trim()); + AppendKeyValue(builder, "差异 JSON 加密", encryptDiff ? "是" : "否"); + AppendKeyValue(builder, "图片替换", _chkEnableImageReplacement.Checked ? "启用" : "禁用"); + AppendKeyValue(builder, "固定图片种子", fixedImageSeed.HasValue ? fixedImageSeed.Value.ToString() : "否"); + AppendKeyValue(builder, "规则总数", executionRuleFile == null || executionRuleFile.Rules == null ? "0" : executionRuleFile.Rules.Count.ToString()); + AppendKeyValue(builder, "勾选文件数", selectedItems == null ? "0" : selectedItems.Count.ToString()); + AppendKeyValue(builder, "实际执行数", plan == null ? "0" : plan.ExecutionItems.Count.ToString()); + AppendKeyValue(builder, "预跳过数", plan == null ? "0" : plan.SkippedItems.Count.ToString()); + AppendKeyValue(builder, "并发度", plan == null ? "0" : plan.DegreeOfParallelism.ToString()); + if (plan != null && plan.SkippedItems.Count > 0) + { + builder.AppendLine("预跳过项目:"); + foreach (var skipped in plan.SkippedItems) + { + builder.AppendLine("- " + NormalizeDetailValue(skipped.Item == null ? string.Empty : skipped.Item.SourcePath)); + AppendKeyValue(builder, " 原因", skipped.Message); + AppendKeyValue(builder, " 冲突路径", skipped.ConflictingPath); + } + } + + builder.AppendLine("执行项目:"); + AppendScanItems(builder, plan == null ? null : plan.ExecutionItems.ToList()); + return builder.ToString().TrimEnd(); + } + + private string BuildRestoreBatchPlanDetail(IList selectedItems, BatchExecutionPlan plan) + { + var builder = new StringBuilder(); + AppendKeyValue(builder, "替换文件夹", _txtRestoreSource.Text.Trim()); + AppendKeyValue(builder, "恢复文件夹", _txtRestoreOutput.Text.Trim()); + AppendKeyValue(builder, "差异文件格式", GetSelectedRestoreDiffInputFormat()); + AppendKeyValue(builder, "规则文件", _txtRuleFile.Text.Trim()); + AppendKeyValue(builder, "勾选文件数", selectedItems == null ? "0" : selectedItems.Count.ToString()); + AppendKeyValue(builder, "实际执行数", plan == null ? "0" : plan.ExecutionItems.Count.ToString()); + AppendKeyValue(builder, "预跳过数", plan == null ? "0" : plan.SkippedItems.Count.ToString()); + AppendKeyValue(builder, "并发度", plan == null ? "0" : plan.DegreeOfParallelism.ToString()); + if (plan != null && plan.SkippedItems.Count > 0) + { + builder.AppendLine("预跳过项目:"); + foreach (var skipped in plan.SkippedItems) + { + builder.AppendLine("- " + NormalizeDetailValue(skipped.Item == null ? string.Empty : skipped.Item.SourcePath)); + AppendKeyValue(builder, " 原因", skipped.Message); + AppendKeyValue(builder, " 冲突路径", skipped.ConflictingPath); + } + } + + builder.AppendLine("执行项目:"); + AppendScanItems(builder, plan == null ? null : plan.ExecutionItems.ToList()); + return builder.ToString().TrimEnd(); + } + + private string BuildReplaceFileStartDetail(FileScanItem item, int displayIndex, int totalCount) + { + return BuildFileExecutionDetail("替换", item, displayIndex, totalCount, includeResultFiles: false, textOperationCount: null, imageOperationCount: null, bmpPath: null, exception: null); + } + + private string BuildReplaceFileDoneDetail(FileScanItem item, FileProcessResult result, int displayIndex, int totalCount) + { + return BuildFileExecutionDetail( + "替换", + item, + displayIndex, + totalCount, + includeResultFiles: true, + textOperationCount: result == null ? null : (int?)result.TextOperationCount, + imageOperationCount: result == null ? null : (int?)result.ImageOperationCount, + bmpPath: result == null ? null : result.BmpPath, + exception: null); + } + + private string BuildReplaceFileFailDetail(FileScanItem item, Exception exception, int displayIndex, int totalCount) + { + return BuildFileExecutionDetail("替换", item, displayIndex, totalCount, includeResultFiles: true, textOperationCount: null, imageOperationCount: null, bmpPath: null, exception: exception); + } + + private string BuildRestoreFileStartDetail(FileScanItem item, int displayIndex, int totalCount) + { + return BuildFileExecutionDetail("恢复", item, displayIndex, totalCount, includeResultFiles: false, textOperationCount: null, imageOperationCount: null, bmpPath: null, exception: null); + } + + private string BuildRestoreFileDoneDetail(FileScanItem item, FileProcessResult result, int displayIndex, int totalCount) + { + return BuildFileExecutionDetail( + "恢复", + item, + displayIndex, + totalCount, + includeResultFiles: true, + textOperationCount: result == null ? null : (int?)result.TextOperationCount, + imageOperationCount: result == null ? null : (int?)result.ImageOperationCount, + bmpPath: result == null ? null : result.BmpPath, + exception: null); + } + + private string BuildRestoreFileFailDetail(FileScanItem item, Exception exception, int displayIndex, int totalCount) + { + return BuildFileExecutionDetail("恢复", item, displayIndex, totalCount, includeResultFiles: true, textOperationCount: null, imageOperationCount: null, bmpPath: null, exception: exception); + } + + private string BuildFileExecutionDetail( + string operationName, + FileScanItem item, + int displayIndex, + int totalCount, + bool includeResultFiles, + int? textOperationCount, + int? imageOperationCount, + string bmpPath, + Exception exception) + { + var builder = new StringBuilder(); + AppendKeyValue(builder, "操作", operationName); + AppendKeyValue(builder, "序号", string.Format("{0}/{1}", displayIndex, totalCount)); + AppendFileSnapshot(builder, "源文件", item == null ? null : item.SourcePath); + AppendKeyValue(builder, "目标输出", item == null ? null : item.OutputPath); + AppendKeyValue(builder, "差异文件", item == null ? null : item.DiffPath); + if (includeResultFiles) + { + AppendFileSnapshot(builder, "目标输出", item == null ? null : item.OutputPath); + AppendFileSnapshot(builder, "差异文件", item == null ? null : item.DiffPath); + AppendFileSnapshot(builder, "BMP 差异文件", bmpPath); + } + + if (textOperationCount.HasValue) + { + AppendKeyValue(builder, "文本命中/恢复数", textOperationCount.Value.ToString()); + } + + if (imageOperationCount.HasValue) + { + AppendKeyValue(builder, "图片命中/恢复数", imageOperationCount.Value.ToString()); + } + + AppendExceptionDetail(builder, exception); + return builder.ToString().TrimEnd(); + } + + private static void AppendScanItems(StringBuilder builder, IList items) + { + if (builder == null) + { + return; + } + + if (items == null || items.Count == 0) + { + builder.AppendLine("候选项: "); + return; + } + + var maxCount = Math.Min(items.Count, 20); + for (var index = 0; index < maxCount; index++) + { + var item = items[index]; + builder.AppendLine(string.Format("[{0}]", index + 1)); + AppendFileSnapshot(builder, " 源文件", item == null ? null : item.SourcePath); + AppendKeyValue(builder, " 目标输出", item == null ? null : item.OutputPath); + AppendKeyValue(builder, " 差异文件", item == null ? null : item.DiffPath); + AppendKeyValue(builder, " 勾选", item != null && item.IsSelected ? "是" : "否"); + AppendKeyValue(builder, " 状态", item == null ? null : item.Status.ToString()); + } + + if (items.Count > maxCount) + { + builder.AppendLine(string.Format("... 其余 {0} 项省略", items.Count - maxCount)); + } + } + + private static void AppendFileSnapshot(StringBuilder builder, string label, string path) + { + if (builder == null) + { + return; + } + + AppendKeyValue(builder, label + "路径", path); + if (string.IsNullOrWhiteSpace(path)) + { + return; + } + + try + { + if (!File.Exists(path)) + { + AppendKeyValue(builder, label + "存在", "否"); + return; + } + + var info = new FileInfo(path); + AppendKeyValue(builder, label + "存在", "是"); + AppendKeyValue(builder, label + "大小(bytes)", info.Length.ToString()); + AppendKeyValue(builder, label + "属性", info.Attributes.ToString()); + AppendKeyValue(builder, label + "只读", info.IsReadOnly ? "是" : "否"); + AppendKeyValue(builder, label + "最后写入时间", info.LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss.fff")); + AppendKeyValue(builder, label + "最后写入时间(UTC)", info.LastWriteTimeUtc.ToString("yyyy-MM-dd HH:mm:ss.fff")); + AppendKeyValue(builder, label + "SHA256", SafeComputeFileFingerprint(path)); + } + catch (Exception ex) + { + AppendKeyValue(builder, label + "快照错误", ex.GetType().Name + ": " + ex.Message); + } + } + + private static void AppendExceptionDetail(StringBuilder builder, Exception exception) + { + if (builder == null || exception == null) + { + return; + } + + AppendKeyValue(builder, "异常类型", exception.GetType().FullName); + AppendKeyValue(builder, "异常消息", exception.Message); + if (exception.InnerException != null) + { + AppendKeyValue(builder, "内部异常", exception.InnerException.GetType().FullName + ": " + exception.InnerException.Message); + } + + AppendKeyValue(builder, "异常堆栈", exception.ToString()); + } + + private static void AppendKeyValue(StringBuilder builder, string key, string value) + { + if (builder == null) + { + return; + } + + builder.Append(key ?? string.Empty); + builder.Append(": "); + builder.AppendLine(NormalizeDetailValue(value)); + } + + private static string SafeComputeFileFingerprint(string path) + { + if (string.IsNullOrWhiteSpace(path)) + { + return ""; + } + + try + { + return HashUtility.ComputeFileSha256Base64(path); + } + catch (Exception ex) + { + return ""; + } + } + + private static string NormalizeDetailValue(string value) + { + return string.IsNullOrWhiteSpace(value) ? "" : value; + } + + private void CopyAllLogs() + { + var text = GetAllLogText(); + if (string.IsNullOrEmpty(text)) + { + return; + } + + try + { + Clipboard.SetText(text); + } + catch + { + } + } + + private void ClearLogBox() + { + _logBox.Clear(); + } + + private async Task RefreshScanOnTabSwitchAsync() + { + try + { + if (_tabControl.SelectedTab == _replaceTab) + { + await RefreshReplaceScanAsync(); + } + else if (_tabControl.SelectedTab == _restoreTab) + { + await RefreshRestoreScanAsync(); + } + } + catch (OperationCanceledException) + { + } + } + + private async Task RefreshReplaceScanAsync() + { + _replaceScanCancellation?.Cancel(); + _replaceScanCancellation = new CancellationTokenSource(); + var token = _replaceScanCancellation.Token; + + try + { + var source = _txtReplaceSource.Text.Trim(); + if (string.IsNullOrWhiteSpace(source) || !Directory.Exists(source)) + { + _replaceItems.Clear(); + _lblReplaceRuntime.Text = "当前文件 0/0 | 当前规则 - | 当前文件命中 0 | 累计命中 0"; + FlushReplaceRuntimeUi(forceRefresh: true); + UpdateActionStates(); + return; + } + + var output = GetReplacePreviewOutputDirectory(source); + if (!string.IsNullOrWhiteSpace(_txtReplaceOutput.Text.Trim()) && string.IsNullOrWhiteSpace(output)) + { + foreach (var message in _fileScanService.ValidateReplaceDirectories(source, _txtReplaceOutput.Text.Trim())) + { + _logService.Error("SCAN_BLOCK", message); + } + } + + _logService.Info("SCAN_START", "开始扫描替换候选文件。", BuildReplaceScanStartDetail(source, _txtReplaceOutput.Text.Trim(), output)); + var ruleFile = CreateExecutionRuleFile(); + var items = await Task.Run(() => _fileScanService.ScanReplaceCandidates(source, output, ruleFile), token); + if (token.IsCancellationRequested) + { + return; + } + + ReplaceBinding(_replaceItems, items); + _lblReplaceRuntime.Text = string.Format( + "当前文件 0/{0} | 当前规则 - | 当前文件命中 0 | 累计命中 0", + items.Count); + FlushReplaceRuntimeUi(forceRefresh: true); + _logService.Info("SCAN_DONE", string.Format("替换候选文件扫描完成,共 {0} 项。", items.Count), BuildReplaceScanDoneDetail(items)); + UpdateActionStates(); + } + catch (OperationCanceledException) + { + } + catch (Exception ex) + { + _logService.Error("SCAN_FAIL", "替换候选文件扫描失败。", ex.Message); + } + } + + private async Task RefreshRestoreScanAsync() + { + _restoreScanCancellation?.Cancel(); + _restoreScanCancellation = new CancellationTokenSource(); + var token = _restoreScanCancellation.Token; + + try + { + var source = _txtRestoreSource.Text.Trim(); + if (string.IsNullOrWhiteSpace(source) || !Directory.Exists(source)) + { + _restoreItems.Clear(); + _lblRestoreRuntime.Text = "当前文件 0/0 | 当前规则 - | 当前文件命中 0 | 累计命中 0"; + FlushRestoreRuntimeUi(forceRefresh: true); + UpdateActionStates(); + return; + } + + var output = GetRestorePreviewOutputDirectory(source); + var diffInputFormat = GetSelectedRestoreDiffInputFormat(); + if (!string.IsNullOrWhiteSpace(_txtRestoreOutput.Text.Trim()) && string.IsNullOrWhiteSpace(output)) + { + foreach (var message in _fileScanService.ValidateRestoreDirectories(source, _txtRestoreOutput.Text.Trim())) + { + _logService.Error("RESTORE_SCAN_BLOCK", message); + } + } + + _logService.Info("RESTORE_SCAN_START", "开始扫描恢复候选文件。", BuildRestoreScanStartDetail(source, _txtRestoreOutput.Text.Trim(), output, diffInputFormat)); + var items = await Task.Run(() => _fileScanService.ScanRestoreCandidates(source, output, diffInputFormat), token); + if (token.IsCancellationRequested) + { + return; + } + + ReplaceBinding(_restoreItems, items); + _lblRestoreRuntime.Text = string.Format( + "当前文件 0/{0} | 当前规则 - | 当前文件命中 0 | 累计命中 0", + items.Count); + FlushRestoreRuntimeUi(forceRefresh: true); + _logService.Info("RESTORE_SCAN_DONE", string.Format("恢复候选文件扫描完成,共 {0} 项。", items.Count), BuildRestoreScanDoneDetail(items, diffInputFormat)); + UpdateActionStates(); + } + catch (OperationCanceledException) + { + } + catch (Exception ex) + { + _logService.Error("RESTORE_SCAN_FAIL", "恢复候选文件扫描失败。", ex.Message); + } + } + + private async Task RunAutoExtractAsync() + { + var selectedFiles = _replaceItems.Where(item => item.IsSelected).Select(item => item.SourcePath).ToList(); + if (selectedFiles.Count == 0) + { + ShowMessage("未勾选任何文件,无法执行自动提取。", "自动提取", MessageBoxButtons.OK, MessageBoxIcon.Information); + return; + } + + CaptureUiToConfig(); + _autoExtractCancellation = new CancellationTokenSource(); + _isAutoExtractRunning = true; + SetRuleEditingEnabled(false); + _btnStopReplace.Enabled = true; + UpdateActionStates(); + _replaceTotalProgress.Maximum = Math.Max(selectedFiles.Count, 1); + _replaceTotalProgress.Value = 0; + _replaceFileProgress.Value = 0; + + _logService.Info("EXTRACT_START", string.Format("开始自动提取,勾选文件数={0}。", selectedFiles.Count)); + try + { + var progress = new Progress(value => + { + _replaceTotalProgress.Maximum = Math.Max(value.Total, 1); + _replaceTotalProgress.Value = Math.Min(value.Current, _replaceTotalProgress.Maximum); + _replaceFileProgress.Style = ProgressBarStyle.Marquee; + _lblReplaceRuntime.Text = value.Message; + }); + + var result = await _autoExtractService.ExtractAsync( + selectedFiles, + _config.Settings.AutoExtract, + _rules.ToList(), + progress, + _autoExtractCancellation.Token); + + _replaceFileProgress.Style = ProgressBarStyle.Blocks; + _replaceFileProgress.Value = 100; + foreach (var warning in result.Warnings) + { + _logService.Warning("EXTRACT_SKIP", warning); + } + + if (result.Candidates.Count == 0) + { + ShowMessage("未提取到可用项。", "自动提取", MessageBoxButtons.OK, MessageBoxIcon.Information); + _logService.Info("EXTRACT_DONE", "自动提取完成,但未提取到可用项。"); + return; + } + + var preview = _dialogService.ShowAutoExtractPreview(this, result.Candidates); + if (preview.DialogResult != DialogResult.OK) + { + _logService.Info("EXTRACT_DONE", "自动提取预览已取消,未追加规则。"); + return; + } + + var selectedCandidates = preview.SelectedCandidates ?? Array.Empty(); + AppendAutoExtractRules(selectedCandidates); + var skippedCount = result.Candidates.Count - selectedCandidates.Count; + var summary = string.Format("自动提取完成。提取={0},追加={1},跳过={2}。", result.Candidates.Count, selectedCandidates.Count, skippedCount); + ShowMessage(summary, "自动提取", MessageBoxButtons.OK, MessageBoxIcon.Information); + _logService.Info("EXTRACT_DONE", summary); + } + catch (OperationCanceledException) + { + _logService.Warning("EXTRACT_CANCEL", "自动提取已停止。"); + } + catch (Exception ex) + { + _logService.Error("EXTRACT_FAIL", "自动提取失败。", ex.ToString()); + ShowMessage("自动提取失败: " + ex.Message, "自动提取", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + finally + { + _isAutoExtractRunning = false; + SetRuleEditingEnabled(true); + _btnStopReplace.Enabled = false; + _replaceFileProgress.Style = ProgressBarStyle.Blocks; + UpdateActionStates(); + } + } + + private void AppendAutoExtractRules(IList candidates) + { + if (candidates.Count == 0) + { + return; + } + + var newRuleIds = new List(); + foreach (var candidate in candidates) + { + var rule = _ruleService.CreateAutoExtractRule(candidate, _rules.ToList()); + _rules.Add(rule); + newRuleIds.Add(rule.Id); + } + + _lastAutoExtractRuleIds = newRuleIds; + _btnUndoAutoExtract.Enabled = true; + + var report = _ruleService.Validate(new RuleFile { Rules = _rules.ToList() }); + if (report.Issues.Count > 0) + { + var text = string.Join(Environment.NewLine, report.Issues.Select(_ruleService.FormatIssue)); + ShowMessage(text, "规则检查", MessageBoxButtons.OK, report.HasErrors ? MessageBoxIcon.Warning : MessageBoxIcon.Information); + foreach (var issue in report.Issues) + { + LogRuleIssue(issue); + } + } + + _tabControl.SelectedTab = _settingsTab; + if (_rules.Count > 0) + { + var firstIndex = _rules.ToList().FindIndex(rule => newRuleIds.Contains(rule.Id)); + if (firstIndex >= 0) + { + _gridRules.ClearSelection(); + if (_gridRules.Rows[firstIndex].Cells.Count > 0) + { + _gridRules.CurrentCell = _gridRules.Rows[firstIndex].Cells[0]; + } + + _gridRules.Rows[firstIndex].Selected = true; + try + { + _gridRules.FirstDisplayedScrollingRowIndex = firstIndex; + } + catch (InvalidOperationException) + { + } + } + } + } + + private void OpenRules_Click(object sender, EventArgs e) + { + using (var dialog = new OpenFileDialog()) + { + dialog.Filter = "规则文件 (*.rule)|*.rule|所有文件 (*.*)|*.*"; + if (dialog.ShowDialog(this) != DialogResult.OK) + { + return; + } + + LoadRuleFile(dialog.FileName); + _txtRuleFile.Text = dialog.FileName; + } + } + + private void SaveRules_Click(object sender, EventArgs e) + { + try + { + var path = _txtRuleFile.Text.Trim(); + if (string.IsNullOrWhiteSpace(path)) + { + using (var dialog = new SaveFileDialog()) + { + dialog.Filter = "规则文件 (*.rule)|*.rule"; + dialog.DefaultExt = "rule"; + if (dialog.ShowDialog(this) != DialogResult.OK) + { + return; + } + + path = dialog.FileName; + _txtRuleFile.Text = path; + } + } + + _ruleFile.Rules = _rules.ToList(); + var report = _ruleService.Validate(_ruleFile); + foreach (var issue in report.Issues) + { + LogRuleIssue(issue); + } + + if (report.Issues.Count > 0) + { + var summary = string.Join(Environment.NewLine, report.Issues.Select(_ruleService.FormatIssue)); + ShowMessage(summary, "规则检查", MessageBoxButtons.OK, report.HasErrors ? MessageBoxIcon.Warning : MessageBoxIcon.Information); + if (report.HasErrors) + { + return; + } + } + + _ruleService.Save(path, _ruleFile); + _logService.Info("RULE_SAVE", "规则文件已保存。", path); + } + catch (Exception ex) + { + _logService.Error("RULE_SAVE_FAIL", "保存规则文件失败。", ex.Message); + ShowMessage("保存规则文件失败: " + ex.Message, "规则文件", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void UndoAutoExtract_Click(object sender, EventArgs e) + { + if (_lastAutoExtractRuleIds.Count == 0) + { + return; + } + + for (var index = _rules.Count - 1; index >= 0; index--) + { + if (_lastAutoExtractRuleIds.Contains(_rules[index].Id)) + { + _rules.RemoveAt(index); + } + } + + _logService.Info("EXTRACT_UNDO", string.Format("已撤销最近一次自动提取追加的 {0} 条规则。", _lastAutoExtractRuleIds.Count)); + _lastAutoExtractRuleIds.Clear(); + _btnUndoAutoExtract.Enabled = false; + } + + private void AddRule_Click(object sender, EventArgs e) + { + var nextIndex = _rules.Count + 1; + _rules.Add(new RuleDefinition + { + Id = "MR" + nextIndex.ToString("0000"), + Name = "MANUAL-" + nextIndex.ToString("0000"), + IsEnabled = true, + MatchMode = RuleMatchMode.PlainText, + Target = RuleTarget.DocumentContent, + Note = string.Empty, + }); + } + + private void DeleteRule_Click(object sender, EventArgs e) + { + DeleteSelectedRules(); + } + + private void MoveRuleUp_Click(object sender, EventArgs e) + { + MoveCurrentRule(-1); + } + + private void MoveRuleDown_Click(object sender, EventArgs e) + { + MoveCurrentRule(1); + } + + private void MoveCurrentRule(int delta) + { + if (_gridRules.CurrentRow == null) + { + return; + } + + var currentIndex = _gridRules.CurrentRow.Index; + var nextIndex = currentIndex + delta; + if (currentIndex < 0 || nextIndex < 0 || nextIndex >= _rules.Count) + { + return; + } + + var item = _rules[currentIndex]; + _rules.RemoveAt(currentIndex); + _rules.Insert(nextIndex, item); + _gridRules.ClearSelection(); + _gridRules.Rows[nextIndex].Selected = true; + } + + private async void StartReplaceExecution_Click(object sender, EventArgs e) + { + if (_isReplaceRunning || _isRestoreRunning) + { + return; + } + + if (!TryPersistConfigFromUi()) + { + return; + } + + var selectedItems = _replaceItems.Where(item => item.IsSelected).ToList(); + if (selectedItems.Count == 0) + { + ShowMessage("未勾选任何替换文件。", "开始替换", MessageBoxButtons.OK, MessageBoxIcon.Information); + return; + } + + var validationMessages = GetReplaceExecutionValidationMessages(); + if (validationMessages.Count > 0) + { + foreach (var message in validationMessages) + { + _logService.Error("REPLACE_BLOCK", message); + } + + ShowMessage(string.Join(Environment.NewLine, validationMessages), "开始替换", MessageBoxButtons.OK, MessageBoxIcon.Warning); + return; + } + + RuleFile executionRuleFile; + if (!PrepareRuleExecutionWithBlockingErrors(out executionRuleFile)) + { + return; + } + + var emptyReplacementRules = _rules.Where(rule => rule.IsEnabled && string.IsNullOrEmpty(rule.ReplacementText)).ToList(); + if (emptyReplacementRules.Count > 0) + { + var warning = string.Format("当前存在 {0} 条启用规则的替换文本为空,执行后会删除命中的原始内容。是否继续?", emptyReplacementRules.Count); + if (ShowMessage(warning, "强提示", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) != DialogResult.Yes) + { + return; + } + } + + await ExecuteReplaceBatchAsync(selectedItems, executionRuleFile); + } + + private async void StartRestoreExecution_Click(object sender, EventArgs e) + { + if (_isReplaceRunning || _isRestoreRunning) + { + return; + } + + if (!TryPersistConfigFromUi()) + { + return; + } + + var selectedItems = _restoreItems.Where(item => item.IsSelected).ToList(); + if (selectedItems.Count == 0) + { + ShowMessage("未勾选任何恢复文件。", "开始恢复", MessageBoxButtons.OK, MessageBoxIcon.Information); + return; + } + + var validationMessages = GetRestoreExecutionValidationMessages(); + if (validationMessages.Count > 0) + { + foreach (var message in validationMessages) + { + _logService.Error("RESTORE_BLOCK", message); + } + + ShowMessage(string.Join(Environment.NewLine, validationMessages), "开始恢复", MessageBoxButtons.OK, MessageBoxIcon.Warning); + return; + } + + await ExecuteRestoreBatchAsync(selectedItems); + } + + private void StopReplaceOrAutoExtract_Click(object sender, EventArgs e) + { + if (_isAutoExtractRunning) + { + _autoExtractCancellation?.Cancel(); + return; + } + + if (_isReplaceRunning && _replaceExecutionCancellation != null && !_replaceExecutionCancellation.IsCancellationRequested) + { + _replaceExecutionCancellation.Cancel(); + _logService.Warning("REPLACE_STOP", "已请求停止替换任务,当前文件完成后停止。"); + } + } + + private void StopRestore_Click(object sender, EventArgs e) + { + if (_isRestoreRunning && _restoreExecutionCancellation != null && !_restoreExecutionCancellation.IsCancellationRequested) + { + _restoreExecutionCancellation.Cancel(); + _logService.Warning("RESTORE_STOP", "已请求停止恢复任务,当前文件完成后停止。"); + } + } + + private async Task ExecuteReplaceBatchAsync(IList selectedItems, RuleFile executionRuleFile) + { + _replaceExecutionCancellation?.Dispose(); + _replaceExecutionCancellation = new CancellationTokenSource(); + _isReplaceRunning = true; + SetRuleEditingEnabled(false); + var encryptDiff = _chkJsonDiffEncryption.Checked; + var fixedImageSeed = _chkUseFixedImageSeed.Checked ? Decimal.ToInt32(_numFixedImageSeed.Value) : (int?)null; + + foreach (var item in selectedItems) + { + item.Status = ProcessingStatus.Pending; + item.TextOperationCount = 0; + item.ImageOperationCount = 0; + } + + ResetReplaceProgress(selectedItems.Count); + UpdateActionStates(); + + var plan = _batchExecutionPlanner.CreatePlan(selectedItems, Environment.ProcessorCount); + var executionItems = plan.ExecutionItems.ToList(); + var displayOrder = executionItems + .Select((item, index) => new { item, index = index + 1 }) + .ToDictionary(entry => entry.item, entry => entry.index); + var successCount = 0; + var failedCount = 0; + var stoppedCount = 0; + var totalHits = 0; + var completedCount = 0; + var nextExecutionIndex = -1; + + foreach (var skipped in plan.SkippedItems) + { + skipped.Item.Status = ProcessingStatus.Failed; + RefreshReplaceItemRow(skipped.Item, forceRefresh: true); + failedCount++; + completedCount++; + _replaceTotalProgress.Value = Math.Min(completedCount, _replaceTotalProgress.Maximum); + FlushReplaceRuntimeUi(forceRefresh: true); + _logService.Warning( + "REPLACE_BATCH_SKIP", + skipped.Message, + string.Format("源文件: {0}{1}冲突路径: {2}", skipped.Item.SourcePath, Environment.NewLine, skipped.ConflictingPath)); + } + + try + { + _logService.Info( + "REPLACE_BATCH_PLAN", + string.Format( + "替换批处理开始。勾选={0},执行={1},预跳过={2},并发度={3}{4}。", + selectedItems.Count, + executionItems.Count, + plan.SkippedItems.Count, + plan.DegreeOfParallelism, + plan.RequiresSerialExecution ? "(包含 .doc,已退回串行)" : string.Empty), + BuildReplaceBatchPlanDetail(selectedItems, plan, executionRuleFile, encryptDiff, fixedImageSeed)); + + async Task RunWorkerAsync() + { + while (true) + { + if (_replaceExecutionCancellation.IsCancellationRequested) + { + return; + } + + var executionIndex = Interlocked.Increment(ref nextExecutionIndex); + if (executionIndex >= executionItems.Count) + { + return; + } + + var item = executionItems[executionIndex]; + var displayIndex = displayOrder[item]; + item.Status = ProcessingStatus.InProgress; + RefreshReplaceItemRow(item, forceRefresh: true); + UpdateReplaceStatus(displayIndex, selectedItems.Count, "-", 0, totalHits, 0, forceRefresh: true); + + _logService.Info("DEBUG_RULES", "执行规则列表。", + string.Format("总规则数={0}; 规则详情=[{1}]", + executionRuleFile.Rules.Count, + string.Join("; ", executionRuleFile.Rules.Select(r => + string.Format("Id={0}, Name={1}, Enabled={2}, Target={3}, SearchText='{4}', ReplacementText='{5}'", + r.Id, r.Name, r.IsEnabled, r.Target, r.SearchText, r.ReplacementText))))); + + var fileNameRules = executionRuleFile.Rules + .Where(r => r != null && r.IsEnabled && !string.IsNullOrEmpty(r.SearchText) && r.Target == RuleTarget.FileName) + .ToList(); + if (fileNameRules.Count > 0) + { + var sourceFileName = Path.GetFileNameWithoutExtension(item.SourcePath); + var extension = Path.GetExtension(item.SourcePath); + _logService.Info("FILENAME_RULES", "应用文件名替换规则。", + string.Format("源文件名={0}; 规则数={1}; 规则详情=[{2}]", + sourceFileName, + fileNameRules.Count, + string.Join("; ", fileNameRules.Select(r => + string.Format("Id={0}, SearchText='{1}', ReplacementText='{2}', MatchMode={3}, CaseSensitive={4}, WholeWord={5}", + r.Id, r.SearchText, r.ReplacementText, r.MatchMode, r.IsCaseSensitive, r.IsWholeWord))))); + var replacedName = FileScanService.ApplyRulesToFileName(sourceFileName, fileNameRules); + _logService.Info("FILENAME_REPLACED", "文件名替换结果。", + string.Format("原文件名={0}; 替换后={1}", sourceFileName, replacedName)); + var outputDir = Path.GetDirectoryName(item.OutputPath) ?? string.Empty; + var diffDir = Path.GetDirectoryName(item.DiffPath) ?? string.Empty; + var datedSuffix = "-" + DateTime.Today.ToString("yyyyMMdd"); + item.OutputPath = Path.Combine(outputDir, replacedName + datedSuffix + extension); + item.DiffPath = Path.Combine(diffDir, replacedName + datedSuffix + ".diff"); + } + + var startDetail = await Task.Run(() => BuildReplaceFileStartDetail(item, displayIndex, selectedItems.Count)); + _logService.Info("REPLACE_FILE_START", "开始处理替换文件。", startDetail); + + try + { + var progressThrottle = new RuntimeProgressThrottle(); + var progress = new Progress(value => + { + LogProcessProgressWarning("REPLACE_PROGRESS_WARN", value); + var forceRefresh = value.FilePercent >= 100; + if (!progressThrottle.ShouldApply(forceRefresh)) + { + return; + } + + UpdateReplaceStatus( + displayIndex, + selectedItems.Count, + value.CurrentRuleName ?? value.CurrentRuleId ?? "-", + value.CurrentFileTextCount, + totalHits + value.CurrentFileTextCount, + value.FilePercent, + forceRefresh); + }); + + var request = new ReplaceFileRequest + { + SourcePath = item.SourcePath, + OutputPath = item.OutputPath, + DiffPath = item.DiffPath, + SourceRootDirectory = _txtReplaceSource.Text.Trim(), + RuleFilePath = _txtRuleFile.Text.Trim(), + RuleFile = executionRuleFile, + EncryptDiff = encryptDiff, + EnableImageReplacement = _chkEnableImageReplacement.Checked, + FixedImageSeed = fixedImageSeed, + }; + + var result = await Task.Run(() => _documentProcessingService.Replace(request, progress, CancellationToken.None)); + item.OutputPath = result.OutputPath; + item.DiffPath = result.DiffPath; + item.TextOperationCount = result.TextOperationCount; + item.ImageOperationCount = result.ImageOperationCount; + item.Status = ProcessingStatus.Success; + RefreshReplaceItemRow(item, forceRefresh: true); + successCount++; + totalHits += result.TextOperationCount + result.ImageOperationCount; + UpdateReplaceStatus(displayIndex, selectedItems.Count, "-", result.TextOperationCount + result.ImageOperationCount, totalHits, 100, forceRefresh: true); + var doneDetail = await Task.Run(() => BuildReplaceFileDoneDetail(item, result, displayIndex, selectedItems.Count)); + _logService.Info( + "REPLACE_FILE_DONE", + string.Format("文件替换完成。文本 {0} 次,图片 {1} 次。", result.TextOperationCount, result.ImageOperationCount), + doneDetail); + } + catch (Exception ex) + { + item.Status = ProcessingStatus.Failed; + RefreshReplaceItemRow(item, forceRefresh: true); + failedCount++; + _replaceFileProgress.Value = 0; + UpdateReplaceStatus(displayIndex, selectedItems.Count, "-", 0, totalHits, 0, forceRefresh: true); + var failDetail = await Task.Run(() => BuildReplaceFileFailDetail(item, ex, displayIndex, selectedItems.Count)); + _logService.Error("REPLACE_FILE_FAIL", "替换文件处理失败。", failDetail); + } + + completedCount++; + _replaceTotalProgress.Value = Math.Min(completedCount, _replaceTotalProgress.Maximum); + FlushReplaceRuntimeUi(forceRefresh: true); + } + } + + var workers = Enumerable.Range(0, Math.Max(plan.DegreeOfParallelism, 1)) + .Select(_ => RunWorkerAsync()) + .ToArray(); + await Task.WhenAll(workers); + + if (_replaceExecutionCancellation.IsCancellationRequested) + { + stoppedCount += MarkRemainingItemsStopped(selectedItems.Where(item => item.Status == ProcessingStatus.Pending || item.Status == ProcessingStatus.InProgress)); + completedCount = Math.Min(selectedItems.Count, successCount + failedCount + stoppedCount); + _replaceTotalProgress.Value = Math.Min(completedCount, _replaceTotalProgress.Maximum); + FlushControl(_gridReplace, forceRefresh: true); + FlushReplaceRuntimeUi(forceRefresh: true); + } + } + finally + { + _isReplaceRunning = false; + _replaceFileProgress.Style = ProgressBarStyle.Blocks; + _btnStopReplace.Enabled = false; + SetRuleEditingEnabled(true); + UpdateActionStates(); + } + + // 批次里每个文档的 DiffPayload(含所有图片 base64)是大块瞬态分配,GC 不保证即时回收。 + // 在弹完成对话框、触发自动恢复扫描之前主动回收一次,把 ~4GB 还给系统,避免残留内存压力拖慢后续 UI。 + await Task.Run(() => + { + GC.Collect(); + GC.WaitForPendingFinalizers(); + }); + + CompleteReplaceRuntimeStatus(successCount + failedCount + stoppedCount, selectedItems.Count, totalHits); + var summary = string.Format("替换完成。成功 {0},失败 {1},停止 {2},累计命中 {3}。", successCount, failedCount, stoppedCount, totalHits); + _logService.Info("REPLACE_DONE", summary); + ShowMessage(summary, "开始替换", MessageBoxButtons.OK, failedCount > 0 ? MessageBoxIcon.Warning : MessageBoxIcon.Information); + await RefreshRestoreScanAsync(); + } + + private async Task ExecuteRestoreBatchAsync(IList selectedItems) + { + _restoreExecutionCancellation?.Dispose(); + _restoreExecutionCancellation = new CancellationTokenSource(); + _isRestoreRunning = true; + SetRuleEditingEnabled(false); + + foreach (var item in selectedItems) + { + item.Status = ProcessingStatus.Pending; + item.TextOperationCount = 0; + item.ImageOperationCount = 0; + } + + ResetRestoreProgress(selectedItems.Count); + UpdateActionStates(); + + var plan = _batchExecutionPlanner.CreatePlan(selectedItems, Environment.ProcessorCount); + var executionItems = plan.ExecutionItems.ToList(); + var displayOrder = executionItems + .Select((item, index) => new { item, index = index + 1 }) + .ToDictionary(entry => entry.item, entry => entry.index); + var successCount = 0; + var failedCount = 0; + var stoppedCount = 0; + var totalHits = 0; + var completedCount = 0; + var nextExecutionIndex = -1; + + foreach (var skipped in plan.SkippedItems) + { + skipped.Item.Status = ProcessingStatus.Failed; + RefreshRestoreItemRow(skipped.Item, forceRefresh: true); + failedCount++; + completedCount++; + _restoreTotalProgress.Value = Math.Min(completedCount, _restoreTotalProgress.Maximum); + FlushRestoreRuntimeUi(forceRefresh: true); + _logService.Warning( + "RESTORE_BATCH_SKIP", + skipped.Message, + string.Format("源文件: {0}{1}冲突路径: {2}", skipped.Item.SourcePath, Environment.NewLine, skipped.ConflictingPath)); + } + + try + { + _logService.Info( + "RESTORE_BATCH_PLAN", + string.Format( + "恢复批处理开始。勾选={0},执行={1},预跳过={2},并发度={3}{4}。", + selectedItems.Count, + executionItems.Count, + plan.SkippedItems.Count, + plan.DegreeOfParallelism, + plan.RequiresSerialExecution ? "(包含 .doc,已退回串行)" : string.Empty), + BuildRestoreBatchPlanDetail(selectedItems, plan)); + + async Task RunWorkerAsync() + { + while (true) + { + if (_restoreExecutionCancellation.IsCancellationRequested) + { + return; + } + + var executionIndex = Interlocked.Increment(ref nextExecutionIndex); + if (executionIndex >= executionItems.Count) + { + return; + } + + var item = executionItems[executionIndex]; + var displayIndex = displayOrder[item]; + item.Status = ProcessingStatus.InProgress; + RefreshRestoreItemRow(item, forceRefresh: true); + UpdateRestoreStatus(displayIndex, selectedItems.Count, "-", 0, totalHits, 0, forceRefresh: true); + var startDetail = await Task.Run(() => BuildRestoreFileStartDetail(item, displayIndex, selectedItems.Count)); + _logService.Info("RESTORE_FILE_START", "开始处理恢复文件。", startDetail); + + try + { + var progressThrottle = new RuntimeProgressThrottle(); + var progress = new Progress(value => + { + LogProcessProgressWarning("RESTORE_PROGRESS_WARN", value); + var forceRefresh = value.FilePercent >= 100; + if (!progressThrottle.ShouldApply(forceRefresh)) + { + return; + } + + UpdateRestoreStatus( + displayIndex, + selectedItems.Count, + value.CurrentRuleName ?? value.CurrentRuleId ?? "-", + value.CurrentFileTextCount, + totalHits + value.CurrentFileTextCount, + value.FilePercent, + forceRefresh); + }); + + var request = new RestoreFileRequest + { + ReplacedPath = item.SourcePath, + DiffPath = item.DiffPath, + OutputPath = item.OutputPath, + ReplaceRootDirectory = _txtRestoreSource.Text.Trim(), + CurrentRuleFilePath = _txtRuleFile.Text.Trim(), + }; + + var result = await Task.Run(() => _documentProcessingService.Restore(request, progress, CancellationToken.None)); + item.OutputPath = result.OutputPath; + item.TextOperationCount = result.TextOperationCount; + item.ImageOperationCount = result.ImageOperationCount; + item.Status = ProcessingStatus.Success; + RefreshRestoreItemRow(item, forceRefresh: true); + successCount++; + totalHits += result.TextOperationCount + result.ImageOperationCount; + UpdateRestoreStatus(displayIndex, selectedItems.Count, "-", result.TextOperationCount + result.ImageOperationCount, totalHits, 100, forceRefresh: true); + var doneDetail = await Task.Run(() => BuildRestoreFileDoneDetail(item, result, displayIndex, selectedItems.Count)); + _logService.Info( + "RESTORE_FILE_DONE", + string.Format("文件恢复完成。文本 {0} 次,图片 {1} 次。", result.TextOperationCount, result.ImageOperationCount), + doneDetail); + } + catch (Exception ex) + { + item.Status = ProcessingStatus.Failed; + RefreshRestoreItemRow(item, forceRefresh: true); + failedCount++; + _restoreFileProgress.Value = 0; + UpdateRestoreStatus(displayIndex, selectedItems.Count, "-", 0, totalHits, 0, forceRefresh: true); + var failDetail = await Task.Run(() => BuildRestoreFileFailDetail(item, ex, displayIndex, selectedItems.Count)); + _logService.Error("RESTORE_FILE_FAIL", "恢复文件处理失败。", failDetail); + } + + completedCount++; + _restoreTotalProgress.Value = Math.Min(completedCount, _restoreTotalProgress.Maximum); + FlushRestoreRuntimeUi(forceRefresh: true); + } + } + + var workers = Enumerable.Range(0, Math.Max(plan.DegreeOfParallelism, 1)) + .Select(_ => RunWorkerAsync()) + .ToArray(); + await Task.WhenAll(workers); + + if (_restoreExecutionCancellation.IsCancellationRequested) + { + stoppedCount += MarkRemainingItemsStopped(selectedItems.Where(item => item.Status == ProcessingStatus.Pending || item.Status == ProcessingStatus.InProgress)); + completedCount = Math.Min(selectedItems.Count, successCount + failedCount + stoppedCount); + _restoreTotalProgress.Value = Math.Min(completedCount, _restoreTotalProgress.Maximum); + FlushControl(_gridRestore, forceRefresh: true); + FlushRestoreRuntimeUi(forceRefresh: true); + } + } + finally + { + _isRestoreRunning = false; + _restoreFileProgress.Style = ProgressBarStyle.Blocks; + _btnStopRestore.Enabled = false; + SetRuleEditingEnabled(true); + UpdateActionStates(); + } + + // 恢复批次同样释放掉 DiffPayload 载荷,避免残留内存影响后续交互。 + await Task.Run(() => + { + GC.Collect(); + GC.WaitForPendingFinalizers(); + }); + + CompleteRestoreRuntimeStatus(successCount + failedCount + stoppedCount, selectedItems.Count, totalHits); + var summary = string.Format("恢复完成。成功 {0},失败 {1},停止 {2},累计命中 {3}。", successCount, failedCount, stoppedCount, totalHits); + _logService.Info("RESTORE_DONE", summary); + ShowMessage(summary, "开始恢复", MessageBoxButtons.OK, failedCount > 0 ? MessageBoxIcon.Warning : MessageBoxIcon.Information); + } + + private bool PrepareRuleExecution(out RuleFile executionRuleFile) + { + executionRuleFile = CreateExecutionRuleFile(); + var report = _ruleService.Validate(executionRuleFile); + foreach (var issue in report.Issues) + { + LogRuleIssue(issue); + } + + if (report.Issues.Count == 0) + { + return true; + } + + var summary = string.Join(Environment.NewLine, report.Issues.Select(_ruleService.FormatIssue)); + var prompt = summary + Environment.NewLine + Environment.NewLine + "是否继续执行?"; + return ShowMessage( + prompt, + "规则执行检查", + MessageBoxButtons.YesNo, + report.HasErrors ? MessageBoxIcon.Warning : MessageBoxIcon.Information) == DialogResult.Yes; + } + + private bool PrepareRuleExecutionWithBlockingErrors(out RuleFile executionRuleFile) + { + executionRuleFile = CreateExecutionRuleFile(); + var report = _ruleService.Validate(executionRuleFile); + foreach (var issue in report.Issues) + { + LogRuleIssue(issue); + } + + if (report.Issues.Count == 0) + { + return true; + } + + var summary = string.Join(Environment.NewLine, report.Issues.Select(_ruleService.FormatIssue)); + if (report.HasErrors) + { + ShowMessage( + summary + Environment.NewLine + Environment.NewLine + "存在错误,必须先修复后才能执行。", + "规则执行检查", + MessageBoxButtons.OK, + MessageBoxIcon.Warning); + return false; + } + + var prompt = summary + Environment.NewLine + Environment.NewLine + "是否继续执行?"; + return ShowMessage( + prompt, + "规则执行检查", + MessageBoxButtons.YesNo, + MessageBoxIcon.Information) == DialogResult.Yes; + } + + private RuleFile CreateExecutionRuleFile() + { + if (_gridRules.IsHandleCreated) + { + _gridRules.EndEdit(); + } + + var result = new RuleFile + { + Format = _ruleFile.Format, + Version = _ruleFile.Version, + }; + + foreach (var rule in _rules) + { + result.Rules.Add(new RuleDefinition + { + Id = rule.Id, + Name = rule.Name, + IsEnabled = rule.IsEnabled, + MatchMode = rule.MatchMode, + Target = rule.Target, + IsCaseSensitive = rule.IsCaseSensitive, + IsWholeWord = rule.IsWholeWord, + SearchText = rule.SearchText, + ReplacementText = rule.ReplacementText, + Note = rule.Note, + }); + } + + _ruleFile = result; + return result; + } + + private bool TryPersistConfigFromUi() + { + try + { + CaptureUiToConfig(); + _configurationService.Save(_config); + return true; + } + catch (Exception ex) + { + _logService.Error("CONFIG_SAVE_FAIL", "保存当前配置失败。", ex.Message); + ShowMessage("保存当前配置失败: " + ex.Message, "WORD 2007 格式调整软件", MessageBoxButtons.OK, MessageBoxIcon.Error); + return false; + } + } + + private void ResetReplaceProgress(int totalCount) + { + _replaceTotalProgress.Style = ProgressBarStyle.Blocks; + _replaceTotalProgress.Maximum = Math.Max(totalCount, 1); + _replaceTotalProgress.Value = 0; + _replaceFileProgress.Style = ProgressBarStyle.Blocks; + _replaceFileProgress.Value = 0; + _lblReplaceRuntime.Text = "当前文件 0/0 | 当前规则 - | 当前文件命中 0 | 累计命中 0"; + FlushReplaceRuntimeUi(forceRefresh: true); + } + + private void ResetRestoreProgress(int totalCount) + { + _restoreTotalProgress.Style = ProgressBarStyle.Blocks; + _restoreTotalProgress.Maximum = Math.Max(totalCount, 1); + _restoreTotalProgress.Value = 0; + _restoreFileProgress.Style = ProgressBarStyle.Blocks; + _restoreFileProgress.Value = 0; + _lblRestoreRuntime.Text = "当前文件 0/0 | 当前规则 - | 当前文件命中 0 | 累计命中 0"; + FlushRestoreRuntimeUi(forceRefresh: true); + } + + private void LogProcessProgressWarning(string eventCode, FileProcessProgress value) + { + if (value == null || !value.IsWarning || string.IsNullOrWhiteSpace(value.Message)) + { + return; + } + + var detail = string.IsNullOrWhiteSpace(value.FilePath) ? null : "文件: " + value.FilePath; + _logService.Warning(eventCode, value.Message, detail); + } + + private void UpdateReplaceStatus(int currentFile, int totalFiles, string currentRule, int currentFileHits, int totalHits, int filePercent, bool forceRefresh = false) + { + _replaceFileProgress.Value = Math.Max(0, Math.Min(filePercent, 100)); + _lblReplaceRuntime.Text = string.Format( + "当前文件 {0}/{1} | 当前规则 {2} | 当前文件命中 {3} | 累计命中 {4}", + currentFile, + totalFiles, + string.IsNullOrWhiteSpace(currentRule) ? "-" : currentRule, + currentFileHits, + totalHits); + FlushReplaceRuntimeUi(forceRefresh); + } + + private void CompleteReplaceRuntimeStatus(int completedFiles, int totalFiles, int totalHits) + { + var safeTotal = Math.Max(0, totalFiles); + var safeCompleted = Math.Max(0, Math.Min(completedFiles, safeTotal)); + _replaceTotalProgress.Value = Math.Min(safeCompleted, _replaceTotalProgress.Maximum); + UpdateReplaceStatus( + safeCompleted, + safeTotal, + "-", + 0, + totalHits, + safeTotal > 0 && safeCompleted >= safeTotal ? 100 : 0, + forceRefresh: true); + } + + private void UpdateRestoreStatus(int currentFile, int totalFiles, string currentRule, int currentFileHits, int totalHits, int filePercent, bool forceRefresh = false) + { + _restoreFileProgress.Value = Math.Max(0, Math.Min(filePercent, 100)); + _lblRestoreRuntime.Text = string.Format( + "当前文件 {0}/{1} | 当前规则 {2} | 当前文件命中 {3} | 累计命中 {4}", + currentFile, + totalFiles, + string.IsNullOrWhiteSpace(currentRule) ? "-" : currentRule, + currentFileHits, + totalHits); + FlushRestoreRuntimeUi(forceRefresh); + } + + private void CompleteRestoreRuntimeStatus(int completedFiles, int totalFiles, int totalHits) + { + var safeTotal = Math.Max(0, totalFiles); + var safeCompleted = Math.Max(0, Math.Min(completedFiles, safeTotal)); + _restoreTotalProgress.Value = Math.Min(safeCompleted, _restoreTotalProgress.Maximum); + UpdateRestoreStatus( + safeCompleted, + safeTotal, + "-", + 0, + totalHits, + safeTotal > 0 && safeCompleted >= safeTotal ? 100 : 0, + forceRefresh: true); + } + + private void FlushReplaceRuntimeUi(bool forceRefresh) + { + if (!forceRefresh && !ShouldRefreshRuntimeUi(ref _lastReplaceRuntimeFlushTick)) + { + return; + } + + FlushControl(_replaceFileProgress, forceRefresh); + FlushControl(_replaceTotalProgress, forceRefresh); + FlushControl(_lblReplaceRuntime, forceRefresh); + } + + private void FlushRestoreRuntimeUi(bool forceRefresh) + { + if (!forceRefresh && !ShouldRefreshRuntimeUi(ref _lastRestoreRuntimeFlushTick)) + { + return; + } + + FlushControl(_restoreFileProgress, forceRefresh); + FlushControl(_restoreTotalProgress, forceRefresh); + FlushControl(_lblRestoreRuntime, forceRefresh); + } + + private static bool ShouldRefreshRuntimeUi(ref int lastFlushTick) + { + var now = Environment.TickCount & int.MaxValue; + if (lastFlushTick != 0 && now >= lastFlushTick && now - lastFlushTick < RuntimeUiRefreshIntervalMilliseconds) + { + return false; + } + + lastFlushTick = now; + return true; + } + + private static bool ShouldApplyProgressUpdate(ref int lastProgressTick, bool forceRefresh) + { + if (forceRefresh) + { + lastProgressTick = Environment.TickCount & int.MaxValue; + return true; + } + + return ShouldRefreshRuntimeUi(ref lastProgressTick); + } + + private static void FlushControl(Control control, bool forceRefresh) + { + if (control == null || control.IsDisposed || !control.IsHandleCreated) + { + return; + } + + if (forceRefresh) + { + control.Refresh(); + return; + } + + control.Update(); + } + + private void RefreshReplaceItemRow(FileScanItem item, bool forceRefresh = false) + { + RefreshFileItemRow(_gridReplace, _replaceItems, item, forceRefresh); + } + + private void RefreshRestoreItemRow(FileScanItem item, bool forceRefresh = false) + { + RefreshFileItemRow(_gridRestore, _restoreItems, item, forceRefresh); + } + + private static void RefreshFileItemRow(DataGridView grid, BindingList items, FileScanItem item, bool forceRefresh) + { + if (grid == null || items == null || item == null || grid.IsDisposed || !grid.IsHandleCreated) + { + return; + } + + var rowIndex = items.IndexOf(item); + if (rowIndex >= 0 && rowIndex < grid.Rows.Count) + { + grid.InvalidateRow(rowIndex); + } + + FlushControl(grid, forceRefresh); + } + + private sealed class RuntimeProgressThrottle + { + private int _lastProgressTick; + + public bool ShouldApply(bool forceRefresh) + { + return ShouldApplyProgressUpdate(ref _lastProgressTick, forceRefresh); + } + } + + private static int MarkRemainingItemsStopped(IEnumerable items) + { + var count = 0; + foreach (var item in items) + { + if (item.Status == ProcessingStatus.Pending || item.Status == ProcessingStatus.InProgress) + { + item.Status = ProcessingStatus.Stopped; + count++; + } + } + + return count; + } + + private string GetSelectedRestoreDiffInputFormat() + { + return string.Equals(_cmbRestoreDiffInput.SelectedItem as string, ".bmp", StringComparison.OrdinalIgnoreCase) + ? ".bmp" + : ".diff"; + } + + private void SetRestoreDiffInputFormat(string diffInputFormat) + { + var normalized = string.Equals(diffInputFormat, ".bmp", StringComparison.OrdinalIgnoreCase) + ? ".bmp" + : ".diff"; + _cmbRestoreDiffInput.SelectedItem = normalized; + } + + private void LoadRuleFile(string filePath) + { + try + { + _ruleFile = _ruleService.Load(filePath); + ReplaceBinding(_rules, _ruleFile.Rules); + _logService.Info("RULE_LOAD", "规则文件已加载。", filePath); + UpdateActionStates(); + } + catch (Exception ex) + { + _logService.Error("RULE_LOAD_FAIL", "加载规则文件失败。", ex.Message); + ShowMessage("加载规则文件失败: " + ex.Message, "规则文件", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private async Task BrowseFolderIntoTextBoxAsync(TextBox textBox, Func refreshAsync) + { + string selectedPath; + if (!ModernFolderPicker.TrySelectFolder(this, textBox.Text, out selectedPath)) + { + return; + } + + await ApplySelectedFolderPathAsync(textBox, selectedPath, refreshAsync); + } + + private async Task ApplySelectedFolderPathAsync(TextBox textBox, string selectedPath, Func refreshAsync) + { + textBox.Text = selectedPath ?? string.Empty; + if (refreshAsync != null) + { + await refreshAsync(); + } + } + + private string GetReplacePreviewOutputDirectory(string sourceDirectory) + { + var output = _txtReplaceOutput.Text.Trim(); + if (string.IsNullOrWhiteSpace(output)) + { + return string.Empty; + } + + var validationMessages = _fileScanService.ValidateReplaceDirectories(sourceDirectory, output); + return validationMessages.Count == 0 ? output : string.Empty; + } + + private string GetRestorePreviewOutputDirectory(string replaceDirectory) + { + var output = _txtRestoreOutput.Text.Trim(); + if (string.IsNullOrWhiteSpace(output)) + { + return string.Empty; + } + + var validationMessages = _fileScanService.ValidateRestoreDirectories(replaceDirectory, output); + return validationMessages.Count == 0 ? output : string.Empty; + } + + private IList GetReplaceExecutionValidationMessages() + { + var source = _txtReplaceSource.Text.Trim(); + var output = _txtReplaceOutput.Text.Trim(); + var messages = new List(); + + if (string.IsNullOrWhiteSpace(source)) + { + messages.Add("未选择原始文件夹。"); + } + else if (!Directory.Exists(source)) + { + messages.Add("原始文件夹不存在。"); + } + + if (string.IsNullOrWhiteSpace(output)) + { + messages.Add("未选择替换文件夹。"); + } + + messages.AddRange(_fileScanService.ValidateReplaceDirectories(source, output)); + return messages; + } + + private IList GetRestoreExecutionValidationMessages() + { + var source = _txtRestoreSource.Text.Trim(); + var output = _txtRestoreOutput.Text.Trim(); + var messages = new List(); + + if (string.IsNullOrWhiteSpace(source)) + { + messages.Add("未选择替换文件夹。"); + } + else if (!Directory.Exists(source)) + { + messages.Add("替换文件夹不存在。"); + } + + if (string.IsNullOrWhiteSpace(output)) + { + messages.Add("未选择恢复文件夹。"); + } + + messages.AddRange(_fileScanService.ValidateRestoreDirectories(source, output)); + return messages; + } + + private void UpdateActionStates() + { + var hasReplaceSelection = _replaceItems.Any(item => item.IsSelected); + var hasRestoreSelection = _restoreItems.Any(item => item.IsSelected); + var busy = _isAutoExtractRunning || _isReplaceRunning || _isRestoreRunning; + var canEditReplacePage = !busy; + var canEditRestorePage = !busy; + var canEditRules = !busy && _gridRules.Enabled; + var canExecuteReplace = !busy && hasReplaceSelection && GetReplaceExecutionValidationMessages().Count == 0; + var canExecuteRestore = !busy && hasRestoreSelection && GetRestoreExecutionValidationMessages().Count == 0; + + _btnAutoExtract.Enabled = !_isAutoExtractRunning && !_isReplaceRunning && !_isRestoreRunning && hasReplaceSelection; + _btnStartReplace.Enabled = canExecuteReplace; + _btnStopReplace.Enabled = _isAutoExtractRunning || _isReplaceRunning; + _btnStartRestore.Enabled = canExecuteRestore; + _btnStopRestore.Enabled = _isRestoreRunning; + + _txtReplaceSource.Enabled = canEditReplacePage; + _txtReplaceOutput.Enabled = canEditReplacePage; + _btnBrowseReplaceSource.Enabled = canEditReplacePage; + _btnBrowseReplaceOutput.Enabled = canEditReplacePage; + _btnSelectAllReplace.Enabled = canEditReplacePage && _replaceItems.Count > 0; + _btnClearReplace.Enabled = canEditReplacePage && _replaceItems.Count > 0; + _gridReplace.ReadOnly = busy; + + _txtRestoreSource.Enabled = canEditRestorePage; + _txtRestoreOutput.Enabled = canEditRestorePage; + _cmbRestoreDiffInput.Enabled = canEditRestorePage; + _btnBrowseRestoreSource.Enabled = canEditRestorePage; + _btnBrowseRestoreOutput.Enabled = canEditRestorePage; + _btnSelectAllRestore.Enabled = canEditRestorePage && _restoreItems.Count > 0; + _btnClearRestore.Enabled = canEditRestorePage && _restoreItems.Count > 0; + _gridRestore.ReadOnly = busy; + + _gridRules.Enabled = canEditRules; + _txtRuleFile.Enabled = canEditRules; + _btnOpenRules.Enabled = canEditRules; + _btnSaveRules.Enabled = canEditRules; + _btnUndoAutoExtract.Enabled = canEditRules && _lastAutoExtractRuleIds.Count > 0; + } + + private void SetRuleEditingEnabled(bool enabled) + { + _gridRules.Enabled = enabled; + _txtRuleFile.Enabled = enabled; + UpdateActionStates(); + } + + private void LogRuleIssue(RuleValidationIssue issue) + { + var formatted = _ruleService.FormatIssue(issue); + if (issue.Severity == RuleValidationSeverity.Error) + { + _logService.Error("RULE_CHECK", formatted); + } + else if (issue.Severity == RuleValidationSeverity.Warning) + { + _logService.Warning("RULE_CHECK", formatted); + } + else + { + _logService.Info("RULE_CHECK", formatted); + } + } + + private void SetSelection(IList items, bool isSelected) + { + foreach (var item in items) + { + item.IsSelected = isSelected; + } + + UpdateActionStates(); + } + + private void SetSelectedFileItems(DataGridView grid, bool isSelected) + { + foreach (var item in GetSelectedDataBoundItems(grid)) + { + item.IsSelected = isSelected; + } + + grid.Refresh(); + UpdateActionStates(); + } + + private void DeleteSelectedFileItems(BindingList items, DataGridView grid) + { + foreach (var item in GetSelectedDataBoundItems(grid)) + { + items.Remove(item); + } + + UpdateActionStates(); + } + + private void SetSelectedRulesEnabled(bool isEnabled) + { + foreach (var rule in GetSelectedDataBoundItems(_gridRules)) + { + rule.IsEnabled = isEnabled; + } + + RefreshRuleState(); + } + + private void DeleteSelectedRules() + { + foreach (var rule in GetSelectedDataBoundItems(_gridRules)) + { + _rules.Remove(rule); + } + + RefreshRuleState(); + } + + private void RefreshRuleState() + { + _ruleFile.Rules = _rules.ToList(); + + var existingRuleIds = new HashSet( + _rules.Where(item => !string.IsNullOrWhiteSpace(item.Id)).Select(item => item.Id), + StringComparer.OrdinalIgnoreCase); + _lastAutoExtractRuleIds = _lastAutoExtractRuleIds.Where(existingRuleIds.Contains).ToList(); + + _gridRules.Refresh(); + UpdateActionStates(); + } + + private static List GetSelectedDataBoundItems(DataGridView grid) + where T : class + { + return grid.SelectedRows + .Cast() + .OrderBy(row => row.Index) + .Select(row => row.DataBoundItem as T) + .Where(item => item != null) + .ToList(); + } + + private static List NormalizeIndexes(IEnumerable rowIndexes, int count) + { + return (rowIndexes ?? Array.Empty()) + .Where(index => index >= 0 && index < count) + .Distinct() + .OrderBy(index => index) + .ToList(); + } + + private static void ReplaceBinding(BindingList target, IEnumerable source) + { + target.Clear(); + foreach (var item in source) + { + target.Add(item); + } + } + + private static void ConfigureNumeric(NumericUpDown numeric, int minimum, int maximum) + { + numeric.Minimum = minimum; + numeric.Maximum = maximum; + numeric.Width = 120; + } + + private static Control CreateProgressLine(string labelText, ProgressBar progressBar) + { + var panel = new TableLayoutPanel + { + Dock = DockStyle.Top, + ColumnCount = 2, + AutoSize = true, + }; + panel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 90F)); + panel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F)); + panel.Controls.Add(new Label { Text = labelText, Anchor = AnchorStyles.Left, AutoSize = true }, 0, 0); + progressBar.Dock = DockStyle.Fill; + progressBar.Maximum = 100; + panel.Controls.Add(progressBar, 1, 0); + return panel; + } + + private static void AddLabeledRow( + TableLayoutPanel layout, + int rowIndex, + string leftLabel, + Control leftTextBox, + Control leftButton, + string rightLabel, + Control rightTextBox, + Control rightButton) + { + layout.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + layout.Controls.Add(new Label { Text = leftLabel, Anchor = AnchorStyles.Left, AutoSize = true }, 0, rowIndex); + leftTextBox.Dock = DockStyle.Fill; + layout.Controls.Add(leftTextBox, 1, rowIndex); + layout.Controls.Add(leftButton, 2, rowIndex); + layout.Controls.Add(new Label { Text = rightLabel, Anchor = AnchorStyles.Left, AutoSize = true }, 3, rowIndex); + rightTextBox.Dock = DockStyle.Fill; + layout.Controls.Add(rightTextBox, 4, rowIndex); + layout.Controls.Add(rightButton, 5, rowIndex); + } + + private static void AddSettingRow(TableLayoutPanel layout, int rowIndex, Control leftControl, Control rightControl) + { + layout.RowStyles.Add(new RowStyle(SizeType.AutoSize)); + leftControl.Dock = DockStyle.Fill; + rightControl.Dock = DockStyle.Fill; + layout.Controls.Add(leftControl, 0, rowIndex); + layout.Controls.Add(rightControl, 1, rowIndex); + } + + private void ConfigureFileGrid(DataGridView grid, bool isRestoreGrid) + { + grid.AllowUserToAddRows = false; + grid.AllowUserToDeleteRows = false; + grid.AutoGenerateColumns = false; + grid.MultiSelect = true; + grid.SelectionMode = DataGridViewSelectionMode.FullRowSelect; + grid.EditMode = DataGridViewEditMode.EditOnEnter; + grid.Columns.Clear(); + + var checkColumn = new DataGridViewCheckBoxColumn + { + DataPropertyName = nameof(FileScanItem.IsSelected), + HeaderText = "勾选", + Width = 60, + }; + grid.Columns.Add(checkColumn); + grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(FileScanItem.SourcePath), + HeaderText = isRestoreGrid ? "替换后文件路径" : "原始文件路径", + Width = 360, + ReadOnly = true, + }); + grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(FileScanItem.OutputPath), + HeaderText = isRestoreGrid ? "恢复文件路径" : "替换后文件路径", + Width = 360, + ReadOnly = true, + }); + grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(FileScanItem.DiffPath), + HeaderText = "差异文件路径", + Width = 320, + ReadOnly = true, + }); + grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(FileScanItem.TextOperationCount), + HeaderText = isRestoreGrid ? "文本恢复次数" : "文本替换次数", + Width = 110, + }); + grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(FileScanItem.ImageOperationCount), + HeaderText = isRestoreGrid ? "图片恢复次数" : "图片替换次数", + Width = 110, + }); + grid.Columns.Add(new DataGridViewTextBoxColumn + { + DataPropertyName = nameof(FileScanItem.Status), + HeaderText = "当前状态", + Width = 90, + ReadOnly = true, + }); + + grid.CurrentCellDirtyStateChanged += Grid_CurrentCellDirtyStateChanged; + grid.CellValueChanged += GridSelection_CellValueChanged; + grid.CellMouseDown += Grid_CellMouseDownSelectRow; + grid.RowPrePaint += Grid_RowPrePaint; + } + + private void ConfigureRuleGrid(DataGridView grid) + { + grid.AllowUserToAddRows = false; + grid.AllowUserToDeleteRows = false; + grid.AutoGenerateColumns = false; + grid.MultiSelect = true; + grid.SelectionMode = DataGridViewSelectionMode.FullRowSelect; + grid.EditMode = DataGridViewEditMode.EditOnEnter; + grid.Columns.Clear(); + + grid.Columns.Add(new DataGridViewTextBoxColumn { DataPropertyName = nameof(RuleDefinition.Id), HeaderText = "规则 ID", Width = 110 }); + grid.Columns.Add(new DataGridViewTextBoxColumn { DataPropertyName = nameof(RuleDefinition.Name), HeaderText = "规则名称", Width = 140 }); + grid.Columns.Add(new DataGridViewCheckBoxColumn { DataPropertyName = nameof(RuleDefinition.IsEnabled), HeaderText = "启用", Width = 60 }); + grid.Columns.Add(new DataGridViewComboBoxColumn + { + DataPropertyName = nameof(RuleDefinition.MatchMode), + HeaderText = "匹配模式", + Width = 110, + DataSource = Enum.GetValues(typeof(RuleMatchMode)), + }); + grid.Columns.Add(new DataGridViewComboBoxColumn + { + DataPropertyName = nameof(RuleDefinition.Target), + HeaderText = "目标类型", + Width = 100, + DataSource = Enum.GetValues(typeof(RuleTarget)), + ValueType = typeof(RuleTarget), + }); + grid.Columns.Add(new DataGridViewCheckBoxColumn { DataPropertyName = nameof(RuleDefinition.IsCaseSensitive), HeaderText = "区分大小写", Width = 90 }); + grid.Columns.Add(new DataGridViewCheckBoxColumn { DataPropertyName = nameof(RuleDefinition.IsWholeWord), HeaderText = "全字匹配", Width = 90 }); + grid.Columns.Add(new DataGridViewTextBoxColumn { DataPropertyName = nameof(RuleDefinition.SearchText), HeaderText = "原文本/表达式", Width = 200 }); + grid.Columns.Add(new DataGridViewTextBoxColumn { DataPropertyName = nameof(RuleDefinition.ReplacementText), HeaderText = "新文本/模板", Width = 180 }); + grid.Columns.Add(new DataGridViewTextBoxColumn { DataPropertyName = nameof(RuleDefinition.Note), HeaderText = "备注", Width = 320 }); + + grid.CurrentCellDirtyStateChanged += Grid_CurrentCellDirtyStateChanged; + grid.CellValueChanged += GridSelection_CellValueChanged; + grid.CellMouseDown += Grid_CellMouseDownSelectRow; + grid.DataError += delegate { }; + } + + private void Grid_CurrentCellDirtyStateChanged(object sender, EventArgs e) + { + var grid = sender as DataGridView; + if (grid != null && grid.IsCurrentCellDirty && grid.CurrentCell is DataGridViewCheckBoxCell) + { + grid.CommitEdit(DataGridViewDataErrorContexts.Commit); + } + } + + private void GridSelection_CellValueChanged(object sender, DataGridViewCellEventArgs e) + { + UpdateActionStates(); + } + + private void Grid_CellMouseDownSelectRow(object sender, DataGridViewCellMouseEventArgs e) + { + if (e.Button != MouseButtons.Right || e.RowIndex < 0) + { + return; + } + + var grid = sender as DataGridView; + if (grid == null || e.RowIndex >= grid.Rows.Count) + { + return; + } + + var row = grid.Rows[e.RowIndex]; + if (!row.Selected) + { + grid.ClearSelection(); + row.Selected = true; + } + + if (e.ColumnIndex >= 0 && e.ColumnIndex < row.Cells.Count) + { + grid.CurrentCell = row.Cells[e.ColumnIndex]; + } + } + + private void Grid_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e) + { + var grid = sender as DataGridView; + if (grid == null || e.RowIndex < 0 || e.RowIndex >= grid.Rows.Count) + { + return; + } + + var item = grid.Rows[e.RowIndex].DataBoundItem as FileScanItem; + if (item == null) + { + return; + } + + var color = Color.Black; + switch (item.Status) + { + case ProcessingStatus.Success: + color = Color.Green; + break; + case ProcessingStatus.Failed: + color = Color.Red; + break; + case ProcessingStatus.InProgress: + color = Color.Blue; + break; + case ProcessingStatus.Stopped: + color = Color.Gray; + break; + } + + grid.Rows[e.RowIndex].DefaultCellStyle.ForeColor = color; + } + + private DialogResult ShowMessage(string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon) + { + return _dialogService.ShowMessage(this, text, caption, buttons, icon); + } + + internal Task ExecuteReplaceBatchForTestAsync(IList selectedItems, RuleFile executionRuleFile, string sourceRootDirectory, string ruleFilePath, bool encryptDiff, int? fixedImageSeed) + { + _txtReplaceSource.Text = sourceRootDirectory ?? string.Empty; + _txtRuleFile.Text = ruleFilePath ?? string.Empty; + _chkJsonDiffEncryption.Checked = encryptDiff; + _chkUseFixedImageSeed.Checked = fixedImageSeed.HasValue; + _numFixedImageSeed.Value = Math.Max(_numFixedImageSeed.Minimum, Math.Min(_numFixedImageSeed.Maximum, fixedImageSeed ?? 0)); + return ExecuteReplaceBatchAsync(selectedItems, executionRuleFile); + } + + internal Task ExecuteRestoreBatchForTestAsync(IList selectedItems, string replaceRootDirectory, string ruleFilePath) + { + _txtRestoreSource.Text = replaceRootDirectory ?? string.Empty; + _txtRuleFile.Text = ruleFilePath ?? string.Empty; + return ExecuteRestoreBatchAsync(selectedItems); + } + + internal Task RefreshReplaceScanForTestAsync(string sourceDirectory, string outputDirectory) + { + _txtReplaceSource.Text = sourceDirectory ?? string.Empty; + _txtReplaceOutput.Text = outputDirectory ?? string.Empty; + return RefreshReplaceScanAsync(); + } + + internal Task ApplyReplaceSourceSelectionForTestAsync(string selectedPath) + { + return ApplySelectedFolderPathAsync(_txtReplaceSource, selectedPath, RefreshReplaceScanAsync); + } + + internal Task ApplyReplaceOutputSelectionForTestAsync(string selectedPath) + { + return ApplySelectedFolderPathAsync(_txtReplaceOutput, selectedPath, RefreshReplaceScanAsync); + } + + internal Task RefreshRestoreScanForTestAsync(string sourceDirectory, string outputDirectory, string diffInputFormat) + { + _txtRestoreSource.Text = sourceDirectory ?? string.Empty; + _txtRestoreOutput.Text = outputDirectory ?? string.Empty; + SetRestoreDiffInputFormat(diffInputFormat); + return RefreshRestoreScanAsync(); + } + + internal Task ApplyRestoreSourceSelectionForTestAsync(string selectedPath) + { + return ApplySelectedFolderPathAsync(_txtRestoreSource, selectedPath, RefreshRestoreScanAsync); + } + + internal Task ApplyRestoreOutputSelectionForTestAsync(string selectedPath) + { + return ApplySelectedFolderPathAsync(_txtRestoreOutput, selectedPath, RefreshRestoreScanAsync); + } + + internal Task SetRestoreDiffInputForTestAsync(string diffInputFormat) + { + SetRestoreDiffInputFormat(diffInputFormat); + return RefreshRestoreScanAsync(); + } + + internal Task RunAutoExtractForTestAsync(IList replaceItems, IList existingRules, AutoExtractSettings settings) + { + ReplaceBinding(_replaceItems, replaceItems ?? Array.Empty()); + ReplaceBinding(_rules, existingRules ?? Array.Empty()); + _ruleFile.Rules = _rules.ToList(); + + if (settings != null) + { + _config.Settings.AutoExtract = settings; + ApplyConfigToUi(); + } + + UpdateActionStates(); + return RunAutoExtractAsync(); + } + + internal void RequestStopReplaceForTest() + { + if (_isReplaceRunning && _replaceExecutionCancellation != null && !_replaceExecutionCancellation.IsCancellationRequested) + { + _replaceExecutionCancellation.Cancel(); + } + } + + internal void RequestStopRestoreForTest() + { + if (_isRestoreRunning && _restoreExecutionCancellation != null && !_restoreExecutionCancellation.IsCancellationRequested) + { + _restoreExecutionCancellation.Cancel(); + } + } + + internal void RaiseLogWriteFailureForTest(LogWriteFailureEventArgs e) + { + LogService_WriteFailed(this, e); + } + + internal void UndoAutoExtractForTest() + { + UndoAutoExtract_Click(this, EventArgs.Empty); + } + + internal void LoadReplaceItemsForTest(IList items) + { + ReplaceBinding(_replaceItems, items ?? Array.Empty()); + UpdateActionStates(); + } + + internal void LoadRestoreItemsForTest(IList items) + { + ReplaceBinding(_restoreItems, items ?? Array.Empty()); + UpdateActionStates(); + } + + internal void LoadRulesForTest(IList rules) + { + ReplaceBinding(_rules, rules ?? Array.Empty()); + RefreshRuleState(); + } + + internal IList LogContextMenuItemsForTest + { + get { return GetContextMenuTexts(_logBox.ContextMenuStrip); } + } + + internal IList ReplaceContextMenuItemsForTest + { + get { return GetContextMenuTexts(_gridReplace.ContextMenuStrip); } + } + + internal IList RestoreContextMenuItemsForTest + { + get { return GetContextMenuTexts(_gridRestore.ContextMenuStrip); } + } + + internal IList RuleContextMenuItemsForTest + { + get { return GetContextMenuTexts(_gridRules.ContextMenuStrip); } + } + + internal bool IsRuleEditingEnabledForTest + { + get { return _gridRules.Enabled; } + } + + internal bool IsUndoAutoExtractEnabledForTest + { + get { return _btnUndoAutoExtract.Enabled; } + } + + internal bool IsAutoExtractEnabledForTest + { + get { return _btnAutoExtract.Enabled; } + } + + internal bool IsStartReplaceEnabledForTest + { + get { return _btnStartReplace.Enabled; } + } + + internal bool IsStartRestoreEnabledForTest + { + get { return _btnStartRestore.Enabled; } + } + + internal bool IsStopReplaceEnabledForTest + { + get { return _btnStopReplace.Enabled; } + } + + internal bool IsStopRestoreEnabledForTest + { + get { return _btnStopRestore.Enabled; } + } + + internal string ReplaceRuntimeTextForTest + { + get { return _lblReplaceRuntime.Text; } + } + + internal string RestoreRuntimeTextForTest + { + get { return _lblRestoreRuntime.Text; } + } + + internal string RestoreBrowseSourceButtonTextForTest + { + get { return _btnBrowseRestoreSource.Text; } + } + + internal string RestoreBrowseOutputButtonTextForTest + { + get { return _btnBrowseRestoreOutput.Text; } + } + + internal string RestoreSelectAllButtonTextForTest + { + get { return _btnSelectAllRestore.Text; } + } + + internal string RestoreClearButtonTextForTest + { + get { return _btnClearRestore.Text; } + } + + internal int SettingsRuleListWidthForTest + { + get + { + return _settingsRuleListSplitContainer == null + ? 0 + : _settingsRuleListSplitContainer.ClientSize.Width - _settingsRuleListSplitContainer.SplitterWidth - _settingsRuleListSplitContainer.SplitterDistance; + } + } + + internal void ApplySettingsRuleListInitialWidthForTest(int width) + { + if (_settingsRuleListSplitContainer == null) + { + throw new InvalidOperationException("设置页规则列表分隔容器尚未初始化。"); + } + + _settingsRuleListInitialWidthApplied = false; + _settingsRuleListSplitContainer.Width = width; + ApplySettingsRuleListInitialWidth(_settingsRuleListSplitContainer); + } + + internal string SelectedTabTextForTest + { + get { return _tabControl.SelectedTab == null ? string.Empty : _tabControl.SelectedTab.Text; } + } + + internal int SelectedRuleIndexForTest + { + get + { + if (_gridRules.SelectedRows.Count > 0) + { + return _gridRules.SelectedRows[0].Index; + } + + if (_gridRules.CurrentCell != null) + { + return _gridRules.CurrentCell.RowIndex; + } + + return -1; + } + } + + internal IList RulesForTest + { + get { return _rules.Select(CloneRule).ToList(); } + } + + internal IList ReplaceItemsForTest + { + get { return _replaceItems.Select(CloneFileScanItem).ToList(); } + } + + internal IList RestoreItemsForTest + { + get { return _restoreItems.Select(CloneFileScanItem).ToList(); } + } + + internal string LogTextForTest + { + get { return _logBox.Text; } + } + + internal string LogCopyTextForTest + { + get { return GetAllLogText(); } + } + + internal void AppendLogTextForTest(string text) + { + if (!string.IsNullOrEmpty(text)) + { + _logBox.AppendText(text); + } + } + + internal void ClearLogsForTest() + { + ClearLogBox(); + } + + internal void SetReplaceItemSelectionForTest(IEnumerable rowIndexes, bool isSelected) + { + foreach (var index in NormalizeIndexes(rowIndexes, _replaceItems.Count)) + { + _replaceItems[index].IsSelected = isSelected; + } + + UpdateActionStates(); + } + + internal void DeleteReplaceItemsForTest(IEnumerable rowIndexes) + { + foreach (var index in NormalizeIndexes(rowIndexes, _replaceItems.Count).OrderByDescending(item => item)) + { + _replaceItems.RemoveAt(index); + } + + UpdateActionStates(); + } + + internal void SetRestoreItemSelectionForTest(IEnumerable rowIndexes, bool isSelected) + { + foreach (var index in NormalizeIndexes(rowIndexes, _restoreItems.Count)) + { + _restoreItems[index].IsSelected = isSelected; + } + + UpdateActionStates(); + } + + internal void DeleteRestoreItemsForTest(IEnumerable rowIndexes) + { + foreach (var index in NormalizeIndexes(rowIndexes, _restoreItems.Count).OrderByDescending(item => item)) + { + _restoreItems.RemoveAt(index); + } + + UpdateActionStates(); + } + + internal void SetRuleEnabledForTest(IEnumerable rowIndexes, bool isEnabled) + { + foreach (var index in NormalizeIndexes(rowIndexes, _rules.Count)) + { + _rules[index].IsEnabled = isEnabled; + } + + RefreshRuleState(); + } + + internal void DeleteRulesForTest(IEnumerable rowIndexes) + { + foreach (var index in NormalizeIndexes(rowIndexes, _rules.Count).OrderByDescending(item => item)) + { + _rules.RemoveAt(index); + } + + RefreshRuleState(); + } + + private static FileScanItem CloneFileScanItem(FileScanItem source) + { + if (source == null) + { + return new FileScanItem(); + } + + return new FileScanItem + { + IsSelected = source.IsSelected, + SourcePath = source.SourcePath, + OutputPath = source.OutputPath, + DiffPath = source.DiffPath, + TextOperationCount = source.TextOperationCount, + ImageOperationCount = source.ImageOperationCount, + Status = source.Status, + }; + } + + private static RuleDefinition CloneRule(RuleDefinition source) + { + if (source == null) + { + return new RuleDefinition(); + } + + return new RuleDefinition + { + Id = source.Id, + Name = source.Name, + IsEnabled = source.IsEnabled, + MatchMode = source.MatchMode, + IsCaseSensitive = source.IsCaseSensitive, + IsWholeWord = source.IsWholeWord, + SearchText = source.SearchText, + ReplacementText = source.ReplacementText, + Note = source.Note, + }; + } + + private static List GetContextMenuTexts(ContextMenuStrip contextMenu) + { + if (contextMenu == null) + { + return new List(); + } + + return contextMenu.Items.Cast().Select(item => item.Text).ToList(); + } + } +} \ No newline at end of file diff --git a/Presentation/IUserDialogService.cs b/Presentation/IUserDialogService.cs new file mode 100644 index 0000000..2f826e2 --- /dev/null +++ b/Presentation/IUserDialogService.cs @@ -0,0 +1,20 @@ +using System.Collections.Generic; +using System.Windows.Forms; +using DCIT.Core.Models; + +namespace DCIT.App.Presentation +{ + public interface IUserDialogService + { + DialogResult ShowMessage(IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon); + + AutoExtractPreviewResult ShowAutoExtractPreview(IWin32Window owner, IList candidates); + } + + public sealed class AutoExtractPreviewResult + { + public DialogResult DialogResult { get; set; } + + public IList SelectedCandidates { get; set; } = new List(); + } +} diff --git a/Presentation/ModernFolderPicker.cs b/Presentation/ModernFolderPicker.cs new file mode 100644 index 0000000..dc9da97 --- /dev/null +++ b/Presentation/ModernFolderPicker.cs @@ -0,0 +1,33 @@ +using System.IO; +using System.Windows.Forms; + +namespace DCIT.App.Presentation +{ + internal static class ModernFolderPicker + { + public static bool TrySelectFolder(IWin32Window owner, string initialDirectory, out string selectedPath) + { + selectedPath = null; + using (var dialog = new OpenFileDialog()) + { + dialog.ValidateNames = false; + dialog.CheckFileExists = false; + dialog.CheckPathExists = true; + dialog.FileName = "选择当前文件夹"; + dialog.Filter = "文件夹|*.folder"; + if (!string.IsNullOrWhiteSpace(initialDirectory) && Directory.Exists(initialDirectory)) + { + dialog.InitialDirectory = initialDirectory; + } + + if (dialog.ShowDialog(owner) != DialogResult.OK) + { + return false; + } + + selectedPath = Path.GetDirectoryName(dialog.FileName); + return !string.IsNullOrWhiteSpace(selectedPath); + } + } + } +} diff --git a/Presentation/UserDialogService.cs b/Presentation/UserDialogService.cs new file mode 100644 index 0000000..8f79d62 --- /dev/null +++ b/Presentation/UserDialogService.cs @@ -0,0 +1,31 @@ +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; +using DCIT.App.Forms; +using DCIT.Core.Models; + +namespace DCIT.App.Presentation +{ + public sealed class UserDialogService : IUserDialogService + { + public DialogResult ShowMessage(IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon) + { + return MessageBox.Show(owner, text, caption, buttons, icon); + } + + public AutoExtractPreviewResult ShowAutoExtractPreview(IWin32Window owner, IList candidates) + { + using (var preview = new AutoExtractPreviewForm(candidates)) + { + var dialogResult = preview.ShowDialog(owner); + return new AutoExtractPreviewResult + { + DialogResult = dialogResult, + SelectedCandidates = preview.SelectedCandidates == null + ? new List() + : preview.SelectedCandidates.ToList(), + }; + } + } + } +} diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..b77857c --- /dev/null +++ b/Program.cs @@ -0,0 +1,105 @@ +using System; +using System.Linq; +using System.Windows.Forms; +using DCIT.App.Forms; +using DCIT.App.Presentation; +using DCIT.Core.Services; + +namespace DCIT.App +{ + internal static class Program + { + [STAThread] + private static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + + try + { + var startupDirectory = AppContext.BaseDirectory; + var runtimeValidationService = new RuntimeEnvironmentValidationService(startupDirectory); + var runtimeValidationResult = runtimeValidationService.Validate(); + if (runtimeValidationResult.HasBlockingIssues) + { + MessageBox.Show( + BuildRuntimeValidationMessage(runtimeValidationResult), + "WORD 2007 格式调整软件", + MessageBoxButtons.OK, + MessageBoxIcon.Error); + return; + } + + var logService = new LogService(startupDirectory); + LogRuntimeValidation(logService, runtimeValidationResult); + var configurationService = new ConfigurationService(startupDirectory); + var configurationLoadResult = configurationService.Load(); + var fileScanService = new FileScanService(); + var ruleService = new RuleService(); + var docConversionService = new OfficeDocConversionService(startupDirectory); + var wordTextExtractionService = new WordTextExtractionService(docConversionService); + var autoExtractService = new AutoExtractService(wordTextExtractionService); + var bmpDiffCodec = new BmpDiffCodec(); + var diffSerializationService = new DiffSerializationService(bmpDiffCodec); + var documentProcessingService = new DocumentProcessingService(diffSerializationService, docConversionService); + var dialogService = new UserDialogService(); + var temporaryFileCleanupService = new TemporaryFileCleanupService(); + var cleanupResult = temporaryFileCleanupService.Cleanup(configurationLoadResult.Config); + + if (cleanupResult.RemovedFiles.Count > 0) + { + logService.Info("TEMP_CLEANUP", string.Format("启动时已清理 {0} 个遗留临时文件。", cleanupResult.RemovedFiles.Count)); + } + + foreach (var failure in cleanupResult.Failures) + { + logService.Warning("TEMP_CLEANUP_FAIL", failure); + } + + Application.Run( + new MainForm( + configurationService, + logService, + fileScanService, + ruleService, + autoExtractService, + documentProcessingService, + dialogService)); + } + catch (Exception ex) + { + MessageBox.Show( + "程序启动失败: " + ex.Message, + "WORD 2007 格式调整软件", + MessageBoxButtons.OK, + MessageBoxIcon.Error); + } + } + + private static string BuildRuntimeValidationMessage(DCIT.Core.Models.RuntimeEnvironmentValidationResult validationResult) + { + var lines = validationResult.BlockingIssues.Select(issue => "- " + issue).ToList(); + return "程序启动前环境检查未通过:" + Environment.NewLine + string.Join(Environment.NewLine, lines); + } + + private static void LogRuntimeValidation(LogService logService, DCIT.Core.Models.RuntimeEnvironmentValidationResult validationResult) + { + logService.Info("ENV_STARTUP", "启动目录可写: " + validationResult.StartupDirectory); + + if (!string.IsNullOrWhiteSpace(validationResult.ResolvedAutomationProgId)) + { + logService.Info("ENV_AUTOMATION", "检测到可自动化组件: " + validationResult.ResolvedAutomationProgId); + } + + if (!string.IsNullOrWhiteSpace(validationResult.ResolvedDocToPath)) + { + logService.Info("ENV_DOCTO", "检测到 docto.exe: " + validationResult.ResolvedDocToPath); + } + + foreach (var warning in validationResult.Warnings) + { + logService.Warning("ENV_WARNING", warning); + } + } + } +} \ No newline at end of file diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..3479db1 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,3 @@ +using System.Runtime.CompilerServices; + +[assembly: InternalsVisibleTo("DCIT.App.Tests")] diff --git a/Properties/PublishProfiles/FolderProfile.pubxml b/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..7351288 --- /dev/null +++ b/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,17 @@ + + + Release + Any CPU + bin\publish\win-x64\ + FileSystem + win-x64 + true + true + true + true + true + false + none + false + + \ No newline at end of file diff --git a/bin/Debug/net6.0-windows/DCIT.App.deps.json b/bin/Debug/net6.0-windows/DCIT.App.deps.json new file mode 100644 index 0000000..bd39f69 --- /dev/null +++ b/bin/Debug/net6.0-windows/DCIT.App.deps.json @@ -0,0 +1,173 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "DCIT.App/1.0.0": { + "dependencies": { + "DCIT.Core": "1.0.0" + }, + "runtime": { + "DCIT.App.dll": {} + } + }, + "DocumentFormat.OpenXml/3.5.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "ExCSS/4.2.3": { + "runtime": { + "lib/net6.0/ExCSS.dll": { + "assemblyVersion": "4.2.3.0", + "fileVersion": "4.2.3.0" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.4": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.4.30916" + } + } + }, + "Svg/3.4.7": { + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.7.1" + } + } + }, + "System.Drawing.Common/5.0.3": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + } + }, + "System.IO.Packaging/8.0.1": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "DCIT.Core/1.0.0": { + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "runtime": { + "DCIT.Core.dll": {} + } + } + } + }, + "libraries": { + "DCIT.App/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==", + "path": "documentformat.openxml/3.5.1", + "hashPath": "documentformat.openxml.3.5.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==", + "path": "documentformat.openxml.framework/3.5.1", + "hashPath": "documentformat.openxml.framework.3.5.1.nupkg.sha512" + }, + "ExCSS/4.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "path": "excss/4.2.3", + "hashPath": "excss.4.2.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "path": "newtonsoft.json/13.0.4", + "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" + }, + "Svg/3.4.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Omez7ly5BGhg3OzdV+LHZ5sI0+JQ6hF7WVKUeyHw4jRvcEWNCPCf1MWMBaf+R0DRBSZHx5EUHwBTEF+2oYtsAw==", + "path": "svg/3.4.7", + "hashPath": "svg.3.4.7.nupkg.sha512" + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==", + "path": "system.drawing.common/5.0.3", + "hashPath": "system.drawing.common.5.0.3.nupkg.sha512" + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "path": "system.io.packaging/8.0.1", + "hashPath": "system.io.packaging.8.0.1.nupkg.sha512" + }, + "DCIT.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0-windows/DCIT.App.dll b/bin/Debug/net6.0-windows/DCIT.App.dll new file mode 100644 index 0000000..c6468a0 Binary files /dev/null and b/bin/Debug/net6.0-windows/DCIT.App.dll differ diff --git a/bin/Debug/net6.0-windows/DCIT.App.exe b/bin/Debug/net6.0-windows/DCIT.App.exe new file mode 100644 index 0000000..961d767 Binary files /dev/null and b/bin/Debug/net6.0-windows/DCIT.App.exe differ diff --git a/bin/Debug/net6.0-windows/DCIT.App.pdb b/bin/Debug/net6.0-windows/DCIT.App.pdb new file mode 100644 index 0000000..a089be6 Binary files /dev/null and b/bin/Debug/net6.0-windows/DCIT.App.pdb differ diff --git a/bin/Debug/net6.0-windows/DCIT.App.runtimeconfig.json b/bin/Debug/net6.0-windows/DCIT.App.runtimeconfig.json new file mode 100644 index 0000000..f9988b2 --- /dev/null +++ b/bin/Debug/net6.0-windows/DCIT.App.runtimeconfig.json @@ -0,0 +1,15 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0-windows/DCIT.Core.dll b/bin/Debug/net6.0-windows/DCIT.Core.dll new file mode 100644 index 0000000..24538a2 Binary files /dev/null and b/bin/Debug/net6.0-windows/DCIT.Core.dll differ diff --git a/bin/Debug/net6.0-windows/DCIT.Core.pdb b/bin/Debug/net6.0-windows/DCIT.Core.pdb new file mode 100644 index 0000000..6403c6f Binary files /dev/null and b/bin/Debug/net6.0-windows/DCIT.Core.pdb differ diff --git a/bin/Debug/net6.0-windows/DocumentFormat.OpenXml.Framework.dll b/bin/Debug/net6.0-windows/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..c9b3bc7 Binary files /dev/null and b/bin/Debug/net6.0-windows/DocumentFormat.OpenXml.Framework.dll differ diff --git a/bin/Debug/net6.0-windows/DocumentFormat.OpenXml.dll b/bin/Debug/net6.0-windows/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..35d5251 Binary files /dev/null and b/bin/Debug/net6.0-windows/DocumentFormat.OpenXml.dll differ diff --git a/bin/Debug/net6.0-windows/ExCSS.dll b/bin/Debug/net6.0-windows/ExCSS.dll new file mode 100644 index 0000000..e83aa20 Binary files /dev/null and b/bin/Debug/net6.0-windows/ExCSS.dll differ diff --git a/bin/Debug/net6.0-windows/Newtonsoft.Json.dll b/bin/Debug/net6.0-windows/Newtonsoft.Json.dll new file mode 100644 index 0000000..5813d8c Binary files /dev/null and b/bin/Debug/net6.0-windows/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net6.0-windows/Svg.dll b/bin/Debug/net6.0-windows/Svg.dll new file mode 100644 index 0000000..ded82c5 Binary files /dev/null and b/bin/Debug/net6.0-windows/Svg.dll differ diff --git a/bin/Debug/net6.0-windows/System.IO.Packaging.dll b/bin/Debug/net6.0-windows/System.IO.Packaging.dll new file mode 100644 index 0000000..6ef5541 Binary files /dev/null and b/bin/Debug/net6.0-windows/System.IO.Packaging.dll differ diff --git a/bin/Debug/net6.0-windows/tools/DocTo/docto.exe b/bin/Debug/net6.0-windows/tools/DocTo/docto.exe new file mode 100644 index 0000000..c0f2dd2 Binary files /dev/null and b/bin/Debug/net6.0-windows/tools/DocTo/docto.exe differ diff --git a/bin/Debug/net6.0-windows/win-x64/Accessibility.dll b/bin/Debug/net6.0-windows/win-x64/Accessibility.dll new file mode 100644 index 0000000..ced8100 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Accessibility.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll b/bin/Debug/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll new file mode 100644 index 0000000..80489b8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/D3DCompiler_47_cor3.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/DCIT.App.deps.json b/bin/Debug/net6.0-windows/win-x64/DCIT.App.deps.json new file mode 100644 index 0000000..5fbc584 --- /dev/null +++ b/bin/Debug/net6.0-windows/win-x64/DCIT.App.deps.json @@ -0,0 +1,1371 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "DCIT.App/1.0.0": { + "dependencies": { + "DCIT.Core": "1.0.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.36", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "6.0.36" + }, + "runtime": { + "DCIT.App.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.3624.51421" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.3624.51421" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "14.40.33810.0" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "42.42.42.42424" + }, + "api-ms-win-core-console-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-console-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-datetime-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-debug-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-errorhandling-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-fibers-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-file-l2-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-handle-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-heap-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-interlocked-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-libraryloader-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-localization-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-memory-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-namedpipe-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processenvironment-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processthreads-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-processthreads-l1-1-1.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-profile-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-rtlsupport-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-string-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-synch-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-synch-l1-2-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-sysinfo-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-timezone-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-core-util-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-conio-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-convert-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-environment-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-filesystem-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-heap-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-locale-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-math-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-multibyte-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-private-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-process-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-runtime-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-stdio-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-string-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-time-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "api-ms-win-crt-utility-l1-1-0.dll": { + "fileVersion": "10.0.22000.194" + }, + "clretwrc.dll": { + "fileVersion": "6.0.3624.51421" + }, + "clrjit.dll": { + "fileVersion": "6.0.3624.51421" + }, + "coreclr.dll": { + "fileVersion": "6.0.3624.51421" + }, + "createdump.exe": { + "fileVersion": "6.0.3624.51421" + }, + "dbgshim.dll": { + "fileVersion": "6.0.3624.51421" + }, + "hostfxr.dll": { + "fileVersion": "6.0.3624.51421" + }, + "hostpolicy.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscordaccore.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscordaccore_amd64_amd64_6.0.3624.51421.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscordbi.dll": { + "fileVersion": "6.0.3624.51421" + }, + "mscorrc.dll": { + "fileVersion": "6.0.3624.51421" + }, + "msquic.dll": { + "fileVersion": "1.9.1.0" + }, + "ucrtbase.dll": { + "fileVersion": "10.0.22000.194" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51513" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "PresentationCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationUI.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "ReachFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Drawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Printing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Xaml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsBase.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22621.3233" + }, + "PenImc_cor3.dll": { + "fileVersion": "6.0.3624.51603" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "6.0.24.46601" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.40.33810.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "6.0.3624.51603" + } + } + }, + "DocumentFormat.OpenXml/3.5.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "ExCSS/4.2.3": { + "runtime": { + "lib/net6.0/ExCSS.dll": { + "assemblyVersion": "4.2.3.0", + "fileVersion": "4.2.3.0" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.4": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.4.30916" + } + } + }, + "Svg/3.4.7": { + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.7.1" + } + } + }, + "System.Drawing.Common/5.0.3": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + } + }, + "System.IO.Packaging/8.0.1": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "DCIT.Core/1.0.0": { + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "runtime": { + "DCIT.Core.dll": {} + } + } + } + }, + "libraries": { + "DCIT.App/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==", + "path": "documentformat.openxml/3.5.1", + "hashPath": "documentformat.openxml.3.5.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==", + "path": "documentformat.openxml.framework/3.5.1", + "hashPath": "documentformat.openxml.framework.3.5.1.nupkg.sha512" + }, + "ExCSS/4.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "path": "excss/4.2.3", + "hashPath": "excss.4.2.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "path": "newtonsoft.json/13.0.4", + "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" + }, + "Svg/3.4.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Omez7ly5BGhg3OzdV+LHZ5sI0+JQ6hF7WVKUeyHw4jRvcEWNCPCf1MWMBaf+R0DRBSZHx5EUHwBTEF+2oYtsAw==", + "path": "svg/3.4.7", + "hashPath": "svg.3.4.7.nupkg.sha512" + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==", + "path": "system.drawing.common/5.0.3", + "hashPath": "system.drawing.common.5.0.3.nupkg.sha512" + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "path": "system.io.packaging/8.0.1", + "hashPath": "system.io.packaging.8.0.1.nupkg.sha512" + }, + "DCIT.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0-windows/win-x64/DCIT.App.dll b/bin/Debug/net6.0-windows/win-x64/DCIT.App.dll new file mode 100644 index 0000000..ffca807 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/DCIT.App.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/DCIT.App.exe b/bin/Debug/net6.0-windows/win-x64/DCIT.App.exe new file mode 100644 index 0000000..6f3384b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/DCIT.App.exe differ diff --git a/bin/Debug/net6.0-windows/win-x64/DCIT.App.runtimeconfig.json b/bin/Debug/net6.0-windows/win-x64/DCIT.App.runtimeconfig.json new file mode 100644 index 0000000..617f954 --- /dev/null +++ b/bin/Debug/net6.0-windows/win-x64/DCIT.App.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.36" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.36" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0-windows/win-x64/DCIT.Core.dll b/bin/Debug/net6.0-windows/win-x64/DCIT.Core.dll new file mode 100644 index 0000000..ce6fde6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/DCIT.Core.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/DCIT.Core.pdb b/bin/Debug/net6.0-windows/win-x64/DCIT.Core.pdb new file mode 100644 index 0000000..21c4915 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/DCIT.Core.pdb differ diff --git a/bin/Debug/net6.0-windows/win-x64/DirectWriteForwarder.dll b/bin/Debug/net6.0-windows/win-x64/DirectWriteForwarder.dll new file mode 100644 index 0000000..76b87cb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/DirectWriteForwarder.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/DocumentFormat.OpenXml.Framework.dll b/bin/Debug/net6.0-windows/win-x64/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..c9b3bc7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/DocumentFormat.OpenXml.Framework.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/DocumentFormat.OpenXml.dll b/bin/Debug/net6.0-windows/win-x64/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..35d5251 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/DocumentFormat.OpenXml.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ExCSS.dll b/bin/Debug/net6.0-windows/win-x64/ExCSS.dll new file mode 100644 index 0000000..e83aa20 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ExCSS.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.CSharp.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..39b5df2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.CSharp.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..03f5288 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..1c4ea23 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll new file mode 100644 index 0000000..433e666 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.Forms.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..9ef90a3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.VisualBasic.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..c4e4035 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..9b2653c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..c1c9d24 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.Registry.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..313e5cc Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Microsoft.Win32.SystemEvents.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Newtonsoft.Json.dll b/bin/Debug/net6.0-windows/win-x64/Newtonsoft.Json.dll new file mode 100644 index 0000000..5813d8c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Newtonsoft.Json.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PenImc_cor3.dll b/bin/Debug/net6.0-windows/win-x64/PenImc_cor3.dll new file mode 100644 index 0000000..52bb058 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PenImc_cor3.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationCore.dll b/bin/Debug/net6.0-windows/win-x64/PresentationCore.dll new file mode 100644 index 0000000..834f114 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationCore.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll new file mode 100644 index 0000000..c3cd243 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemCore.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemData.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemData.dll new file mode 100644 index 0000000..fcb41d1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemData.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll new file mode 100644 index 0000000..6fd26e7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemDrawing.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll new file mode 100644 index 0000000..18bf358 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemXml.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll new file mode 100644 index 0000000..3676696 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework-SystemXmlLinq.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Aero.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Aero.dll new file mode 100644 index 0000000..3047a9a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Aero.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Aero2.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Aero2.dll new file mode 100644 index 0000000..d299393 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Aero2.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll new file mode 100644 index 0000000..a8e8fea Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.AeroLite.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Classic.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Classic.dll new file mode 100644 index 0000000..1f96bfa Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Classic.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Luna.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Luna.dll new file mode 100644 index 0000000..fdc5503 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Luna.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Royale.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Royale.dll new file mode 100644 index 0000000..5a81cf9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.Royale.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationFramework.dll b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.dll new file mode 100644 index 0000000..cb99daf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationFramework.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationNative_cor3.dll b/bin/Debug/net6.0-windows/win-x64/PresentationNative_cor3.dll new file mode 100644 index 0000000..dd150ad Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationNative_cor3.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/PresentationUI.dll b/bin/Debug/net6.0-windows/win-x64/PresentationUI.dll new file mode 100644 index 0000000..d26e605 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/PresentationUI.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ReachFramework.dll b/bin/Debug/net6.0-windows/win-x64/ReachFramework.dll new file mode 100644 index 0000000..f84e5d4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ReachFramework.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/Svg.dll b/bin/Debug/net6.0-windows/win-x64/Svg.dll new file mode 100644 index 0000000..ded82c5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/Svg.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.AppContext.dll b/bin/Debug/net6.0-windows/win-x64/System.AppContext.dll new file mode 100644 index 0000000..7ba712d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.AppContext.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Buffers.dll b/bin/Debug/net6.0-windows/win-x64/System.Buffers.dll new file mode 100644 index 0000000..2cf6038 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Buffers.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.CodeDom.dll b/bin/Debug/net6.0-windows/win-x64/System.CodeDom.dll new file mode 100644 index 0000000..37f744d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.CodeDom.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Collections.Concurrent.dll b/bin/Debug/net6.0-windows/win-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..dfc5729 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Collections.Concurrent.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Collections.Immutable.dll b/bin/Debug/net6.0-windows/win-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..62aed01 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Collections.Immutable.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Collections.NonGeneric.dll b/bin/Debug/net6.0-windows/win-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..580633c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Collections.NonGeneric.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Collections.Specialized.dll b/bin/Debug/net6.0-windows/win-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..8c2fa3b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Collections.Specialized.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Collections.dll b/bin/Debug/net6.0-windows/win-x64/System.Collections.dll new file mode 100644 index 0000000..18a8a2b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Collections.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..bd9bf65 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.Annotations.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..07aed62 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..8693324 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..a84952b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..3fca5ca Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.dll b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.dll new file mode 100644 index 0000000..02c8342 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ComponentModel.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll b/bin/Debug/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..b234469 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Configuration.ConfigurationManager.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Configuration.dll b/bin/Debug/net6.0-windows/win-x64/System.Configuration.dll new file mode 100644 index 0000000..cb86565 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Configuration.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Console.dll b/bin/Debug/net6.0-windows/win-x64/System.Console.dll new file mode 100644 index 0000000..a6b59ed Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Console.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Core.dll b/bin/Debug/net6.0-windows/win-x64/System.Core.dll new file mode 100644 index 0000000..4c1e1d1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Core.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Data.Common.dll b/bin/Debug/net6.0-windows/win-x64/System.Data.Common.dll new file mode 100644 index 0000000..64248ae Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Data.Common.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..95dc1fd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Data.DataSetExtensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Data.dll b/bin/Debug/net6.0-windows/win-x64/System.Data.dll new file mode 100644 index 0000000..5763e3a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Data.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Design.dll b/bin/Debug/net6.0-windows/win-x64/System.Design.dll new file mode 100644 index 0000000..0be2484 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Design.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..32201d2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Contracts.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Debug.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..57925a2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Debug.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..f9dd550 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..741fa8c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.EventLog.Messages.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..444dc1a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.EventLog.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..2cb5ee5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..a255d66 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.PerformanceCounter.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Process.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..2efb32a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Process.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..fb5011e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.StackTrace.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..e618a51 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Tools.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..505db14 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Tools.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..65748d9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.TraceSource.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..4979f06 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Diagnostics.Tracing.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.DirectoryServices.dll b/bin/Debug/net6.0-windows/win-x64/System.DirectoryServices.dll new file mode 100644 index 0000000..feb0a75 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.DirectoryServices.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Drawing.Common.dll b/bin/Debug/net6.0-windows/win-x64/System.Drawing.Common.dll new file mode 100644 index 0000000..c6f074f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Drawing.Design.dll b/bin/Debug/net6.0-windows/win-x64/System.Drawing.Design.dll new file mode 100644 index 0000000..356c0ae Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Drawing.Design.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Drawing.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..2f0521c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Drawing.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Drawing.dll b/bin/Debug/net6.0-windows/win-x64/System.Drawing.dll new file mode 100644 index 0000000..48e1f18 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Drawing.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Dynamic.Runtime.dll b/bin/Debug/net6.0-windows/win-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..2014b1a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Dynamic.Runtime.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Formats.Asn1.dll b/bin/Debug/net6.0-windows/win-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..a097007 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Formats.Asn1.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Globalization.Calendars.dll b/bin/Debug/net6.0-windows/win-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..ba2b212 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Globalization.Calendars.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Globalization.Extensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..1f77dc8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Globalization.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Globalization.dll b/bin/Debug/net6.0-windows/win-x64/System.Globalization.dll new file mode 100644 index 0000000..7455c59 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Globalization.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..ce57142 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.Brotli.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..5ae9379 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.FileSystem.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.Native.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.Native.dll new file mode 100644 index 0000000..27d7e53 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.Native.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..9b89d8b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.ZipFile.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.dll new file mode 100644 index 0000000..ece41e7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Compression.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..163f8cd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..f029d4b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..d2da425 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..8fb1b8e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..c056ea4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.FileSystem.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..0a52b03 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.IsolatedStorage.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..4c17eec Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Packaging.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Packaging.dll new file mode 100644 index 0000000..6ef5541 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Packaging.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..b1c70a4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.Pipes.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..23f62e4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.Pipes.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..3cf06a1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.IO.dll b/bin/Debug/net6.0-windows/win-x64/System.IO.dll new file mode 100644 index 0000000..66eb49d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.IO.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Linq.Expressions.dll b/bin/Debug/net6.0-windows/win-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..c530d07 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Linq.Expressions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Linq.Parallel.dll b/bin/Debug/net6.0-windows/win-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..15fa9b6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Linq.Parallel.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Linq.Queryable.dll b/bin/Debug/net6.0-windows/win-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..b0ad105 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Linq.Queryable.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Linq.dll b/bin/Debug/net6.0-windows/win-x64/System.Linq.dll new file mode 100644 index 0000000..866e0d2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Linq.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Memory.dll b/bin/Debug/net6.0-windows/win-x64/System.Memory.dll new file mode 100644 index 0000000..3032fe4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Memory.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Http.Json.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..218055d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Http.Json.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Http.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Http.dll new file mode 100644 index 0000000..efd5231 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Http.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.HttpListener.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..d7747e6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.HttpListener.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Mail.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Mail.dll new file mode 100644 index 0000000..c8e6cbb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Mail.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.NameResolution.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..65fb0bf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.NameResolution.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.NetworkInformation.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..c5b534f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.NetworkInformation.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Ping.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Ping.dll new file mode 100644 index 0000000..6089d2d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Ping.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..2009135 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Quic.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Quic.dll new file mode 100644 index 0000000..bc5b66b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Quic.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Requests.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Requests.dll new file mode 100644 index 0000000..28bcedb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Requests.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Security.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Security.dll new file mode 100644 index 0000000..7182b5c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Security.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.ServicePoint.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..4e3f87a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.ServicePoint.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.Sockets.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..39e2214 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.Sockets.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.WebClient.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..7547388 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.WebClient.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..ff4a9c8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.WebHeaderCollection.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.WebProxy.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..5f8a987 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.WebProxy.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..a4b37c2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.WebSockets.Client.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.WebSockets.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..1bd9677 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.WebSockets.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Net.dll b/bin/Debug/net6.0-windows/win-x64/System.Net.dll new file mode 100644 index 0000000..ba5e27e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Net.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Numerics.Vectors.dll b/bin/Debug/net6.0-windows/win-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..43cc40e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Numerics.Vectors.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Numerics.dll b/bin/Debug/net6.0-windows/win-x64/System.Numerics.dll new file mode 100644 index 0000000..ea04d7a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Numerics.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ObjectModel.dll b/bin/Debug/net6.0-windows/win-x64/System.ObjectModel.dll new file mode 100644 index 0000000..8ad8583 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ObjectModel.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Printing.dll b/bin/Debug/net6.0-windows/win-x64/System.Printing.dll new file mode 100644 index 0000000..2c35a5d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Printing.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Private.CoreLib.dll b/bin/Debug/net6.0-windows/win-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..4a0f7b0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Private.CoreLib.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll b/bin/Debug/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..4cb7f64 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Private.DataContractSerialization.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Private.Uri.dll b/bin/Debug/net6.0-windows/win-x64/System.Private.Uri.dll new file mode 100644 index 0000000..58d44e2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Private.Uri.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Private.Xml.Linq.dll b/bin/Debug/net6.0-windows/win-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..4e71c42 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Private.Xml.Linq.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Private.Xml.dll b/bin/Debug/net6.0-windows/win-x64/System.Private.Xml.dll new file mode 100644 index 0000000..d02de19 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Private.Xml.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..13f1271 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.DispatchProxy.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..9a62e69 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..d3deaf4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..30ac549 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Emit.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.Extensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..98a30b8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.Metadata.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..1fbf2f7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Metadata.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..2c63019 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..baea98c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.TypeExtensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Reflection.dll b/bin/Debug/net6.0-windows/win-x64/System.Reflection.dll new file mode 100644 index 0000000..5f25cc0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Reflection.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Resources.Extensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Resources.Extensions.dll new file mode 100644 index 0000000..ec4c400 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Resources.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Resources.Reader.dll b/bin/Debug/net6.0-windows/win-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..8acbdec Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Resources.Reader.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Resources.ResourceManager.dll b/bin/Debug/net6.0-windows/win-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..21357e1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Resources.ResourceManager.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Resources.Writer.dll b/bin/Debug/net6.0-windows/win-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..8780c41 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Resources.Writer.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..5df76b1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..515b363 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Extensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..5a13835 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Handles.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..6be0766 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Handles.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..8b208c6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.InteropServices.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..0cddb78 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.InteropServices.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..e2f5b32 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Intrinsics.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Loader.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..ca5fc1d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Loader.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Numerics.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..41f8a77 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Numerics.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..67cf05e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..2ec66d0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Json.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..291e37f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..43030f3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..cedd13b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.Serialization.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Runtime.dll b/bin/Debug/net6.0-windows/win-x64/System.Runtime.dll new file mode 100644 index 0000000..58c374a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Runtime.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.AccessControl.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..b2720e9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.AccessControl.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Claims.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Claims.dll new file mode 100644 index 0000000..a28f01a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Claims.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..80e4e17 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..bbe2268 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Cng.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..ad67338 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Csp.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..123f0db Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..1e121c5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..849af6c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Pkcs.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..17ebbbc Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..ffac07f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.ProtectedData.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..2f2c843 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..db7a269 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Cryptography.Xml.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Permissions.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Permissions.dll new file mode 100644 index 0000000..9c64522 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Permissions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Principal.Windows.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..102c2bb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Principal.Windows.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.Principal.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.Principal.dll new file mode 100644 index 0000000..36d876d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.Principal.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.SecureString.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..79dffe9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.SecureString.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Security.dll b/bin/Debug/net6.0-windows/win-x64/System.Security.dll new file mode 100644 index 0000000..18202d2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Security.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ServiceModel.Web.dll b/bin/Debug/net6.0-windows/win-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..6cd66d1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ServiceModel.Web.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ServiceProcess.dll b/bin/Debug/net6.0-windows/win-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..7eaa3ba Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ServiceProcess.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll b/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..dedeb34 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.CodePages.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..b612d6d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.dll b/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..9cac878 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Text.Encoding.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Text.Encodings.Web.dll b/bin/Debug/net6.0-windows/win-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..2edc5ad Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Text.Encodings.Web.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Text.Json.dll b/bin/Debug/net6.0-windows/win-x64/System.Text.Json.dll new file mode 100644 index 0000000..9337643 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Text.Json.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Text.RegularExpressions.dll b/bin/Debug/net6.0-windows/win-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..80b39c4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Text.RegularExpressions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.AccessControl.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.AccessControl.dll new file mode 100644 index 0000000..a22b14e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.AccessControl.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Channels.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..aae559e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Channels.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Overlapped.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..e3e5f9a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Overlapped.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..6603915 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..40a8868 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..24c7b29 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..03fa0f5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Tasks.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Thread.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..137f90c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Thread.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.ThreadPool.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..6198605 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.ThreadPool.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.Timer.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..750b627 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.Timer.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Threading.dll b/bin/Debug/net6.0-windows/win-x64/System.Threading.dll new file mode 100644 index 0000000..9919424 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Threading.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Transactions.Local.dll b/bin/Debug/net6.0-windows/win-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..446c302 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Transactions.Local.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Transactions.dll b/bin/Debug/net6.0-windows/win-x64/System.Transactions.dll new file mode 100644 index 0000000..33aafaf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Transactions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.ValueTuple.dll b/bin/Debug/net6.0-windows/win-x64/System.ValueTuple.dll new file mode 100644 index 0000000..944ad29 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.ValueTuple.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Web.HttpUtility.dll b/bin/Debug/net6.0-windows/win-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..32ffd8f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Web.HttpUtility.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Web.dll b/bin/Debug/net6.0-windows/win-x64/System.Web.dll new file mode 100644 index 0000000..8512afd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Web.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll new file mode 100644 index 0000000..fa87f0d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Controls.Ribbon.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Extensions.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Extensions.dll new file mode 100644 index 0000000..beda0a8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll new file mode 100644 index 0000000..7303749 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Design.Editors.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Design.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Design.dll new file mode 100644 index 0000000..3488253 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Design.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll new file mode 100644 index 0000000..52d6088 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.Primitives.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.dll new file mode 100644 index 0000000..517e222 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Forms.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll new file mode 100644 index 0000000..acbb29c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Input.Manipulations.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.Presentation.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.Presentation.dll new file mode 100644 index 0000000..efb9c55 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.Presentation.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Windows.dll b/bin/Debug/net6.0-windows/win-x64/System.Windows.dll new file mode 100644 index 0000000..adb81a2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Windows.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xaml.dll b/bin/Debug/net6.0-windows/win-x64/System.Xaml.dll new file mode 100644 index 0000000..6ca10c5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xaml.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.Linq.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..c7c0ce2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.Linq.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..a33799b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.ReaderWriter.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.Serialization.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..3696fbf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.Serialization.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.XDocument.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..e88a234 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.XDocument.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..c53fd95 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.XPath.XDocument.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.XPath.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..54dfbab Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.XPath.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.XmlDocument.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..11966ac Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.XmlDocument.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..59e2840 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.XmlSerializer.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.Xml.dll b/bin/Debug/net6.0-windows/win-x64/System.Xml.dll new file mode 100644 index 0000000..8976fb5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.Xml.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/System.dll b/bin/Debug/net6.0-windows/win-x64/System.dll new file mode 100644 index 0000000..a5e75f9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/System.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/UIAutomationClient.dll b/bin/Debug/net6.0-windows/win-x64/UIAutomationClient.dll new file mode 100644 index 0000000..9a816a0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/UIAutomationClient.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll b/bin/Debug/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll new file mode 100644 index 0000000..672fab5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/UIAutomationClientSideProviders.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/UIAutomationProvider.dll b/bin/Debug/net6.0-windows/win-x64/UIAutomationProvider.dll new file mode 100644 index 0000000..fe8d324 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/UIAutomationProvider.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/UIAutomationTypes.dll b/bin/Debug/net6.0-windows/win-x64/UIAutomationTypes.dll new file mode 100644 index 0000000..b07c636 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/UIAutomationTypes.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/WindowsBase.dll b/bin/Debug/net6.0-windows/win-x64/WindowsBase.dll new file mode 100644 index 0000000..3b6cf90 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/WindowsBase.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/WindowsFormsIntegration.dll b/bin/Debug/net6.0-windows/win-x64/WindowsFormsIntegration.dll new file mode 100644 index 0000000..27d4dca Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/WindowsFormsIntegration.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..726b975 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-console-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll new file mode 100644 index 0000000..b9d1ed4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-console-l1-2-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..f2ecfa7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..7bd075b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..3bafba9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll new file mode 100644 index 0000000..651ffe1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-fibers-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..12bf0b6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..da64db3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l1-2-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..9246b98 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-file-l2-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..c96e31d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..baa932f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..7aa0639 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..ddd5e27 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..7b90b7c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..63e54f3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..37e956e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..a2f3605 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..f4d3a03 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..7bc40e0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..da2b687 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..ae6dce5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..32b52be Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-string-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..b88f76a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..a17135a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..527d1a1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..bab2d02 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..080a9c9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-core-util-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..2355a62 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..ddd2b4c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..e2fe9ef Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..97ea465 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..4e3af05 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..5fcd98b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..c3f2800 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..e86ce81 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..62c45dd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..bc346dc Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..d0a43f8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..59e68c0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..08015e2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..6e3ba53 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..eaa7204 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/clretwrc.dll b/bin/Debug/net6.0-windows/win-x64/clretwrc.dll new file mode 100644 index 0000000..208e4fb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/clretwrc.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/clrjit.dll b/bin/Debug/net6.0-windows/win-x64/clrjit.dll new file mode 100644 index 0000000..75cbc42 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/clrjit.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/coreclr.dll b/bin/Debug/net6.0-windows/win-x64/coreclr.dll new file mode 100644 index 0000000..8d2e7a4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/coreclr.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/createdump.exe b/bin/Debug/net6.0-windows/win-x64/createdump.exe new file mode 100644 index 0000000..f03b3cc Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/createdump.exe differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..56e938e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/PresentationCore.resources.dll new file mode 100644 index 0000000..fecbf8b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll new file mode 100644 index 0000000..554d312 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/PresentationUI.resources.dll new file mode 100644 index 0000000..53957bd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/ReachFramework.resources.dll new file mode 100644 index 0000000..629aa0e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..ba1db32 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..718f895 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..625e397 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..ec7bd96 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..8242747 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/System.Xaml.resources.dll new file mode 100644 index 0000000..1c2bcbf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a9e04ea Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..35090a0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..cf03cd6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..a59e0ef Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/WindowsBase.resources.dll new file mode 100644 index 0000000..70bae3a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..10e3825 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/cs/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/dbgshim.dll b/bin/Debug/net6.0-windows/win-x64/dbgshim.dll new file mode 100644 index 0000000..78f638b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/dbgshim.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..cd445f6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/PresentationCore.resources.dll new file mode 100644 index 0000000..b728739 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/PresentationFramework.resources.dll new file mode 100644 index 0000000..3112793 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/PresentationUI.resources.dll new file mode 100644 index 0000000..cec09d8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/ReachFramework.resources.dll new file mode 100644 index 0000000..6f75493 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..90288e9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..4d7c3d0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..a992bb4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..0e960e5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..179792a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/System.Xaml.resources.dll new file mode 100644 index 0000000..4a358fe Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll new file mode 100644 index 0000000..0af6488 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..3169440 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..0de4a9d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..2c8b8e5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/WindowsBase.resources.dll new file mode 100644 index 0000000..a7d8d73 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..f5936d1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/de/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..c6a87ee Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/PresentationCore.resources.dll new file mode 100644 index 0000000..1a4c35d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/PresentationFramework.resources.dll new file mode 100644 index 0000000..e279b45 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/PresentationUI.resources.dll new file mode 100644 index 0000000..94c7c0f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/ReachFramework.resources.dll new file mode 100644 index 0000000..026acc4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..4faa6ef Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..15d4064 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..9b2cc73 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..3397abe Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..d91a454 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/System.Xaml.resources.dll new file mode 100644 index 0000000..a5d6318 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll new file mode 100644 index 0000000..0fb8075 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0aeea94 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..810e24c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..190372c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/WindowsBase.resources.dll new file mode 100644 index 0000000..d550ae6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..d71e7ef Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/es/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..3876b30 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/PresentationCore.resources.dll new file mode 100644 index 0000000..437aff8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll new file mode 100644 index 0000000..a3d0b4d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/PresentationUI.resources.dll new file mode 100644 index 0000000..a145dc5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/ReachFramework.resources.dll new file mode 100644 index 0000000..b6d72aa Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..feac0d9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..47d329d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..596c835 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..0eb8287 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..9a33e46 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/System.Xaml.resources.dll new file mode 100644 index 0000000..04fe8fd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..c8a0d4e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..cfbe99d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..a30e57d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..429edcf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/WindowsBase.resources.dll new file mode 100644 index 0000000..9bbef22 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..a39ebe1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/fr/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/hostfxr.dll b/bin/Debug/net6.0-windows/win-x64/hostfxr.dll new file mode 100644 index 0000000..3dbddf6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/hostfxr.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/hostpolicy.dll b/bin/Debug/net6.0-windows/win-x64/hostpolicy.dll new file mode 100644 index 0000000..4b644f6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/hostpolicy.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..e8f0ff0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/PresentationCore.resources.dll new file mode 100644 index 0000000..4de7f12 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/PresentationFramework.resources.dll new file mode 100644 index 0000000..5335f56 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/PresentationUI.resources.dll new file mode 100644 index 0000000..17b15e6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/ReachFramework.resources.dll new file mode 100644 index 0000000..5157854 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..5cf9797 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..5bc7fc6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..50e7dcf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..6c59b19 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..c507fb5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/System.Xaml.resources.dll new file mode 100644 index 0000000..48b6a6b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll new file mode 100644 index 0000000..877b1db Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..d86b0ae Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..c11917a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..4b4fa76 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/WindowsBase.resources.dll new file mode 100644 index 0000000..f1e0acc Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..4b5e5d1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/it/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..762bf48 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/PresentationCore.resources.dll new file mode 100644 index 0000000..4dde8bb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll new file mode 100644 index 0000000..1c125de Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/PresentationUI.resources.dll new file mode 100644 index 0000000..697e272 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/ReachFramework.resources.dll new file mode 100644 index 0000000..a01f212 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..162cbf0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..7ebd39a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..e92cd11 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..123d073 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..ed5ec27 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/System.Xaml.resources.dll new file mode 100644 index 0000000..6c5f34b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll new file mode 100644 index 0000000..3db9469 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..87797d3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..98b5035 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..34b80d7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/WindowsBase.resources.dll new file mode 100644 index 0000000..48b2971 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..87a0674 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ja/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..816c0c0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/PresentationCore.resources.dll new file mode 100644 index 0000000..694cd8e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll new file mode 100644 index 0000000..a8b3b87 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/PresentationUI.resources.dll new file mode 100644 index 0000000..24ed85c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/ReachFramework.resources.dll new file mode 100644 index 0000000..f179e43 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..f36296e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..a15eb4b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..3721ae2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..cf3f11a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..72c5752 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/System.Xaml.resources.dll new file mode 100644 index 0000000..6a091ee Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll new file mode 100644 index 0000000..d450499 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..0bb52fb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..907311d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..fd32c5f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/WindowsBase.resources.dll new file mode 100644 index 0000000..f91450a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..0b70cc5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ko/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/mscordaccore.dll b/bin/Debug/net6.0-windows/win-x64/mscordaccore.dll new file mode 100644 index 0000000..e27cb78 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/mscordaccore.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.3624.51421.dll b/bin/Debug/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.3624.51421.dll new file mode 100644 index 0000000..e27cb78 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/mscordaccore_amd64_amd64_6.0.3624.51421.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/mscordbi.dll b/bin/Debug/net6.0-windows/win-x64/mscordbi.dll new file mode 100644 index 0000000..4f74868 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/mscordbi.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/mscorlib.dll b/bin/Debug/net6.0-windows/win-x64/mscorlib.dll new file mode 100644 index 0000000..c509a2e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/mscorlib.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/mscorrc.dll b/bin/Debug/net6.0-windows/win-x64/mscorrc.dll new file mode 100644 index 0000000..09dc6cd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/mscorrc.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/msquic.dll b/bin/Debug/net6.0-windows/win-x64/msquic.dll new file mode 100644 index 0000000..07cd9e3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/msquic.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/netstandard.dll b/bin/Debug/net6.0-windows/win-x64/netstandard.dll new file mode 100644 index 0000000..e897d4b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/netstandard.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..9b2474d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/PresentationCore.resources.dll new file mode 100644 index 0000000..5134f9d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll new file mode 100644 index 0000000..21064ff Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/PresentationUI.resources.dll new file mode 100644 index 0000000..15249d9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/ReachFramework.resources.dll new file mode 100644 index 0000000..c8a628c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..972a000 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..d909925 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..11293dc Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..f384a48 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..6b5cd5e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/System.Xaml.resources.dll new file mode 100644 index 0000000..befdd99 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll new file mode 100644 index 0000000..931579b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..e1a7018 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..60cafe4 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..266eec7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/WindowsBase.resources.dll new file mode 100644 index 0000000..00e6ecf Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..8a6af8e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pl/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..b9e5ef7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll new file mode 100644 index 0000000..cc960a6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll new file mode 100644 index 0000000..7bd5545 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll new file mode 100644 index 0000000..f0c94aa Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll new file mode 100644 index 0000000..340f1a2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..1ab1a8e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..c9f6b4b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..7aa00bb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..a653ad2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..fc4c916 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll new file mode 100644 index 0000000..e6bdb23 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll new file mode 100644 index 0000000..1c754d7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..d912015 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..97ea9b1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..ddff66f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll new file mode 100644 index 0000000..1bf4b18 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..56bcdcd Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/pt-BR/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..38a0b4c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/PresentationCore.resources.dll new file mode 100644 index 0000000..cadb543 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll new file mode 100644 index 0000000..d1ce6c9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/PresentationUI.resources.dll new file mode 100644 index 0000000..6b17499 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/ReachFramework.resources.dll new file mode 100644 index 0000000..5bb9e8a Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..4c7eab1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..17162c2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..da9ce32 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..a4918ee Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..45015f3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/System.Xaml.resources.dll new file mode 100644 index 0000000..1fa2c3f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll new file mode 100644 index 0000000..5af5c56 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..7fa5504 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..2fbbbe7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..dc26168 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/WindowsBase.resources.dll new file mode 100644 index 0000000..7a052d8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..e6005b7 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ru/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tools/DocTo/docto.exe b/bin/Debug/net6.0-windows/win-x64/tools/DocTo/docto.exe new file mode 100644 index 0000000..c0f2dd2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tools/DocTo/docto.exe differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..75be7d8 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/PresentationCore.resources.dll new file mode 100644 index 0000000..995557f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll new file mode 100644 index 0000000..698eb1b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/PresentationUI.resources.dll new file mode 100644 index 0000000..384d466 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/ReachFramework.resources.dll new file mode 100644 index 0000000..0ce4d5b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..e74aae2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..1bd5a4f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..92b8cd6 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..572bb55 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..938547e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/System.Xaml.resources.dll new file mode 100644 index 0000000..aac7fe1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll new file mode 100644 index 0000000..db2ed8f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..dd31443 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..13153eb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..8794ee5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/WindowsBase.resources.dll new file mode 100644 index 0000000..cb99882 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..17c1738 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/tr/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/ucrtbase.dll b/bin/Debug/net6.0-windows/win-x64/ucrtbase.dll new file mode 100644 index 0000000..0b41078 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/ucrtbase.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/vcruntime140_cor3.dll b/bin/Debug/net6.0-windows/win-x64/vcruntime140_cor3.dll new file mode 100644 index 0000000..524092d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/vcruntime140_cor3.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/wpfgfx_cor3.dll b/bin/Debug/net6.0-windows/win-x64/wpfgfx_cor3.dll new file mode 100644 index 0000000..78c606d Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/wpfgfx_cor3.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..79b1234 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll new file mode 100644 index 0000000..85a6860 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll new file mode 100644 index 0000000..22394c2 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll new file mode 100644 index 0000000..ce1a336 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll new file mode 100644 index 0000000..42d7513 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..aa86c01 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..c855191 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..016d204 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..dd7be13 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..afd5861 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll new file mode 100644 index 0000000..f825d7b Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll new file mode 100644 index 0000000..a9b68e5 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..12c9d70 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..0ffdcf3 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..1fa8dff Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll new file mode 100644 index 0000000..b2e0306 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..2d38c80 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hans/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll new file mode 100644 index 0000000..19cdad0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/Microsoft.VisualBasic.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll new file mode 100644 index 0000000..e74130f Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationCore.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll new file mode 100644 index 0000000..f4bac14 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll new file mode 100644 index 0000000..2b110d1 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/PresentationUI.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll new file mode 100644 index 0000000..861fc74 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/ReachFramework.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll new file mode 100644 index 0000000..316a45c Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Controls.Ribbon.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll new file mode 100644 index 0000000..50bc8f0 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Design.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll new file mode 100644 index 0000000..27b6459 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.Primitives.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll new file mode 100644 index 0000000..c083cb9 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Forms.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll new file mode 100644 index 0000000..e07d138 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Windows.Input.Manipulations.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll new file mode 100644 index 0000000..ffd7532 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/System.Xaml.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll new file mode 100644 index 0000000..8ae2748 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationClient.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll new file mode 100644 index 0000000..3eebf5e Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationClientSideProviders.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll new file mode 100644 index 0000000..98e8c98 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationProvider.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll new file mode 100644 index 0000000..d1fc4bb Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/UIAutomationTypes.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll new file mode 100644 index 0000000..a424865 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/WindowsBase.resources.dll differ diff --git a/bin/Debug/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll b/bin/Debug/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll new file mode 100644 index 0000000..b511862 Binary files /dev/null and b/bin/Debug/net6.0-windows/win-x64/zh-Hant/WindowsFormsIntegration.resources.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/DCIT.App.deps.json b/bin/Release/net6.0-windows/win-x64/DCIT.App.deps.json new file mode 100644 index 0000000..ecdaa33 --- /dev/null +++ b/bin/Release/net6.0-windows/win-x64/DCIT.App.deps.json @@ -0,0 +1,174 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "DCIT.App/1.0.0": { + "dependencies": { + "DCIT.Core": "1.0.0" + }, + "runtime": { + "DCIT.App.dll": {} + } + }, + "DocumentFormat.OpenXml/3.5.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "ExCSS/4.2.3": { + "runtime": { + "lib/net6.0/ExCSS.dll": { + "assemblyVersion": "4.2.3.0", + "fileVersion": "4.2.3.0" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.4": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.4.30916" + } + } + }, + "Svg/3.4.7": { + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.7.1" + } + } + }, + "System.Drawing.Common/5.0.3": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + } + }, + "System.IO.Packaging/8.0.1": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "DCIT.Core/1.0.0": { + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "runtime": { + "DCIT.Core.dll": {} + } + } + } + }, + "libraries": { + "DCIT.App/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==", + "path": "documentformat.openxml/3.5.1", + "hashPath": "documentformat.openxml.3.5.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==", + "path": "documentformat.openxml.framework/3.5.1", + "hashPath": "documentformat.openxml.framework.3.5.1.nupkg.sha512" + }, + "ExCSS/4.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "path": "excss/4.2.3", + "hashPath": "excss.4.2.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "path": "newtonsoft.json/13.0.4", + "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" + }, + "Svg/3.4.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Omez7ly5BGhg3OzdV+LHZ5sI0+JQ6hF7WVKUeyHw4jRvcEWNCPCf1MWMBaf+R0DRBSZHx5EUHwBTEF+2oYtsAw==", + "path": "svg/3.4.7", + "hashPath": "svg.3.4.7.nupkg.sha512" + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==", + "path": "system.drawing.common/5.0.3", + "hashPath": "system.drawing.common.5.0.3.nupkg.sha512" + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "path": "system.io.packaging/8.0.1", + "hashPath": "system.io.packaging.8.0.1.nupkg.sha512" + }, + "DCIT.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0-windows/win-x64/DCIT.App.dll b/bin/Release/net6.0-windows/win-x64/DCIT.App.dll new file mode 100644 index 0000000..d2b8ba0 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/DCIT.App.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/DCIT.App.exe b/bin/Release/net6.0-windows/win-x64/DCIT.App.exe new file mode 100644 index 0000000..961d767 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/DCIT.App.exe differ diff --git a/bin/Release/net6.0-windows/win-x64/DCIT.App.pdb b/bin/Release/net6.0-windows/win-x64/DCIT.App.pdb new file mode 100644 index 0000000..c96aaa5 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/DCIT.App.pdb differ diff --git a/bin/Release/net6.0-windows/win-x64/DCIT.App.runtimeconfig.json b/bin/Release/net6.0-windows/win-x64/DCIT.App.runtimeconfig.json new file mode 100644 index 0000000..54681bc --- /dev/null +++ b/bin/Release/net6.0-windows/win-x64/DCIT.App.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0-windows/win-x64/DCIT.Core.dll b/bin/Release/net6.0-windows/win-x64/DCIT.Core.dll new file mode 100644 index 0000000..6c659e5 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/DCIT.Core.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/DCIT.Core.pdb b/bin/Release/net6.0-windows/win-x64/DCIT.Core.pdb new file mode 100644 index 0000000..7c317a5 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/DCIT.Core.pdb differ diff --git a/bin/Release/net6.0-windows/win-x64/DocumentFormat.OpenXml.Framework.dll b/bin/Release/net6.0-windows/win-x64/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..c9b3bc7 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/DocumentFormat.OpenXml.Framework.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/DocumentFormat.OpenXml.dll b/bin/Release/net6.0-windows/win-x64/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..35d5251 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/DocumentFormat.OpenXml.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/ExCSS.dll b/bin/Release/net6.0-windows/win-x64/ExCSS.dll new file mode 100644 index 0000000..e83aa20 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/ExCSS.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/Newtonsoft.Json.dll b/bin/Release/net6.0-windows/win-x64/Newtonsoft.Json.dll new file mode 100644 index 0000000..5813d8c Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/Newtonsoft.Json.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/Svg.dll b/bin/Release/net6.0-windows/win-x64/Svg.dll new file mode 100644 index 0000000..ded82c5 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/Svg.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll b/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll new file mode 100644 index 0000000..6ef5541 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/System.IO.Packaging.dll differ diff --git a/bin/Release/net6.0-windows/win-x64/tools/DocTo/docto.exe b/bin/Release/net6.0-windows/win-x64/tools/DocTo/docto.exe new file mode 100644 index 0000000..c0f2dd2 Binary files /dev/null and b/bin/Release/net6.0-windows/win-x64/tools/DocTo/docto.exe differ diff --git a/bin/publish/tools/DocTo/docto.exe b/bin/publish/tools/DocTo/docto.exe new file mode 100644 index 0000000..c0f2dd2 Binary files /dev/null and b/bin/publish/tools/DocTo/docto.exe differ diff --git a/bin/publish/win-x64.zip b/bin/publish/win-x64.zip new file mode 100644 index 0000000..d6cc328 Binary files /dev/null and b/bin/publish/win-x64.zip differ diff --git a/bin/publish/win-x64/DCIT.App.exe b/bin/publish/win-x64/DCIT.App.exe new file mode 100644 index 0000000..2e431a4 Binary files /dev/null and b/bin/publish/win-x64/DCIT.App.exe differ diff --git a/bin/publish/win-x64/DCIT.Core.pdb b/bin/publish/win-x64/DCIT.Core.pdb new file mode 100644 index 0000000..21c4915 Binary files /dev/null and b/bin/publish/win-x64/DCIT.Core.pdb differ diff --git a/bin/publish/win-x64/config.json b/bin/publish/win-x64/config.json new file mode 100644 index 0000000..dde544e --- /dev/null +++ b/bin/publish/win-x64/config.json @@ -0,0 +1,40 @@ +{ + "Format": "dcit.config", + "Version": "1.0", + "SavedAt": "2026-07-10T13:03:23.63937+08:00", + "Settings": { + "JsonDiffEncryption": true, + "EnableImageReplacement": true, + "UseFixedImageSeed": false, + "FixedImageSeed": 20260424, + "AutoExtract": { + "ExtractKeywords": true, + "ExtractHighFrequencyWords": true, + "ExtractHighFrequencySentences": true, + "UseKeywordFrequency": true, + "UseKeywordTfIdf": true, + "UseKeywordTextRank": true, + "MaxKeywordCount": 10, + "MaxWordCount": 10, + "MaxSentenceCount": 10, + "CountChineseWords": true, + "CountEnglishWords": true, + "CountChineseSentences": true, + "CountEnglishSentences": true, + "MinChineseWordLength": 1, + "MinEnglishWordLength": 1, + "SentenceDelimiters": "。!?;.!?;\r\n", + "ExcludeEmailAddresses": false + } + }, + "ReplacePage": { + "SourceDirectory": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\tests\\docx\\org", + "OutputDirectory": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\tests\\docx\\rep", + "RuleFilePath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\tests\\docx\\rules\\test1.rule" + }, + "RestorePage": { + "ReplaceDirectory": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\tests\\docx\\rep", + "RestoreDirectory": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\tests\\docx\\rcv", + "DiffInputFormat": ".diff" + } +} \ No newline at end of file diff --git a/bin/publish/win-x64/session-20260707.log b/bin/publish/win-x64/session-20260707.log new file mode 100644 index 0000000..c34c2f8 --- /dev/null +++ b/bin/publish/win-x64/session-20260707.log @@ -0,0 +1,5 @@ +2026-07-07 16:18:49.382 INFO ENV_STARTUP 启动目录可写: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\ +2026-07-07 16:18:49.383 INFO ENV_AUTOMATION 检测到可自动化组件: Word.Application +2026-07-07 16:18:49.384 INFO ENV_DOCTO 检测到 docto.exe: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\tools\DocTo\docto.exe +2026-07-07 16:18:49.890 INFO APP_START 程序启动。 +2026-07-07 16:18:49.938 INFO CONFIG_DEFAULT config.json 不存在,当前使用默认配置。 diff --git a/bin/publish/win-x64/session-20260709.log b/bin/publish/win-x64/session-20260709.log new file mode 100644 index 0000000..34d71ae --- /dev/null +++ b/bin/publish/win-x64/session-20260709.log @@ -0,0 +1,88 @@ +2026-07-09 11:02:22.876 INFO ENV_STARTUP 启动目录可写: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\ +2026-07-09 11:02:22.878 INFO ENV_AUTOMATION 检测到可自动化组件: Word.Application +2026-07-09 11:02:22.878 INFO ENV_DOCTO 检测到 docto.exe: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\tools\DocTo\docto.exe +2026-07-09 11:02:23.490 INFO APP_START 程序启动。 +2026-07-09 11:02:34.769 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): 恢复文件夹(生效): 差异文件格式: .diff +2026-07-09 11:02:35.356 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending +2026-07-09 11:22:10.180 INFO ENV_STARTUP 启动目录可写: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\ +2026-07-09 11:22:10.183 INFO ENV_AUTOMATION 检测到可自动化组件: Word.Application +2026-07-09 11:22:10.184 INFO ENV_DOCTO 检测到 docto.exe: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\tools\DocTo\docto.exe +2026-07-09 11:22:14.015 INFO APP_START 程序启动。 +2026-07-09 11:22:14.209 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): 恢复文件夹(生效): 差异文件格式: .diff +2026-07-09 11:22:14.748 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending +2026-07-09 11:22:26.889 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): 恢复文件夹(生效): 差异文件格式: .diff +2026-07-09 11:22:27.313 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending +2026-07-09 11:23:04.430 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): 替换文件夹(生效): +2026-07-09 11:23:04.455 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: 差异文件: 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: 差异文件: 勾选: 是 状态: Pending +2026-07-09 11:23:06.930 INFO EXTRACT_START 开始自动提取,勾选文件数=2。 +2026-07-09 11:23:19.371 INFO EXTRACT_DONE 自动提取完成。提取=23,追加=2,跳过=21。 +2026-07-09 11:23:23.554 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): 替换文件夹(生效): +2026-07-09 11:23:23.573 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: 差异文件: 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: 差异文件: 勾选: 是 状态: Pending +2026-07-09 11:23:33.778 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-09 11:23:33.793 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:23:37.509 INFO REPLACE_BATCH_PLAN 替换批处理开始。勾选=2,执行=2,预跳过=0,并发度=2。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 规则文件: 差异 JSON 加密: 是 图片替换: 启用 固定图片种子: 否 规则总数: 2 勾选文件数: 2 实际执行数: 2 预跳过数: 0 并发度: 2 执行项目: [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:23:37.608 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-09 11:23:37.687 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-09 11:23:37.700 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff +2026-07-09 11:23:37.722 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff +2026-07-09 11:23:41.985 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 目标输出存在: 是 目标输出大小(bytes): 8784328 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:23:40.983 目标输出最后写入时间(UTC): 2026-07-09 03:23:40.983 目标输出SHA256: +vals6d/3cd385X2tSeTYlZYSePpK1q8rfNTSbtioYo= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21008817 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:23:41.669 差异文件最后写入时间(UTC): 2026-07-09 03:23:41.669 差异文件SHA256: +C3fbZf63hHeF+q2PXB7y6lCWuxXg3XoG73GFcsJNwE= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15758390 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:23:41.507 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:23:41.507 BMP 差异文件SHA256: 4fSHukxoG8S5+NCh9FORlhqGfOsoNRXTVdwKI41G3S4= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:23:42.188 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 目标输出存在: 是 目标输出大小(bytes): 8780626 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:23:41.251 目标输出最后写入时间(UTC): 2026-07-09 03:23:41.251 目标输出SHA256: C/s8un4BXq7Lmz1HazdWX/jGu6zFq5M5V6XvhUWoco8= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21010497 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:23:41.876 差异文件最后写入时间(UTC): 2026-07-09 03:23:41.876 差异文件SHA256: RHERNvanSuunBRpnvZaVF8vHWqEKkiN4GhGhWTRZ6cU= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15759414 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:23:41.736 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:23:41.736 BMP 差异文件SHA256: riNrVnwzkW1BIhGKVHLDwNZF8n7V6Qa19JJJib0tpJQ= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:23:42.218 INFO REPLACE_DONE 替换完成。成功 2,失败 0,停止 0,累计命中 552。 +2026-07-09 11:23:43.934 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): 恢复文件夹(生效): 差异文件格式: .diff +2026-07-09 11:23:44.767 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 4 项。 候选数量: 4 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8780626 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:41.251 源文件最后写入时间(UTC): 2026-07-09 03:23:41.251 源文件SHA256: C/s8un4BXq7Lmz1HazdWX/jGu6zFq5M5V6XvhUWoco8= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [3] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending [4] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784328 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:40.983 源文件最后写入时间(UTC): 2026-07-09 03:23:40.983 源文件SHA256: +vals6d/3cd385X2tSeTYlZYSePpK1q8rfNTSbtioYo= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:23:47.342 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): 恢复文件夹(生效): 差异文件格式: .diff +2026-07-09 11:23:48.247 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 4 项。 候选数量: 4 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8780626 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:41.251 源文件最后写入时间(UTC): 2026-07-09 03:23:41.251 源文件SHA256: C/s8un4BXq7Lmz1HazdWX/jGu6zFq5M5V6XvhUWoco8= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [3] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending [4] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784328 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:40.983 源文件最后写入时间(UTC): 2026-07-09 03:23:40.983 源文件SHA256: +vals6d/3cd385X2tSeTYlZYSePpK1q8rfNTSbtioYo= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:24:17.173 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): 恢复文件夹(生效): 差异文件格式: .diff +2026-07-09 11:24:17.988 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 4 项。 候选数量: 4 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8780626 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:41.251 源文件最后写入时间(UTC): 2026-07-09 03:23:41.251 源文件SHA256: C/s8un4BXq7Lmz1HazdWX/jGu6zFq5M5V6XvhUWoco8= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [3] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending [4] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784328 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:40.983 源文件最后写入时间(UTC): 2026-07-09 03:23:40.983 源文件SHA256: +vals6d/3cd385X2tSeTYlZYSePpK1q8rfNTSbtioYo= 目标输出: 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:24:35.389 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-09 11:24:36.304 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 4 项。 候选数量: 4 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8780626 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:41.251 源文件最后写入时间(UTC): 2026-07-09 03:23:41.251 源文件SHA256: C/s8un4BXq7Lmz1HazdWX/jGu6zFq5M5V6XvhUWoco8= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [3] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending [4] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784328 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:23:40.983 源文件最后写入时间(UTC): 2026-07-09 03:23:40.983 源文件SHA256: +vals6d/3cd385X2tSeTYlZYSePpK1q8rfNTSbtioYo= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:24:37.371 WARNING RESTORE_BATCH_SKIP 输出目标与批次中已有任务冲突,已跳过。 源文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 冲突路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx +2026-07-09 11:24:37.457 WARNING RESTORE_BATCH_SKIP 输出目标与批次中已有任务冲突,已跳过。 源文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 冲突路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx +2026-07-09 11:24:37.567 INFO RESTORE_BATCH_PLAN 恢复批处理开始。勾选=4,执行=2,预跳过=2,并发度=2。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff 规则文件: 勾选文件数: 4 实际执行数: 2 预跳过数: 2 并发度: 2 预跳过项目: - E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 原因: 输出目标与批次中已有任务冲突,已跳过。 冲突路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx - E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 原因: 输出目标与批次中已有任务冲突,已跳过。 冲突路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 执行项目: [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 勾选: 是 状态: Pending +2026-07-09 11:24:37.728 INFO RESTORE_FILE_START 开始处理恢复文件。 操作: 恢复 序号: 1/4 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff +2026-07-09 11:24:37.810 INFO RESTORE_FILE_START 开始处理恢复文件。 操作: 恢复 序号: 2/4 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff +2026-07-09 11:24:38.585 ERROR RESTORE_FILE_FAIL 恢复文件处理失败。 操作: 恢复 序号: 1/4 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.docx 源文件存在: 是 源文件大小(bytes): 8830764 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:15.136 源文件最后写入时间(UTC): 2026-07-03 08:38:15.136 源文件SHA256: RcliWmFJgzGsX6eQL2TqJFXOXSfl1ckrmbjvuevVq9E= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 目标输出存在: 否 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\TEST2-20260703.diff 差异文件存在: 是 差异文件大小(bytes): 20824299 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-03 16:38:17.916 差异文件最后写入时间(UTC): 2026-07-03 08:38:17.916 差异文件SHA256: 7z9s+quHH3l8+7YAhfEB0wID+BNBYdKt1LbfjELVpx4= BMP 差异文件路径: 异常类型: System.IO.InvalidDataException 异常消息: 恢复时必须提供与差异文件匹配的规则文件。 异常堆栈: System.IO.InvalidDataException: 恢复时必须提供与差异文件匹配的规则文件。 at DCIT.Core.Services.DocumentProcessingService.ValidateRestoreCompatibility(RestoreFileRequest request, DiffDocument diff) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 277 at DCIT.Core.Services.DocumentProcessingService.Restore(RestoreFileRequest request, IProgress`1 progress, CancellationToken cancellationToken) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 202 at DCIT.App.Forms.MainForm.<>c__DisplayClass152_2.b__8() at System.Threading.Tasks.Task`1.InnerInvoke() at System.Threading.Tasks.Task.<>c.<.cctor>b__272_0(Object obj) at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state) --- End of stack trace from previous location --- at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread) --- End of stack trace from previous location --- at DCIT.App.Forms.MainForm.<>c__DisplayClass152_0.<g__RunWorkerAsync|3>d.MoveNext() +2026-07-09 11:24:38.628 ERROR RESTORE_FILE_FAIL 恢复文件处理失败。 操作: 恢复 序号: 2/4 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.docx 源文件存在: 是 源文件大小(bytes): 8832410 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-03 16:38:14.854 源文件最后写入时间(UTC): 2026-07-03 08:38:14.854 源文件SHA256: ZGbw9ARruBSA9nE0Xm/iO6sMkI3JUuB87TTGNv8sOy0= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 目标输出存在: 否 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星TEST1-20260703.diff 差异文件存在: 是 差异文件大小(bytes): 20829209 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-03 16:38:17.887 差异文件最后写入时间(UTC): 2026-07-03 08:38:17.887 差异文件SHA256: wghYaLIrOao0ZXxihkNwiz9Fstz3AaKd5PlOuQFQK/A= BMP 差异文件路径: 异常类型: System.IO.InvalidDataException 异常消息: 恢复时必须提供与差异文件匹配的规则文件。 异常堆栈: System.IO.InvalidDataException: 恢复时必须提供与差异文件匹配的规则文件。 at DCIT.Core.Services.DocumentProcessingService.ValidateRestoreCompatibility(RestoreFileRequest request, DiffDocument diff) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 277 at DCIT.Core.Services.DocumentProcessingService.Restore(RestoreFileRequest request, IProgress`1 progress, CancellationToken cancellationToken) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 202 at DCIT.App.Forms.MainForm.<>c__DisplayClass152_2.b__8() at System.Threading.Tasks.Task`1.InnerInvoke() at System.Threading.Tasks.Task.<>c.<.cctor>b__272_0(Object obj) at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state) --- End of stack trace from previous location --- at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread) --- End of stack trace from previous location --- at DCIT.App.Forms.MainForm.<>c__DisplayClass152_0.<g__RunWorkerAsync|3>d.MoveNext() +2026-07-09 11:24:38.661 INFO RESTORE_DONE 恢复完成。成功 0,失败 4,停止 0,累计命中 0。 +2026-07-09 11:25:56.812 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-09 11:25:56.840 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:26:00.023 INFO REPLACE_BATCH_PLAN 替换批处理开始。勾选=2,执行=2,预跳过=0,并发度=2。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 规则文件: 差异 JSON 加密: 是 图片替换: 启用 固定图片种子: 否 规则总数: 2 勾选文件数: 2 实际执行数: 2 预跳过数: 0 并发度: 2 执行项目: [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:26:00.115 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-09 11:26:00.200 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-09 11:26:00.214 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff +2026-07-09 11:26:00.230 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff +2026-07-09 11:26:03.979 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 目标输出存在: 是 目标输出大小(bytes): 8784631 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:26:03.017 目标输出最后写入时间(UTC): 2026-07-09 03:26:03.017 目标输出SHA256: OyJPxptPHAC3GHOyUYPRyBb1WPgEbplfbJdjyM80GhQ= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21011441 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:26:03.678 差异文件最后写入时间(UTC): 2026-07-09 03:26:03.678 差异文件SHA256: 7gIr1NPgous762qKf0EEU8Akbz/q0Qv3FST+WhrxuFI= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15760438 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:26:03.522 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:26:03.522 BMP 差异文件SHA256: gziFSqV05uIEEAJ4YoDiQIDvyEUC17UNynz3Rg/RQDg= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:26:04.073 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 目标输出存在: 是 目标输出大小(bytes): 8785482 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:26:03.186 目标输出最后写入时间(UTC): 2026-07-09 03:26:03.186 目标输出SHA256: GgY+oFdoUh5zndDAzwMKeMa7m5xHIXisXjEaYMh+XFw= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21019201 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:26:03.790 差异文件最后写入时间(UTC): 2026-07-09 03:26:03.790 差异文件SHA256: isr5AY4hiHO2h1C6xLliMoRYaeS8/WL7u+mGWU+CNMM= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15766582 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:26:03.644 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:26:03.644 BMP 差异文件SHA256: YMJiJaKJN/IEIIzhheaDCnSAmvoO+jN8XNznGhKPId0= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:26:04.107 INFO REPLACE_DONE 替换完成。成功 2,失败 0,停止 0,累计命中 552。 +2026-07-09 11:26:06.860 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-09 11:26:07.293 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8785482 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.186 源文件最后写入时间(UTC): 2026-07-09 03:26:03.186 源文件SHA256: GgY+oFdoUh5zndDAzwMKeMa7m5xHIXisXjEaYMh+XFw= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784631 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.017 源文件最后写入时间(UTC): 2026-07-09 03:26:03.017 源文件SHA256: OyJPxptPHAC3GHOyUYPRyBb1WPgEbplfbJdjyM80GhQ= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:26:08.301 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-09 11:26:08.727 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8785482 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.186 源文件最后写入时间(UTC): 2026-07-09 03:26:03.186 源文件SHA256: GgY+oFdoUh5zndDAzwMKeMa7m5xHIXisXjEaYMh+XFw= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784631 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.017 源文件最后写入时间(UTC): 2026-07-09 03:26:03.017 源文件SHA256: OyJPxptPHAC3GHOyUYPRyBb1WPgEbplfbJdjyM80GhQ= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:26:16.358 INFO RESTORE_BATCH_PLAN 恢复批处理开始。勾选=2,执行=2,预跳过=0,并发度=2。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff 规则文件: 勾选文件数: 2 实际执行数: 2 预跳过数: 0 并发度: 2 执行项目: [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8785482 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.186 源文件最后写入时间(UTC): 2026-07-09 03:26:03.186 源文件SHA256: GgY+oFdoUh5zndDAzwMKeMa7m5xHIXisXjEaYMh+XFw= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784631 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.017 源文件最后写入时间(UTC): 2026-07-09 03:26:03.017 源文件SHA256: OyJPxptPHAC3GHOyUYPRyBb1WPgEbplfbJdjyM80GhQ= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:26:16.483 INFO RESTORE_FILE_START 开始处理恢复文件。 操作: 恢复 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8785482 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.186 源文件最后写入时间(UTC): 2026-07-09 03:26:03.186 源文件SHA256: GgY+oFdoUh5zndDAzwMKeMa7m5xHIXisXjEaYMh+XFw= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff +2026-07-09 11:26:16.542 INFO RESTORE_FILE_START 开始处理恢复文件。 操作: 恢复 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784631 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.017 源文件最后写入时间(UTC): 2026-07-09 03:26:03.017 源文件SHA256: OyJPxptPHAC3GHOyUYPRyBb1WPgEbplfbJdjyM80GhQ= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff +2026-07-09 11:26:17.268 ERROR RESTORE_FILE_FAIL 恢复文件处理失败。 操作: 恢复 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8785482 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.186 源文件最后写入时间(UTC): 2026-07-09 03:26:03.186 源文件SHA256: GgY+oFdoUh5zndDAzwMKeMa7m5xHIXisXjEaYMh+XFw= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 目标输出存在: 否 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21019201 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:26:03.790 差异文件最后写入时间(UTC): 2026-07-09 03:26:03.790 差异文件SHA256: isr5AY4hiHO2h1C6xLliMoRYaeS8/WL7u+mGWU+CNMM= BMP 差异文件路径: 异常类型: System.IO.InvalidDataException 异常消息: 恢复时必须提供与差异文件匹配的规则文件。 异常堆栈: System.IO.InvalidDataException: 恢复时必须提供与差异文件匹配的规则文件。 at DCIT.Core.Services.DocumentProcessingService.ValidateRestoreCompatibility(RestoreFileRequest request, DiffDocument diff) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 277 at DCIT.Core.Services.DocumentProcessingService.Restore(RestoreFileRequest request, IProgress`1 progress, CancellationToken cancellationToken) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 202 at DCIT.App.Forms.MainForm.<>c__DisplayClass152_2.b__8() at System.Threading.Tasks.Task`1.InnerInvoke() at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state) --- End of stack trace from previous location --- at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread) --- End of stack trace from previous location --- at DCIT.App.Forms.MainForm.<>c__DisplayClass152_0.<g__RunWorkerAsync|3>d.MoveNext() +2026-07-09 11:26:17.315 ERROR RESTORE_FILE_FAIL 恢复文件处理失败。 操作: 恢复 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8784631 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:26:03.017 源文件最后写入时间(UTC): 2026-07-09 03:26:03.017 源文件SHA256: OyJPxptPHAC3GHOyUYPRyBb1WPgEbplfbJdjyM80GhQ= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 目标输出存在: 否 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21011441 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:26:03.678 差异文件最后写入时间(UTC): 2026-07-09 03:26:03.678 差异文件SHA256: 7gIr1NPgous762qKf0EEU8Akbz/q0Qv3FST+WhrxuFI= BMP 差异文件路径: 异常类型: System.IO.InvalidDataException 异常消息: 恢复时必须提供与差异文件匹配的规则文件。 异常堆栈: System.IO.InvalidDataException: 恢复时必须提供与差异文件匹配的规则文件。 at DCIT.Core.Services.DocumentProcessingService.ValidateRestoreCompatibility(RestoreFileRequest request, DiffDocument diff) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 277 at DCIT.Core.Services.DocumentProcessingService.Restore(RestoreFileRequest request, IProgress`1 progress, CancellationToken cancellationToken) in E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.Core\Services\DocumentProcessingService.cs:line 202 at DCIT.App.Forms.MainForm.<>c__DisplayClass152_2.b__8() at System.Threading.Tasks.Task`1.InnerInvoke() at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state) --- End of stack trace from previous location --- at System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot, Thread threadPoolThread) --- End of stack trace from previous location --- at DCIT.App.Forms.MainForm.<>c__DisplayClass152_0.<g__RunWorkerAsync|3>d.MoveNext() +2026-07-09 11:26:17.343 INFO RESTORE_DONE 恢复完成。成功 0,失败 2,停止 0,累计命中 0。 +2026-07-09 11:26:49.269 INFO RULE_SAVE 规则文件已保存。 E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rules\test1.rule +2026-07-09 11:26:52.348 INFO RULE_SAVE 规则文件已保存。 E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rules\test1.rule +2026-07-09 11:26:53.995 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-09 11:26:54.023 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:27:06.020 INFO REPLACE_BATCH_PLAN 替换批处理开始。勾选=2,执行=2,预跳过=0,并发度=2。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 规则文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rules\test1.rule 差异 JSON 加密: 是 图片替换: 启用 固定图片种子: 否 规则总数: 2 勾选文件数: 2 实际执行数: 2 预跳过数: 0 并发度: 2 执行项目: [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:27:06.109 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-09 11:27:06.193 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-09 11:27:06.207 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff +2026-07-09 11:27:06.224 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff +2026-07-09 11:27:09.914 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 目标输出存在: 是 目标输出大小(bytes): 8789318 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:27:08.975 目标输出最后写入时间(UTC): 2026-07-09 03:27:08.975 目标输出SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21023511 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:27:09.613 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.613 差异文件SHA256: tXTHG5t8Y2rQ7LhryYOu7Ux21nju8YJ/yKizeuNADQo= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15769654 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:27:09.454 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.454 BMP 差异文件SHA256: MpfXNht+wZQPYiIhjpJQwxJAUOCDey4cZgjVnjWHSRY= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:27:10.142 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 目标输出存在: 是 目标输出大小(bytes): 8774566 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:27:09.161 目标输出最后写入时间(UTC): 2026-07-09 03:27:09.161 目标输出SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21001707 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:27:09.781 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.781 差异文件SHA256: Mjmqgj3ccS0k3DuWAowow4ZK6Kbh/F8f/rZ/2mHbFFk= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15753270 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:27:09.624 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.624 BMP 差异文件SHA256: OZnNuEMmx3WFAIUVxSmUo0hmEJteX5k7o+SDrjly6+8= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:27:10.175 INFO REPLACE_DONE 替换完成。成功 2,失败 0,停止 0,累计命中 552。 +2026-07-09 11:27:13.635 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-09 11:27:14.031 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:27:14.535 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-09 11:27:14.910 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:27:15.783 INFO RESTORE_BATCH_PLAN 恢复批处理开始。勾选=2,执行=2,预跳过=0,并发度=2。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff 规则文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rules\test1.rule 勾选文件数: 2 实际执行数: 2 预跳过数: 0 并发度: 2 执行项目: [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-09 11:27:15.906 INFO RESTORE_FILE_START 开始处理恢复文件。 操作: 恢复 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff +2026-07-09 11:27:15.967 INFO RESTORE_FILE_START 开始处理恢复文件。 操作: 恢复 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff +2026-07-09 11:27:19.349 INFO RESTORE_FILE_DONE 文件恢复完成。文本 180 次,图片 96 次。 操作: 恢复 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 目标输出存在: 是 目标输出大小(bytes): 742497 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:27:18.827 目标输出最后写入时间(UTC): 2026-07-09 03:27:18.827 目标输出SHA256: pSuu7daERmfyHfRwUYkgXWG9vdYMHHxQFsGHnSUX4/M= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21001707 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:27:09.781 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.781 差异文件SHA256: Mjmqgj3ccS0k3DuWAowow4ZK6Kbh/F8f/rZ/2mHbFFk= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15753270 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:27:09.624 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.624 BMP 差异文件SHA256: OZnNuEMmx3WFAIUVxSmUo0hmEJteX5k7o+SDrjly6+8= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:27:19.725 INFO RESTORE_FILE_DONE 文件恢复完成。文本 180 次,图片 96 次。 操作: 恢复 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 目标输出存在: 是 目标输出大小(bytes): 807005 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-09 11:27:19.224 目标输出最后写入时间(UTC): 2026-07-09 03:27:19.224 目标输出SHA256: a3uOcfVYU3ZE3bhUKgqX9mGP8fLv9Y4n528rYyOYpZ0= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 差异文件存在: 是 差异文件大小(bytes): 21023511 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-09 11:27:09.613 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.613 差异文件SHA256: tXTHG5t8Y2rQ7LhryYOu7Ux21nju8YJ/yKizeuNADQo= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15769654 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-09 11:27:09.454 BMP 差异文件最后写入时间(UTC): 2026-07-09 03:27:09.454 BMP 差异文件SHA256: MpfXNht+wZQPYiIhjpJQwxJAUOCDey4cZgjVnjWHSRY= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-09 11:27:19.758 INFO RESTORE_DONE 恢复完成。成功 2,失败 0,停止 0,累计命中 552。 diff --git a/bin/publish/win-x64/session-20260710.log b/bin/publish/win-x64/session-20260710.log new file mode 100644 index 0000000..11b789c --- /dev/null +++ b/bin/publish/win-x64/session-20260710.log @@ -0,0 +1,47 @@ +2026-07-10 11:17:17.036 INFO ENV_STARTUP 启动目录可写: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\ +2026-07-10 11:17:17.038 INFO ENV_AUTOMATION 检测到可自动化组件: Word.Application +2026-07-10 11:17:17.038 INFO ENV_DOCTO 检测到 docto.exe: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\tools\DocTo\docto.exe +2026-07-10 11:17:17.678 INFO RULE_LOAD 规则文件已加载。 E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rules\test1.rule +2026-07-10 11:17:17.833 INFO APP_START 程序启动。 +2026-07-10 11:17:17.872 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-10 11:17:17.976 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:17:18.039 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:17:18.577 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-10 11:17:19.912 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:17:20.384 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-10 11:17:25.550 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:17:25.977 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-10 11:17:29.440 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-10 11:17:29.458 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:17:35.043 ERROR SCAN_BLOCK 原始文件夹 与 替换文件夹 不能相同,也不能互为父子目录。 +2026-07-10 11:17:35.052 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): +2026-07-10 11:17:35.155 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: 差异文件: 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: 差异文件: 勾选: 是 状态: Pending +2026-07-10 11:17:40.882 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-10 11:17:40.899 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 源文件存在: 是 源文件大小(bytes): 742497 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:18.827 源文件最后写入时间(UTC): 2026-07-09 03:27:18.827 源文件SHA256: pSuu7daERmfyHfRwUYkgXWG9vdYMHHxQFsGHnSUX4/M= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 807005 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:19.224 源文件最后写入时间(UTC): 2026-07-09 03:27:19.224 源文件SHA256: a3uOcfVYU3ZE3bhUKgqX9mGP8fLv9Y4n528rYyOYpZ0= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:18:06.451 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:18:06.903 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-10 11:18:11.062 ERROR RESTORE_SCAN_BLOCK 替换文件夹 与 恢复文件夹 不能相同,也不能互为父子目录。 +2026-07-10 11:18:11.064 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): 差异文件格式: .diff +2026-07-10 11:18:11.073 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 0 项。 候选数量: 0 差异文件格式: .diff 候选项: +2026-07-10 11:18:15.948 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:18:16.381 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.docx 源文件存在: 是 源文件大小(bytes): 8774566 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:09.161 源文件最后写入时间(UTC): 2026-07-09 03:27:09.161 源文件SHA256: 1pXeDHrqw9vIcywQCqDpwtlVFMFxZ3eWraKPPn4XnvM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260709.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.docx 源文件存在: 是 源文件大小(bytes): 8789318 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-09 11:27:08.975 源文件最后写入时间(UTC): 2026-07-09 03:27:08.975 源文件SHA256: 06PE0zMStoGVoqdgMsWoc7OerIgnbcaGMEdDixTpXNE= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260709.diff 勾选: 是 状态: Pending +2026-07-10 11:19:02.702 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-10 11:19:02.729 INFO SCAN_DONE 替换候选文件扫描完成,共 0 项。 候选数量: 0 候选项: +2026-07-10 11:19:06.863 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-10 11:19:06.882 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:19:09.775 INFO SCAN_START 开始扫描替换候选文件。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 替换文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep +2026-07-10 11:19:09.792 INFO SCAN_DONE 替换候选文件扫描完成,共 2 项。 候选数量: 2 [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:19:13.000 INFO REPLACE_BATCH_PLAN 替换批处理开始。勾选=2,执行=2,预跳过=0,并发度=2。 原始文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 规则文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rules\test1.rule 差异 JSON 加密: 是 图片替换: 启用 固定图片种子: 否 规则总数: 2 勾选文件数: 2 实际执行数: 2 预跳过数: 0 并发度: 2 执行项目: [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:19:13.110 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-10 11:19:13.214 INFO DEBUG_RULES 执行规则列表。 总规则数=2; 规则详情=[Id=AK0001, Name=AUTO-KW-0001, Enabled=True, Target=DocumentContent, SearchText='显示', ReplacementText=''; Id=AK0002, Name=AUTO-KW-0002, Enabled=True, Target=DocumentContent, SearchText='数据', ReplacementText=''] +2026-07-10 11:19:13.228 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff +2026-07-10 11:19:13.247 INFO REPLACE_FILE_START 开始处理替换文件。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff +2026-07-10 11:19:17.971 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 2/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\湃星test1.docx 源文件存在: 是 源文件大小(bytes): 831879 源文件属性: ReadOnly, Archive 源文件只读: 是 源文件最后写入时间: 2016-07-07 16:58:36.000 源文件最后写入时间(UTC): 2016-07-07 08:58:36.000 源文件SHA256: jjvtdnEhfZTuYBvbO+8QAfPsH6dEkzEPVfpw3MWkPek= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 目标输出存在: 是 目标输出大小(bytes): 8784728 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-10 11:19:16.734 目标输出最后写入时间(UTC): 2026-07-10 03:19:16.734 目标输出SHA256: Q5BiykcW6IhkjK0A6KJVVloASBc5ayqZrmxmSOtmqrY= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 差异文件存在: 是 差异文件大小(bytes): 21016559 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-10 11:19:17.526 差异文件最后写入时间(UTC): 2026-07-10 03:19:17.526 差异文件SHA256: 7PGL3pbRFbRNJxQp4gmriwEaR64whxQvUEl32hDFU5Y= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15764534 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-10 11:19:17.377 BMP 差异文件最后写入时间(UTC): 2026-07-10 03:19:17.377 BMP 差异文件SHA256: u8fR1yXmaydEXRkL9yNS4RSWyiTWOfxU/MNUsj+RHfE= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-10 11:19:18.121 INFO REPLACE_FILE_DONE 文件替换完成。文本 180 次,图片 96 次。 操作: 替换 序号: 1/2 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\org\test2.docx 源文件存在: 是 源文件大小(bytes): 847438 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-02 16:34:12.460 源文件最后写入时间(UTC): 2026-07-02 08:34:12.460 源文件SHA256: FpjiDNpjhRbrqa/E0MDnoXN8aIdQxBIKx2elxdxSxNM= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 目标输出路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 目标输出存在: 是 目标输出大小(bytes): 8777131 目标输出属性: Archive 目标输出只读: 否 目标输出最后写入时间: 2026-07-10 11:19:17.001 目标输出最后写入时间(UTC): 2026-07-10 03:19:17.001 目标输出SHA256: sEB6fC6sHDokiFysv1xFkcBMJxAuU2lNnajT47i4Oi8= 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 差异文件存在: 是 差异文件大小(bytes): 21003007 差异文件属性: Archive 差异文件只读: 否 差异文件最后写入时间: 2026-07-10 11:19:17.757 差异文件最后写入时间(UTC): 2026-07-10 03:19:17.757 差异文件SHA256: U/lEhbPoPGddHxX92FoHKCnH3rC5iPWk8OWq10HClyY= BMP 差异文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.bmp BMP 差异文件存在: 是 BMP 差异文件大小(bytes): 15754294 BMP 差异文件属性: Archive BMP 差异文件只读: 否 BMP 差异文件最后写入时间: 2026-07-10 11:19:17.591 BMP 差异文件最后写入时间(UTC): 2026-07-10 03:19:17.591 BMP 差异文件SHA256: i8Bz3eQTB0mZ3xfurlO6LwF4HVuvfMskFFJtyV1OKys= 文本命中/恢复数: 180 图片命中/恢复数: 96 +2026-07-10 11:19:18.151 INFO REPLACE_DONE 替换完成。成功 2,失败 0,停止 0,累计命中 552。 +2026-07-10 11:19:19.924 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:19:20.339 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 源文件存在: 是 源文件大小(bytes): 8777131 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-10 11:19:17.001 源文件最后写入时间(UTC): 2026-07-10 03:19:17.001 源文件SHA256: sEB6fC6sHDokiFysv1xFkcBMJxAuU2lNnajT47i4Oi8= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 源文件存在: 是 源文件大小(bytes): 8784728 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-10 11:19:16.734 源文件最后写入时间(UTC): 2026-07-10 03:19:16.734 源文件SHA256: Q5BiykcW6IhkjK0A6KJVVloASBc5ayqZrmxmSOtmqrY= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:19:20.839 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:19:21.246 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 源文件存在: 是 源文件大小(bytes): 8777131 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-10 11:19:17.001 源文件最后写入时间(UTC): 2026-07-10 03:19:17.001 源文件SHA256: sEB6fC6sHDokiFysv1xFkcBMJxAuU2lNnajT47i4Oi8= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 源文件存在: 是 源文件大小(bytes): 8784728 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-10 11:19:16.734 源文件最后写入时间(UTC): 2026-07-10 03:19:16.734 源文件SHA256: Q5BiykcW6IhkjK0A6KJVVloASBc5ayqZrmxmSOtmqrY= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending +2026-07-10 11:19:23.790 INFO RESTORE_SCAN_START 开始扫描恢复候选文件。 替换文件夹: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep 恢复文件夹(输入): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 恢复文件夹(生效): E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv 差异文件格式: .diff +2026-07-10 11:19:24.165 INFO RESTORE_SCAN_DONE 恢复候选文件扫描完成,共 2 项。 候选数量: 2 差异文件格式: .diff [1] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.docx 源文件存在: 是 源文件大小(bytes): 8777131 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-10 11:19:17.001 源文件最后写入时间(UTC): 2026-07-10 03:19:17.001 源文件SHA256: sEB6fC6sHDokiFysv1xFkcBMJxAuU2lNnajT47i4Oi8= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\test2.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\test2-20260710.diff 勾选: 是 状态: Pending [2] 源文件路径: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.docx 源文件存在: 是 源文件大小(bytes): 8784728 源文件属性: Archive 源文件只读: 否 源文件最后写入时间: 2026-07-10 11:19:16.734 源文件最后写入时间(UTC): 2026-07-10 03:19:16.734 源文件SHA256: Q5BiykcW6IhkjK0A6KJVVloASBc5ayqZrmxmSOtmqrY= 目标输出: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rcv\湃星test1.docx 差异文件: E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\tests\docx\rep\湃星test1-20260710.diff 勾选: 是 状态: Pending diff --git a/bin/publish/win-x64/tools/DocTo/docto.exe b/bin/publish/win-x64/tools/DocTo/docto.exe new file mode 100644 index 0000000..c0f2dd2 Binary files /dev/null and b/bin/publish/win-x64/tools/DocTo/docto.exe differ diff --git a/bin/x64/Release/net6.0-windows/DCIT.App.deps.json b/bin/x64/Release/net6.0-windows/DCIT.App.deps.json new file mode 100644 index 0000000..bd39f69 --- /dev/null +++ b/bin/x64/Release/net6.0-windows/DCIT.App.deps.json @@ -0,0 +1,173 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "DCIT.App/1.0.0": { + "dependencies": { + "DCIT.Core": "1.0.0" + }, + "runtime": { + "DCIT.App.dll": {} + } + }, + "DocumentFormat.OpenXml/3.5.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "ExCSS/4.2.3": { + "runtime": { + "lib/net6.0/ExCSS.dll": { + "assemblyVersion": "4.2.3.0", + "fileVersion": "4.2.3.0" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.4": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.4.30916" + } + } + }, + "Svg/3.4.7": { + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.7.1" + } + } + }, + "System.Drawing.Common/5.0.3": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + } + }, + "System.IO.Packaging/8.0.1": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "DCIT.Core/1.0.0": { + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "runtime": { + "DCIT.Core.dll": {} + } + } + } + }, + "libraries": { + "DCIT.App/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==", + "path": "documentformat.openxml/3.5.1", + "hashPath": "documentformat.openxml.3.5.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==", + "path": "documentformat.openxml.framework/3.5.1", + "hashPath": "documentformat.openxml.framework.3.5.1.nupkg.sha512" + }, + "ExCSS/4.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "path": "excss/4.2.3", + "hashPath": "excss.4.2.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "path": "newtonsoft.json/13.0.4", + "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" + }, + "Svg/3.4.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Omez7ly5BGhg3OzdV+LHZ5sI0+JQ6hF7WVKUeyHw4jRvcEWNCPCf1MWMBaf+R0DRBSZHx5EUHwBTEF+2oYtsAw==", + "path": "svg/3.4.7", + "hashPath": "svg.3.4.7.nupkg.sha512" + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==", + "path": "system.drawing.common/5.0.3", + "hashPath": "system.drawing.common.5.0.3.nupkg.sha512" + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "path": "system.io.packaging/8.0.1", + "hashPath": "system.io.packaging.8.0.1.nupkg.sha512" + }, + "DCIT.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/bin/x64/Release/net6.0-windows/DCIT.App.dll b/bin/x64/Release/net6.0-windows/DCIT.App.dll new file mode 100644 index 0000000..4d40bac Binary files /dev/null and b/bin/x64/Release/net6.0-windows/DCIT.App.dll differ diff --git a/bin/x64/Release/net6.0-windows/DCIT.App.exe b/bin/x64/Release/net6.0-windows/DCIT.App.exe new file mode 100644 index 0000000..961d767 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/DCIT.App.exe differ diff --git a/bin/x64/Release/net6.0-windows/DCIT.App.pdb b/bin/x64/Release/net6.0-windows/DCIT.App.pdb new file mode 100644 index 0000000..1c4ac20 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/DCIT.App.pdb differ diff --git a/bin/x64/Release/net6.0-windows/DCIT.App.runtimeconfig.json b/bin/x64/Release/net6.0-windows/DCIT.App.runtimeconfig.json new file mode 100644 index 0000000..54681bc --- /dev/null +++ b/bin/x64/Release/net6.0-windows/DCIT.App.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/bin/x64/Release/net6.0-windows/DCIT.Core.dll b/bin/x64/Release/net6.0-windows/DCIT.Core.dll new file mode 100644 index 0000000..6739cb0 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/DCIT.Core.dll differ diff --git a/bin/x64/Release/net6.0-windows/DCIT.Core.pdb b/bin/x64/Release/net6.0-windows/DCIT.Core.pdb new file mode 100644 index 0000000..9922f5e Binary files /dev/null and b/bin/x64/Release/net6.0-windows/DCIT.Core.pdb differ diff --git a/bin/x64/Release/net6.0-windows/DocumentFormat.OpenXml.Framework.dll b/bin/x64/Release/net6.0-windows/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..c9b3bc7 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/DocumentFormat.OpenXml.Framework.dll differ diff --git a/bin/x64/Release/net6.0-windows/DocumentFormat.OpenXml.dll b/bin/x64/Release/net6.0-windows/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..35d5251 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/DocumentFormat.OpenXml.dll differ diff --git a/bin/x64/Release/net6.0-windows/ExCSS.dll b/bin/x64/Release/net6.0-windows/ExCSS.dll new file mode 100644 index 0000000..e83aa20 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/ExCSS.dll differ diff --git a/bin/x64/Release/net6.0-windows/Newtonsoft.Json.dll b/bin/x64/Release/net6.0-windows/Newtonsoft.Json.dll new file mode 100644 index 0000000..5813d8c Binary files /dev/null and b/bin/x64/Release/net6.0-windows/Newtonsoft.Json.dll differ diff --git a/bin/x64/Release/net6.0-windows/Svg.dll b/bin/x64/Release/net6.0-windows/Svg.dll new file mode 100644 index 0000000..ded82c5 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/Svg.dll differ diff --git a/bin/x64/Release/net6.0-windows/System.IO.Packaging.dll b/bin/x64/Release/net6.0-windows/System.IO.Packaging.dll new file mode 100644 index 0000000..6ef5541 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/System.IO.Packaging.dll differ diff --git a/bin/x64/Release/net6.0-windows/tools/DocTo/docto.exe b/bin/x64/Release/net6.0-windows/tools/DocTo/docto.exe new file mode 100644 index 0000000..c0f2dd2 Binary files /dev/null and b/bin/x64/Release/net6.0-windows/tools/DocTo/docto.exe differ diff --git a/obj/DCIT.App.csproj.nuget.dgspec.json b/obj/DCIT.App.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8a9f162 --- /dev/null +++ b/obj/DCIT.App.csproj.nuget.dgspec.json @@ -0,0 +1,162 @@ +{ + "format": 1, + "restore": { + "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\DCIT.App.csproj": {} + }, + "projects": { + "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\DCIT.App.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\DCIT.App.csproj", + "projectName": "DCIT.App", + "projectPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\DCIT.App.csproj", + "packagesPath": "C:\\Users\\ly282\\.nuget\\packages\\", + "outputPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\ly282\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": { + "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\DCIT.Core.csproj": { + "projectPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\DCIT.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Crossgen2.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.428\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + }, + "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\DCIT.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\DCIT.Core.csproj", + "projectName": "DCIT.Core", + "projectPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\DCIT.Core.csproj", + "packagesPath": "C:\\Users\\ly282\\.nuget\\packages\\", + "outputPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\ly282\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "DocumentFormat.OpenXml": { + "target": "Package", + "version": "[3.5.1, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.4, )" + }, + "Svg": { + "target": "Package", + "version": "[3.4.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.428\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/DCIT.App.csproj.nuget.g.props b/obj/DCIT.App.csproj.nuget.g.props new file mode 100644 index 0000000..0b38bdd --- /dev/null +++ b/obj/DCIT.App.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\ly282\.nuget\packages\ + PackageReference + 6.3.4 + + + + + \ No newline at end of file diff --git a/obj/DCIT.App.csproj.nuget.g.targets b/obj/DCIT.App.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/DCIT.App.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/Debug/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/obj/Debug/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/obj/Debug/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/obj/Debug/net48/DCIT.App.AssemblyInfo.cs b/obj/Debug/net48/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..11a507d --- /dev/null +++ b/obj/Debug/net48/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net48/DCIT.App.AssemblyInfoInputs.cache b/obj/Debug/net48/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7daee1a --- /dev/null +++ b/obj/Debug/net48/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +17c638a7d1c19e6564c53737015258683a8d523c diff --git a/obj/Debug/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..63b0878 --- /dev/null +++ b/obj/Debug/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,14 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = D:\projects\DCIT\src\DCIT.App\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net48/DCIT.App.assets.cache b/obj/Debug/net48/DCIT.App.assets.cache new file mode 100644 index 0000000..f5f8e2f Binary files /dev/null and b/obj/Debug/net48/DCIT.App.assets.cache differ diff --git a/obj/Debug/net48/DCIT.App.csproj.AssemblyReference.cache b/obj/Debug/net48/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4a9ce42 Binary files /dev/null and b/obj/Debug/net48/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net48/DCIT.App.csproj.CopyComplete b/obj/Debug/net48/DCIT.App.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net48/DCIT.App.csproj.CoreCompileInputs.cache b/obj/Debug/net48/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5c75843 --- /dev/null +++ b/obj/Debug/net48/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d40b7b6149156ea4b83ff86f67931b0a12219d22 diff --git a/obj/Debug/net48/DCIT.App.csproj.FileListAbsolute.txt b/obj/Debug/net48/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..25e4d42 --- /dev/null +++ b/obj/Debug/net48/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,53 @@ +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.App.exe.config +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.App.exe +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.App.pdb +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\DocumentFormat.OpenXml.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\DocumentFormat.OpenXml.Framework.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\Newtonsoft.Json.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.Core.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.Core.pdb +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.csproj.AssemblyReference.cache +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.AssemblyInfoInputs.cache +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.AssemblyInfo.cs +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.csproj.CoreCompileInputs.cache +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.csproj.Up2Date +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.exe +D:\projects\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.pdb +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\ExCSS.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\Svg.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\System.Buffers.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\System.Memory.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\System.Numerics.Vectors.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\System.Runtime.CompilerServices.Unsafe.dll +D:\projects\DCIT\src\DCIT.App\bin\Debug\net48\tools\DocTo\docto.exe +D:\projects\DCIT\.build\verify-app\tools\DocTo\docto.exe +D:\projects\DCIT\.build\verify-app\DCIT.App.exe.config +D:\projects\DCIT\.build\verify-app\DCIT.App.exe +D:\projects\DCIT\.build\verify-app\DCIT.App.pdb +D:\projects\DCIT\.build\verify-app-tests\tools\DocTo\docto.exe +D:\projects\DCIT\.build\verify-app-tests\DCIT.App.exe.config +D:\projects\DCIT\.build\verify-app-tests\DCIT.App.exe +D:\projects\DCIT\.build\verify-app-tests\DCIT.App.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.App.exe.config +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.App.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.App.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\DocumentFormat.OpenXml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\DocumentFormat.OpenXml.Framework.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\ExCSS.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\Newtonsoft.Json.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\Svg.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\System.Buffers.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\System.Memory.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\System.Numerics.Vectors.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\System.Runtime.CompilerServices.Unsafe.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.Core.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net48\DCIT.Core.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.csprojAssemblyReference.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.AssemblyInfoInputs.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.AssemblyInfo.cs +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.csproj.CoreCompileInputs.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.csproj.CopyComplete +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net48\DCIT.App.pdb diff --git a/obj/Debug/net48/DCIT.App.csproj.Up2Date b/obj/Debug/net48/DCIT.App.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net48/DCIT.App.csprojAssemblyReference.cache b/obj/Debug/net48/DCIT.App.csprojAssemblyReference.cache new file mode 100644 index 0000000..f34458a Binary files /dev/null and b/obj/Debug/net48/DCIT.App.csprojAssemblyReference.cache differ diff --git a/obj/Debug/net48/DCIT.App.exe b/obj/Debug/net48/DCIT.App.exe new file mode 100644 index 0000000..17420a7 Binary files /dev/null and b/obj/Debug/net48/DCIT.App.exe differ diff --git a/obj/Debug/net48/DCIT.App.exe.withSupportedRuntime.config b/obj/Debug/net48/DCIT.App.exe.withSupportedRuntime.config new file mode 100644 index 0000000..8e342a9 --- /dev/null +++ b/obj/Debug/net48/DCIT.App.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/Debug/net48/DCIT.App.pdb b/obj/Debug/net48/DCIT.App.pdb new file mode 100644 index 0000000..6546eaf Binary files /dev/null and b/obj/Debug/net48/DCIT.App.pdb differ diff --git a/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net6.0-windows/DCIT.App.AssemblyInfo.cs b/obj/Debug/net6.0-windows/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..2afbe24 --- /dev/null +++ b/obj/Debug/net6.0-windows/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cee5244 --- /dev/null +++ b/obj/Debug/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +70e3ffd3d101f2df6f326df15ea4da1b7a687eaf diff --git a/obj/Debug/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9857d5e --- /dev/null +++ b/obj/Debug/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\ diff --git a/obj/Debug/net6.0-windows/DCIT.App.assets.cache b/obj/Debug/net6.0-windows/DCIT.App.assets.cache new file mode 100644 index 0000000..fc3d057 Binary files /dev/null and b/obj/Debug/net6.0-windows/DCIT.App.assets.cache differ diff --git a/obj/Debug/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache b/obj/Debug/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8e4765c Binary files /dev/null and b/obj/Debug/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0-windows/DCIT.App.csproj.CopyComplete b/obj/Debug/net6.0-windows/DCIT.App.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..c9ff78a --- /dev/null +++ b/obj/Debug/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8bd11ad0d30e7bb94d4872ed7d5d57421a7e4562 diff --git a/obj/Debug/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt b/obj/Debug/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..68faf38 --- /dev/null +++ b/obj/Debug/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,25 @@ +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DCIT.App.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DCIT.App.deps.json +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DCIT.App.runtimeconfig.json +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DCIT.App.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DocumentFormat.OpenXml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DocumentFormat.OpenXml.Framework.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\ExCSS.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\Newtonsoft.Json.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\Svg.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\System.IO.Packaging.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DCIT.Core.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\DCIT.Core.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.csproj.AssemblyReference.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.AssemblyInfoInputs.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.AssemblyInfo.cs +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.csproj.CoreCompileInputs.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.csproj.CopyComplete +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\refint\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\DCIT.App.genruntimeconfig.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\ref\DCIT.App.dll diff --git a/obj/Debug/net6.0-windows/DCIT.App.dll b/obj/Debug/net6.0-windows/DCIT.App.dll new file mode 100644 index 0000000..c6468a0 Binary files /dev/null and b/obj/Debug/net6.0-windows/DCIT.App.dll differ diff --git a/obj/Debug/net6.0-windows/DCIT.App.genruntimeconfig.cache b/obj/Debug/net6.0-windows/DCIT.App.genruntimeconfig.cache new file mode 100644 index 0000000..3bf0653 --- /dev/null +++ b/obj/Debug/net6.0-windows/DCIT.App.genruntimeconfig.cache @@ -0,0 +1 @@ +fb6763cfa6c86b71f17463e5ad7cf07d3bf9fb7e diff --git a/obj/Debug/net6.0-windows/DCIT.App.pdb b/obj/Debug/net6.0-windows/DCIT.App.pdb new file mode 100644 index 0000000..a089be6 Binary files /dev/null and b/obj/Debug/net6.0-windows/DCIT.App.pdb differ diff --git a/obj/Debug/net6.0-windows/apphost.exe b/obj/Debug/net6.0-windows/apphost.exe new file mode 100644 index 0000000..961d767 Binary files /dev/null and b/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/obj/Debug/net6.0-windows/ref/DCIT.App.dll b/obj/Debug/net6.0-windows/ref/DCIT.App.dll new file mode 100644 index 0000000..9875dd5 Binary files /dev/null and b/obj/Debug/net6.0-windows/ref/DCIT.App.dll differ diff --git a/obj/Debug/net6.0-windows/refint/DCIT.App.dll b/obj/Debug/net6.0-windows/refint/DCIT.App.dll new file mode 100644 index 0000000..9875dd5 Binary files /dev/null and b/obj/Debug/net6.0-windows/refint/DCIT.App.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.AssemblyInfo.cs b/obj/Debug/net6.0-windows/win-x64/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..ed44de9 --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/win-x64/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..55cc088 --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3456bb072ad02ec2080b4e888dde1f10de0edaea diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/win-x64/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..08dc713 --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\ diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.assets.cache b/obj/Debug/net6.0-windows/win-x64/DCIT.App.assets.cache new file mode 100644 index 0000000..be8937e Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/DCIT.App.assets.cache differ diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.AssemblyReference.cache b/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1555ceb Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.CopyComplete b/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..430a098 --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2c3319af89c9cca2601a38e5070bdfd36713836a diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.FileListAbsolute.txt b/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ddf8619 --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,521 @@ +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DCIT.App.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DCIT.App.deps.json +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DCIT.App.runtimeconfig.json +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DocumentFormat.OpenXml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DocumentFormat.OpenXml.Framework.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ExCSS.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Newtonsoft.Json.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Svg.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Packaging.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.CSharp.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.VisualBasic.Core.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.Win32.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.Win32.Registry.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.AppContext.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Buffers.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Collections.Concurrent.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Collections.Immutable.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Collections.NonGeneric.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Collections.Specialized.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Collections.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ComponentModel.Annotations.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ComponentModel.DataAnnotations.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ComponentModel.EventBasedAsync.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ComponentModel.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ComponentModel.TypeConverter.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ComponentModel.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Configuration.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Console.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Core.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Data.Common.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Data.DataSetExtensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Data.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.Contracts.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.Debug.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.DiagnosticSource.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.FileVersionInfo.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.Process.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.StackTrace.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.TextWriterTraceListener.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.Tools.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.TraceSource.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.Tracing.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Drawing.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Dynamic.Runtime.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Formats.Asn1.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Globalization.Calendars.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Globalization.Extensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Globalization.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Compression.Brotli.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Compression.FileSystem.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Compression.ZipFile.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Compression.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.FileSystem.AccessControl.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.FileSystem.DriveInfo.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.FileSystem.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.FileSystem.Watcher.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.FileSystem.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.IsolatedStorage.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.MemoryMappedFiles.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Pipes.AccessControl.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Pipes.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.UnmanagedMemoryStream.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Linq.Expressions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Linq.Parallel.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Linq.Queryable.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Linq.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Memory.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Http.Json.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Http.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.HttpListener.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Mail.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.NameResolution.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.NetworkInformation.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Ping.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Quic.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Requests.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Security.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.ServicePoint.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.Sockets.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.WebClient.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.WebHeaderCollection.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.WebProxy.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.WebSockets.Client.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.WebSockets.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Net.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Numerics.Vectors.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Numerics.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ObjectModel.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Private.CoreLib.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Private.DataContractSerialization.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Private.Uri.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Private.Xml.Linq.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Private.Xml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.DispatchProxy.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.Emit.ILGeneration.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.Emit.Lightweight.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.Emit.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.Extensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.Metadata.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.TypeExtensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Reflection.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Resources.Reader.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Resources.ResourceManager.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Resources.Writer.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.CompilerServices.Unsafe.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.CompilerServices.VisualC.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Extensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Handles.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.InteropServices.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Intrinsics.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Loader.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Numerics.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Serialization.Formatters.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Serialization.Json.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Serialization.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Serialization.Xml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.Serialization.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Runtime.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.AccessControl.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Claims.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.Algorithms.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.Cng.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.Csp.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.Encoding.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.OpenSsl.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.X509Certificates.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Principal.Windows.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Principal.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.SecureString.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ServiceModel.Web.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ServiceProcess.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Text.Encoding.CodePages.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Text.Encoding.Extensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Text.Encoding.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Text.Encodings.Web.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Text.Json.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Text.RegularExpressions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Channels.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Overlapped.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Tasks.Dataflow.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Tasks.Extensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Tasks.Parallel.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Tasks.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Thread.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.ThreadPool.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.Timer.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Transactions.Local.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Transactions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.ValueTuple.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Web.HttpUtility.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Web.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.Linq.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.ReaderWriter.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.Serialization.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.XDocument.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.XPath.XDocument.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.XPath.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.XmlDocument.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.XmlSerializer.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\mscorlib.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\netstandard.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Accessibility.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DirectWriteForwarder.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.VisualBasic.Forms.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.VisualBasic.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.Win32.Registry.AccessControl.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.Win32.SystemEvents.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationCore.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework-SystemCore.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework-SystemData.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework-SystemDrawing.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework-SystemXml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework-SystemXmlLinq.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework.Aero.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework.Aero2.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework.AeroLite.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework.Classic.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework.Luna.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework.Royale.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationFramework.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationUI.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ReachFramework.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.CodeDom.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Configuration.ConfigurationManager.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Design.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.EventLog.Messages.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.EventLog.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Diagnostics.PerformanceCounter.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.DirectoryServices.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Drawing.Common.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Drawing.Design.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Drawing.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Printing.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Resources.Extensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.Pkcs.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.ProtectedData.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Cryptography.Xml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Security.Permissions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Threading.AccessControl.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Controls.Ribbon.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Extensions.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Forms.Design.Editors.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Forms.Design.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Forms.Primitives.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Forms.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Input.Manipulations.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Windows.Presentation.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.Xaml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\UIAutomationClient.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\UIAutomationClientSideProviders.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\UIAutomationProvider.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\UIAutomationTypes.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\WindowsBase.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\WindowsFormsIntegration.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\System.IO.Compression.Native.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-console-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-console-l1-2-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-datetime-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-debug-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-fibers-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-file-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-file-l1-2-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-file-l2-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-handle-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-heap-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-interlocked-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-localization-l1-2-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-memory-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-processthreads-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-processthreads-l1-1-1.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-profile-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-string-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-synch-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-synch-l1-2-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-timezone-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-core-util-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-conio-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-convert-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-environment-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-heap-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-locale-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-math-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-private-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-process-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-runtime-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-stdio-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-string-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-time-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\api-ms-win-crt-utility-l1-1-0.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\clretwrc.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\clrjit.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\coreclr.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\createdump.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\dbgshim.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\hostfxr.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\hostpolicy.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\mscordaccore.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\mscordaccore_amd64_amd64_6.0.3624.51421.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\mscordbi.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\mscorrc.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\msquic.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ucrtbase.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\D3DCompiler_47_cor3.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PenImc_cor3.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\PresentationNative_cor3.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\vcruntime140_cor3.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\wpfgfx_cor3.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\cs\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\de\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\es\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\fr\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\it\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ja\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ko\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pl\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\pt-BR\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\ru\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\tr\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hans\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\zh-Hant\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DCIT.Core.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Debug\net6.0-windows\win-x64\DCIT.Core.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.csproj.AssemblyReference.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.AssemblyInfoInputs.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.AssemblyInfo.cs +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.csproj.CoreCompileInputs.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.csproj.CopyComplete +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\refint\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\DCIT.App.genruntimeconfig.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Debug\net6.0-windows\win-x64\ref\DCIT.App.dll diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.deps.json b/obj/Debug/net6.0-windows/win-x64/DCIT.App.deps.json new file mode 100644 index 0000000..2f10a61 --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/DCIT.App.deps.json @@ -0,0 +1,1198 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "DCIT.App/1.0.0": { + "dependencies": { + "DCIT.Core": "1.0.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.36", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "6.0.36" + }, + "runtime": { + "DCIT.App.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.3624.51421" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.3624.51421" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51513" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "PresentationCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationUI.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "ReachFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Drawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Printing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Xaml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsBase.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22621.3233" + }, + "PenImc_cor3.dll": { + "fileVersion": "6.0.3624.51603" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "6.0.24.46601" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.40.33810.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "6.0.3624.51603" + } + } + }, + "DocumentFormat.OpenXml/3.5.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "ExCSS/4.2.3": { + "runtime": { + "lib/net6.0/ExCSS.dll": { + "assemblyVersion": "4.2.3.0", + "fileVersion": "4.2.3.0" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.4": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.4.30916" + } + } + }, + "Svg/3.4.7": { + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.7.1" + } + } + }, + "System.Drawing.Common/5.0.3": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + } + }, + "System.IO.Packaging/8.0.1": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "DCIT.Core/1.0.0": { + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "runtime": { + "DCIT.Core.dll": {} + } + } + } + }, + "libraries": { + "DCIT.App/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==", + "path": "documentformat.openxml/3.5.1", + "hashPath": "documentformat.openxml.3.5.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==", + "path": "documentformat.openxml.framework/3.5.1", + "hashPath": "documentformat.openxml.framework.3.5.1.nupkg.sha512" + }, + "ExCSS/4.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "path": "excss/4.2.3", + "hashPath": "excss.4.2.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "path": "newtonsoft.json/13.0.4", + "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" + }, + "Svg/3.4.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Omez7ly5BGhg3OzdV+LHZ5sI0+JQ6hF7WVKUeyHw4jRvcEWNCPCf1MWMBaf+R0DRBSZHx5EUHwBTEF+2oYtsAw==", + "path": "svg/3.4.7", + "hashPath": "svg.3.4.7.nupkg.sha512" + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==", + "path": "system.drawing.common/5.0.3", + "hashPath": "system.drawing.common.5.0.3.nupkg.sha512" + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "path": "system.io.packaging/8.0.1", + "hashPath": "system.io.packaging.8.0.1.nupkg.sha512" + }, + "DCIT.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.dll b/obj/Debug/net6.0-windows/win-x64/DCIT.App.dll new file mode 100644 index 0000000..ffca807 Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/DCIT.App.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/DCIT.App.genruntimeconfig.cache b/obj/Debug/net6.0-windows/win-x64/DCIT.App.genruntimeconfig.cache new file mode 100644 index 0000000..99d73fc --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/DCIT.App.genruntimeconfig.cache @@ -0,0 +1 @@ +87b317c36d409435c85ae371000aa1b321a0dc6b diff --git a/obj/Debug/net6.0-windows/win-x64/PublishOutputs.75e2b7ced4.txt b/obj/Debug/net6.0-windows/win-x64/PublishOutputs.75e2b7ced4.txt new file mode 100644 index 0000000..56fd86f --- /dev/null +++ b/obj/Debug/net6.0-windows/win-x64/PublishOutputs.75e2b7ced4.txt @@ -0,0 +1,3 @@ +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\DCIT.Core.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\DCIT.App.exe diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/DCIT.App.dll b/obj/Debug/net6.0-windows/win-x64/R2R/DCIT.App.dll new file mode 100644 index 0000000..f0b1ee9 Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/DCIT.App.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/DCIT.Core.dll b/obj/Debug/net6.0-windows/win-x64/R2R/DCIT.Core.dll new file mode 100644 index 0000000..65c9db8 Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/DCIT.Core.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.Framework.dll b/obj/Debug/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..c9f9c9c Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.Framework.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.dll b/obj/Debug/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..dbef9b5 Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/ExCSS.dll b/obj/Debug/net6.0-windows/win-x64/R2R/ExCSS.dll new file mode 100644 index 0000000..585219f Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/ExCSS.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/Newtonsoft.Json.dll b/obj/Debug/net6.0-windows/win-x64/R2R/Newtonsoft.Json.dll new file mode 100644 index 0000000..6043202 Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/Newtonsoft.Json.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/Svg.dll b/obj/Debug/net6.0-windows/win-x64/R2R/Svg.dll new file mode 100644 index 0000000..a71d540 Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/Svg.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/R2R/System.IO.Packaging.dll b/obj/Debug/net6.0-windows/win-x64/R2R/System.IO.Packaging.dll new file mode 100644 index 0000000..48a6e27 Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/R2R/System.IO.Packaging.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/ref/DCIT.App.dll b/obj/Debug/net6.0-windows/win-x64/ref/DCIT.App.dll new file mode 100644 index 0000000..16a176d Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/ref/DCIT.App.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/refint/DCIT.App.dll b/obj/Debug/net6.0-windows/win-x64/refint/DCIT.App.dll new file mode 100644 index 0000000..16a176d Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/refint/DCIT.App.dll differ diff --git a/obj/Debug/net6.0-windows/win-x64/singlefilehost.exe b/obj/Debug/net6.0-windows/win-x64/singlefilehost.exe new file mode 100644 index 0000000..6f3384b Binary files /dev/null and b/obj/Debug/net6.0-windows/win-x64/singlefilehost.exe differ diff --git a/obj/Release/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/obj/Release/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/obj/Release/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/obj/Release/net48/DCIT.App.AssemblyInfo.cs b/obj/Release/net48/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..94fa8a2 --- /dev/null +++ b/obj/Release/net48/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net48/DCIT.App.AssemblyInfoInputs.cache b/obj/Release/net48/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d8f6261 --- /dev/null +++ b/obj/Release/net48/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cfdf085f448b7845532730a4703eb0cbe26d32e567bcf8dc69c93e03d970993c diff --git a/obj/Release/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..63b0878 --- /dev/null +++ b/obj/Release/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,14 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = D:\projects\DCIT\src\DCIT.App\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/Release/net48/DCIT.App.assets.cache b/obj/Release/net48/DCIT.App.assets.cache new file mode 100644 index 0000000..0b73be4 Binary files /dev/null and b/obj/Release/net48/DCIT.App.assets.cache differ diff --git a/obj/Release/net48/DCIT.App.csproj.AssemblyReference.cache b/obj/Release/net48/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9eff09b Binary files /dev/null and b/obj/Release/net48/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net48/DCIT.App.csproj.CoreCompileInputs.cache b/obj/Release/net48/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..63fde5f --- /dev/null +++ b/obj/Release/net48/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +cfc0f6809d567496d9072d2583e464827392174d4cf8593b87480a0bda9eb808 diff --git a/obj/Release/net48/DCIT.App.csproj.FileListAbsolute.txt b/obj/Release/net48/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..947688f --- /dev/null +++ b/obj/Release/net48/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,23 @@ +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\tools\DocTo\docto.exe +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\DCIT.App.exe.config +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\DCIT.App.exe +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\DCIT.App.pdb +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\DocumentFormat.OpenXml.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\DocumentFormat.OpenXml.Framework.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\ExCSS.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\Newtonsoft.Json.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\Svg.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\System.Buffers.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\System.Memory.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\System.Numerics.Vectors.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\System.Runtime.CompilerServices.Unsafe.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\DCIT.Core.dll +D:\projects\DCIT\src\DCIT.App\bin\Release\net48\DCIT.Core.pdb +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.csproj.AssemblyReference.cache +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.AssemblyInfoInputs.cache +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.AssemblyInfo.cs +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.csproj.CoreCompileInputs.cache +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.csproj.Up2Date +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.exe +D:\projects\DCIT\src\DCIT.App\obj\Release\net48\DCIT.App.pdb diff --git a/obj/Release/net48/DCIT.App.csproj.Up2Date b/obj/Release/net48/DCIT.App.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net48/DCIT.App.exe b/obj/Release/net48/DCIT.App.exe new file mode 100644 index 0000000..38d9a03 Binary files /dev/null and b/obj/Release/net48/DCIT.App.exe differ diff --git a/obj/Release/net48/DCIT.App.exe.withSupportedRuntime.config b/obj/Release/net48/DCIT.App.exe.withSupportedRuntime.config new file mode 100644 index 0000000..8e342a9 --- /dev/null +++ b/obj/Release/net48/DCIT.App.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/Release/net48/DCIT.App.pdb b/obj/Release/net48/DCIT.App.pdb new file mode 100644 index 0000000..095ed8f Binary files /dev/null and b/obj/Release/net48/DCIT.App.pdb differ diff --git a/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Release/net6.0-windows/DCIT.App.AssemblyInfo.cs b/obj/Release/net6.0-windows/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..ed44de9 --- /dev/null +++ b/obj/Release/net6.0-windows/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache b/obj/Release/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..55cc088 --- /dev/null +++ b/obj/Release/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3456bb072ad02ec2080b4e888dde1f10de0edaea diff --git a/obj/Release/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a0ce9b2 --- /dev/null +++ b/obj/Release/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\ diff --git a/obj/Release/net6.0-windows/DCIT.App.assets.cache b/obj/Release/net6.0-windows/DCIT.App.assets.cache new file mode 100644 index 0000000..b2ffa73 Binary files /dev/null and b/obj/Release/net6.0-windows/DCIT.App.assets.cache differ diff --git a/obj/Release/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache b/obj/Release/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..46d281e Binary files /dev/null and b/obj/Release/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net6.0-windows/DCIT.App.csproj.CopyComplete b/obj/Release/net6.0-windows/DCIT.App.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache b/obj/Release/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4dd1084 --- /dev/null +++ b/obj/Release/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f3947fee493534028a5d5229731f8638556c925c diff --git a/obj/Release/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt b/obj/Release/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e542529 --- /dev/null +++ b/obj/Release/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,50 @@ +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DocumentFormat.OpenXml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DocumentFormat.OpenXml.Framework.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\ExCSS.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\Newtonsoft.Json.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\Svg.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\System.IO.Packaging.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DCIT.Core.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DCIT.Core.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.csproj.AssemblyReference.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.AssemblyInfoInputs.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.AssemblyInfo.cs +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.csproj.CoreCompileInputs.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.csproj.CopyComplete +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\refint\DCIT.App.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.deps.json +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.runtimeconfig.json +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.genruntimeconfig.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\ref\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\tools\DocTo\docto.exe +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.exe +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.deps.json +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.runtimeconfig.json +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DCIT.App.pdb +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DocumentFormat.OpenXml.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DocumentFormat.OpenXml.Framework.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\ExCSS.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\Newtonsoft.Json.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\Svg.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\System.IO.Packaging.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DCIT.Core.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\DCIT.Core.pdb +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.csproj.AssemblyReference.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.AssemblyInfoInputs.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.AssemblyInfo.cs +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.csproj.CoreCompileInputs.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.csproj.CopyComplete +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\refint\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.pdb +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\DCIT.App.genruntimeconfig.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\ref\DCIT.App.dll diff --git a/obj/Release/net6.0-windows/DCIT.App.dll b/obj/Release/net6.0-windows/DCIT.App.dll new file mode 100644 index 0000000..e6b88ee Binary files /dev/null and b/obj/Release/net6.0-windows/DCIT.App.dll differ diff --git a/obj/Release/net6.0-windows/DCIT.App.genruntimeconfig.cache b/obj/Release/net6.0-windows/DCIT.App.genruntimeconfig.cache new file mode 100644 index 0000000..a9b2b67 --- /dev/null +++ b/obj/Release/net6.0-windows/DCIT.App.genruntimeconfig.cache @@ -0,0 +1 @@ +befe166be583bca23631707d58dc2b7aff49885f diff --git a/obj/Release/net6.0-windows/DCIT.App.pdb b/obj/Release/net6.0-windows/DCIT.App.pdb new file mode 100644 index 0000000..cb2c4c8 Binary files /dev/null and b/obj/Release/net6.0-windows/DCIT.App.pdb differ diff --git a/obj/Release/net6.0-windows/PublishOutputs.a3ebc49f54.txt b/obj/Release/net6.0-windows/PublishOutputs.a3ebc49f54.txt new file mode 100644 index 0000000..4644702 --- /dev/null +++ b/obj/Release/net6.0-windows/PublishOutputs.a3ebc49f54.txt @@ -0,0 +1,14 @@ +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DCIT.App.exe +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\tools\DocTo\docto.exe +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DCIT.App.deps.json +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DCIT.App.runtimeconfig.json +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DCIT.App.pdb +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DocumentFormat.OpenXml.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DocumentFormat.OpenXml.Framework.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\ExCSS.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\Newtonsoft.Json.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\Svg.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\System.IO.Packaging.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DCIT.Core.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\publish\DCIT.Core.pdb diff --git a/obj/Release/net6.0-windows/apphost.exe b/obj/Release/net6.0-windows/apphost.exe new file mode 100644 index 0000000..961d767 Binary files /dev/null and b/obj/Release/net6.0-windows/apphost.exe differ diff --git a/obj/Release/net6.0-windows/ref/DCIT.App.dll b/obj/Release/net6.0-windows/ref/DCIT.App.dll new file mode 100644 index 0000000..ec3e80f Binary files /dev/null and b/obj/Release/net6.0-windows/ref/DCIT.App.dll differ diff --git a/obj/Release/net6.0-windows/refint/DCIT.App.dll b/obj/Release/net6.0-windows/refint/DCIT.App.dll new file mode 100644 index 0000000..ec3e80f Binary files /dev/null and b/obj/Release/net6.0-windows/refint/DCIT.App.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.AssemblyInfo.cs b/obj/Release/net6.0-windows/win-x64/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..ed44de9 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.AssemblyInfoInputs.cache b/obj/Release/net6.0-windows/win-x64/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..55cc088 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3456bb072ad02ec2080b4e888dde1f10de0edaea diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0-windows/win-x64/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..08dc713 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\ diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.assets.cache b/obj/Release/net6.0-windows/win-x64/DCIT.App.assets.cache new file mode 100644 index 0000000..222d321 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/DCIT.App.assets.cache differ diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.AssemblyReference.cache b/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..cc259a2 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.CopyComplete b/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.CoreCompileInputs.cache b/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7674680 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e5349ccfc393afa1856bd9e4ecce9a4f38ad00b9 diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.FileListAbsolute.txt b/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..69e3cf5 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,546 @@ +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.deps.json +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.runtimeconfig.json +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DocumentFormat.OpenXml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DocumentFormat.OpenXml.Framework.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ExCSS.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Newtonsoft.Json.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Svg.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Packaging.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.CSharp.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.VisualBasic.Core.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.Registry.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.AppContext.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Buffers.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Collections.Concurrent.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Collections.Immutable.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Collections.NonGeneric.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Collections.Specialized.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Collections.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ComponentModel.Annotations.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ComponentModel.DataAnnotations.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ComponentModel.EventBasedAsync.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ComponentModel.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ComponentModel.TypeConverter.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ComponentModel.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Configuration.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Console.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Core.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Data.Common.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Data.DataSetExtensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Data.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Contracts.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Debug.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.DiagnosticSource.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.FileVersionInfo.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Process.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.StackTrace.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.TextWriterTraceListener.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Tools.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.TraceSource.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.Tracing.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Drawing.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Dynamic.Runtime.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Formats.Asn1.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Globalization.Calendars.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Globalization.Extensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Globalization.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Compression.Brotli.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Compression.FileSystem.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Compression.ZipFile.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Compression.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.AccessControl.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.DriveInfo.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.Watcher.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.FileSystem.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.IsolatedStorage.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.MemoryMappedFiles.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Pipes.AccessControl.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Pipes.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.UnmanagedMemoryStream.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Linq.Expressions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Linq.Parallel.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Linq.Queryable.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Linq.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Memory.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Http.Json.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Http.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.HttpListener.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Mail.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.NameResolution.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.NetworkInformation.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Ping.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Quic.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Requests.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Security.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.ServicePoint.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.Sockets.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.WebClient.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.WebHeaderCollection.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.WebProxy.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.WebSockets.Client.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.WebSockets.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Net.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Numerics.Vectors.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Numerics.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ObjectModel.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Private.CoreLib.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Private.DataContractSerialization.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Private.Uri.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Private.Xml.Linq.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Private.Xml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.DispatchProxy.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.Emit.ILGeneration.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.Emit.Lightweight.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.Emit.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.Extensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.Metadata.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.TypeExtensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Reflection.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Resources.Reader.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Resources.ResourceManager.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Resources.Writer.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.CompilerServices.Unsafe.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.CompilerServices.VisualC.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Extensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Handles.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.InteropServices.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Intrinsics.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Loader.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Numerics.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Formatters.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Json.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.Xml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.Serialization.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Runtime.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.AccessControl.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Claims.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Algorithms.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Cng.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Csp.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Encoding.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.OpenSsl.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.X509Certificates.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Principal.Windows.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Principal.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.SecureString.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ServiceModel.Web.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ServiceProcess.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Text.Encoding.CodePages.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Text.Encoding.Extensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Text.Encoding.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Text.Encodings.Web.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Text.Json.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Text.RegularExpressions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Channels.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Overlapped.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.Dataflow.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.Extensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.Parallel.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Tasks.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Thread.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.ThreadPool.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.Timer.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Transactions.Local.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Transactions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.ValueTuple.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Web.HttpUtility.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Web.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.Linq.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.ReaderWriter.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.Serialization.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.XDocument.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.XPath.XDocument.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.XPath.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.XmlDocument.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.XmlSerializer.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\mscorlib.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\netstandard.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Accessibility.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DirectWriteForwarder.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.VisualBasic.Forms.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.VisualBasic.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.Registry.AccessControl.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.Win32.SystemEvents.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationCore.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemCore.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemData.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemDrawing.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemXml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework-SystemXmlLinq.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework.Aero.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework.Aero2.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework.AeroLite.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework.Classic.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework.Luna.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework.Royale.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationFramework.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationUI.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ReachFramework.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.CodeDom.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Configuration.ConfigurationManager.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Design.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.EventLog.Messages.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.EventLog.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Diagnostics.PerformanceCounter.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.DirectoryServices.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Drawing.Common.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Drawing.Design.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Drawing.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Printing.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Resources.Extensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Pkcs.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.ProtectedData.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Cryptography.Xml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Security.Permissions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Threading.AccessControl.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Controls.Ribbon.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Extensions.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.Design.Editors.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.Design.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.Primitives.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Forms.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Input.Manipulations.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Windows.Presentation.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.Xaml.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\UIAutomationClient.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\UIAutomationClientSideProviders.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\UIAutomationProvider.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\UIAutomationTypes.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\WindowsBase.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\WindowsFormsIntegration.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Compression.Native.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-console-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-console-l1-2-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-datetime-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-debug-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-fibers-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-file-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-file-l1-2-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-file-l2-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-handle-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-heap-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-interlocked-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-localization-l1-2-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-memory-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-processthreads-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-processthreads-l1-1-1.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-profile-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-string-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-synch-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-synch-l1-2-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-timezone-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-core-util-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-conio-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-convert-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-environment-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-heap-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-locale-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-math-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-private-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-process-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-runtime-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-stdio-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-string-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-time-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\api-ms-win-crt-utility-l1-1-0.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\clretwrc.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\clrjit.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\coreclr.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\createdump.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\dbgshim.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\hostfxr.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\hostpolicy.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\mscordaccore.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\mscordaccore_amd64_amd64_6.0.3624.51421.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\mscordbi.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\mscorrc.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\msquic.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ucrtbase.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\D3DCompiler_47_cor3.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PenImc_cor3.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\PresentationNative_cor3.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\vcruntime140_cor3.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\wpfgfx_cor3.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\cs\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\de\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\es\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\fr\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\it\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ja\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ko\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pl\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\pt-BR\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ru\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tr\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hans\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\Microsoft.VisualBasic.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\PresentationCore.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\PresentationFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\PresentationUI.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\ReachFramework.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Controls.Ribbon.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.Design.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.Primitives.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Forms.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Windows.Input.Manipulations.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\System.Xaml.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationClient.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationClientSideProviders.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationProvider.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\UIAutomationTypes.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\WindowsBase.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\zh-Hant\WindowsFormsIntegration.resources.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.Core.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.Core.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.csproj.AssemblyReference.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.AssemblyInfoInputs.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.AssemblyInfo.cs +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.csproj.CoreCompileInputs.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.csproj.CopyComplete +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\refint\DCIT.App.dll +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.genruntimeconfig.cache +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\obj\Release\net6.0-windows\win-x64\ref\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\tools\DocTo\docto.exe +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.exe +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.deps.json +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.runtimeconfig.json +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DocumentFormat.OpenXml.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DocumentFormat.OpenXml.Framework.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\ExCSS.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Newtonsoft.Json.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\Svg.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\System.IO.Packaging.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.Core.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.Core.pdb +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.csproj.AssemblyReference.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.AssemblyInfoInputs.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.AssemblyInfo.cs +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.csproj.CoreCompileInputs.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.csproj.CopyComplete +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\refint\DCIT.App.dll +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.genruntimeconfig.cache +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\ref\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\Release\net6.0-windows\win-x64\DCIT.App.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\Release\net6.0-windows\win-x64\DCIT.App.pdb diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.deps.json b/obj/Release/net6.0-windows/win-x64/DCIT.App.deps.json new file mode 100644 index 0000000..2f10a61 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/DCIT.App.deps.json @@ -0,0 +1,1198 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "DCIT.App/1.0.0": { + "dependencies": { + "DCIT.Core": "1.0.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.36", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "6.0.36" + }, + "runtime": { + "DCIT.App.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.3624.51421" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.3624.51421" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51513" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "6.0.3624.51513" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "PresentationCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "PresentationUI.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "ReachFramework.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Drawing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Printing.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.3624.51421" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51513" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "System.Xaml.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsBase.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "6.0.2.0", + "fileVersion": "6.0.3624.51603" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.22621.3233" + }, + "PenImc_cor3.dll": { + "fileVersion": "6.0.3624.51603" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "6.0.24.46601" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.40.33810.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "6.0.3624.51603" + } + } + }, + "DocumentFormat.OpenXml/3.5.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.5.1.0", + "fileVersion": "3.5.1.0" + } + } + }, + "ExCSS/4.2.3": { + "runtime": { + "lib/net6.0/ExCSS.dll": { + "assemblyVersion": "4.2.3.0", + "fileVersion": "4.2.3.0" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.4": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.4.30916" + } + } + }, + "Svg/3.4.7": { + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "assemblyVersion": "3.4.0.0", + "fileVersion": "3.4.7.1" + } + } + }, + "System.Drawing.Common/5.0.3": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + } + }, + "System.IO.Packaging/8.0.1": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "DCIT.Core/1.0.0": { + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "runtime": { + "DCIT.Core.dll": {} + } + } + } + }, + "libraries": { + "DCIT.App/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/6.0.36": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==", + "path": "documentformat.openxml/3.5.1", + "hashPath": "documentformat.openxml.3.5.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==", + "path": "documentformat.openxml.framework/3.5.1", + "hashPath": "documentformat.openxml.framework.3.5.1.nupkg.sha512" + }, + "ExCSS/4.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "path": "excss/4.2.3", + "hashPath": "excss.4.2.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "path": "newtonsoft.json/13.0.4", + "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" + }, + "Svg/3.4.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Omez7ly5BGhg3OzdV+LHZ5sI0+JQ6hF7WVKUeyHw4jRvcEWNCPCf1MWMBaf+R0DRBSZHx5EUHwBTEF+2oYtsAw==", + "path": "svg/3.4.7", + "hashPath": "svg.3.4.7.nupkg.sha512" + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==", + "path": "system.drawing.common/5.0.3", + "hashPath": "system.drawing.common.5.0.3.nupkg.sha512" + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "path": "system.io.packaging/8.0.1", + "hashPath": "system.io.packaging.8.0.1.nupkg.sha512" + }, + "DCIT.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.dll b/obj/Release/net6.0-windows/win-x64/DCIT.App.dll new file mode 100644 index 0000000..d2b8ba0 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/DCIT.App.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.genruntimeconfig.cache b/obj/Release/net6.0-windows/win-x64/DCIT.App.genruntimeconfig.cache new file mode 100644 index 0000000..2b88505 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/DCIT.App.genruntimeconfig.cache @@ -0,0 +1 @@ +b6ad9443199a4dcf94c94ff9bbe090a6ec131f64 diff --git a/obj/Release/net6.0-windows/win-x64/DCIT.App.pdb b/obj/Release/net6.0-windows/win-x64/DCIT.App.pdb new file mode 100644 index 0000000..c96aaa5 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/DCIT.App.pdb differ diff --git a/obj/Release/net6.0-windows/win-x64/PublishOutputs.11dd44fd04.txt b/obj/Release/net6.0-windows/win-x64/PublishOutputs.11dd44fd04.txt new file mode 100644 index 0000000..42a5c0c --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/PublishOutputs.11dd44fd04.txt @@ -0,0 +1,3 @@ +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\publish\win-x64\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\publish\win-x64\DCIT.Core.pdb +E:\projects\wxwx\projects_job\一般需求项目\WORD文档替换与还原工具\codex\DCIT\历史版本\20260625\src\DCIT.App\bin\publish\win-x64\DCIT.App.exe diff --git a/obj/Release/net6.0-windows/win-x64/PublishOutputs.7280c94508.txt b/obj/Release/net6.0-windows/win-x64/PublishOutputs.7280c94508.txt new file mode 100644 index 0000000..8983506 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/PublishOutputs.7280c94508.txt @@ -0,0 +1,3 @@ +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\tools\DocTo\docto.exe +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\DCIT.Core.pdb +e:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\win-x64\DCIT.App.exe diff --git a/obj/Release/net6.0-windows/win-x64/PublishOutputs.ee73f05fae.txt b/obj/Release/net6.0-windows/win-x64/PublishOutputs.ee73f05fae.txt new file mode 100644 index 0000000..8a2dbb2 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/PublishOutputs.ee73f05fae.txt @@ -0,0 +1,4 @@ +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\publish\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\publish\DCIT.App.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\publish\DCIT.Core.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\publish\DCIT.App.exe diff --git a/obj/Release/net6.0-windows/win-x64/PublishOutputs.f6576d8db4.txt b/obj/Release/net6.0-windows/win-x64/PublishOutputs.f6576d8db4.txt new file mode 100644 index 0000000..cdc3cc2 --- /dev/null +++ b/obj/Release/net6.0-windows/win-x64/PublishOutputs.f6576d8db4.txt @@ -0,0 +1,4 @@ +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\DCIT.App.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\DCIT.Core.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\publish\DCIT.App.exe diff --git a/obj/Release/net6.0-windows/win-x64/R2R/DCIT.App.dll b/obj/Release/net6.0-windows/win-x64/R2R/DCIT.App.dll new file mode 100644 index 0000000..9d0cd9d Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/DCIT.App.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/R2R/DCIT.Core.dll b/obj/Release/net6.0-windows/win-x64/R2R/DCIT.Core.dll new file mode 100644 index 0000000..3c991a3 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/DCIT.Core.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.Framework.dll b/obj/Release/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..c9f9c9c Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.Framework.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.dll b/obj/Release/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..dbef9b5 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/DocumentFormat.OpenXml.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/R2R/ExCSS.dll b/obj/Release/net6.0-windows/win-x64/R2R/ExCSS.dll new file mode 100644 index 0000000..585219f Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/ExCSS.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/R2R/Newtonsoft.Json.dll b/obj/Release/net6.0-windows/win-x64/R2R/Newtonsoft.Json.dll new file mode 100644 index 0000000..6043202 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/Newtonsoft.Json.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/R2R/Svg.dll b/obj/Release/net6.0-windows/win-x64/R2R/Svg.dll new file mode 100644 index 0000000..a71d540 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/Svg.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/R2R/System.IO.Packaging.dll b/obj/Release/net6.0-windows/win-x64/R2R/System.IO.Packaging.dll new file mode 100644 index 0000000..48a6e27 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/R2R/System.IO.Packaging.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/apphost.exe b/obj/Release/net6.0-windows/win-x64/apphost.exe new file mode 100644 index 0000000..961d767 Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/apphost.exe differ diff --git a/obj/Release/net6.0-windows/win-x64/ref/DCIT.App.dll b/obj/Release/net6.0-windows/win-x64/ref/DCIT.App.dll new file mode 100644 index 0000000..ec3e80f Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/ref/DCIT.App.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/refint/DCIT.App.dll b/obj/Release/net6.0-windows/win-x64/refint/DCIT.App.dll new file mode 100644 index 0000000..ec3e80f Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/refint/DCIT.App.dll differ diff --git a/obj/Release/net6.0-windows/win-x64/singlefilehost.exe b/obj/Release/net6.0-windows/win-x64/singlefilehost.exe new file mode 100644 index 0000000..6f3384b Binary files /dev/null and b/obj/Release/net6.0-windows/win-x64/singlefilehost.exe differ diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..4a56400 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,656 @@ +{ + "version": 3, + "targets": { + "net6.0-windows7.0": { + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "compile": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "compile": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net6.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net6.0/ExCSS.dll": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Svg/3.4.7": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "compile": { + "lib/net6.0/Svg.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "DCIT.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "compile": { + "bin/placeholder/DCIT.Core.dll": {} + }, + "runtime": { + "bin/placeholder/DCIT.Core.dll": {} + } + } + }, + "net6.0-windows7.0/win-x64": { + "DocumentFormat.OpenXml/3.5.1": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.5.1" + }, + "compile": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "compile": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net6.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net6.0/ExCSS.dll": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.4": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Svg/3.4.7": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3", + "System.Drawing.Common": "5.0.3" + }, + "compile": { + "lib/net6.0/Svg.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Svg.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/5.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "related": ".xml" + } + } + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "DCIT.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "DocumentFormat.OpenXml": "3.5.1", + "Newtonsoft.Json": "13.0.4", + "Svg": "3.4.7" + }, + "compile": { + "bin/placeholder/DCIT.Core.dll": {} + }, + "runtime": { + "bin/placeholder/DCIT.Core.dll": {} + } + } + } + }, + "libraries": { + "DocumentFormat.OpenXml/3.5.1": { + "sha512": "zxdOf5VVCe/uNklbRhj8dVBzQGj3DoqkUuqOp9cAZVuN8mNYDjof1lvSQA2OQNr8Ptc9d7pbA7Azq/ReaI3FpA==", + "type": "package", + "path": "documentformat.openxml/3.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "documentformat.openxml.3.5.1.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net10.0/DocumentFormat.OpenXml.dll", + "lib/net10.0/DocumentFormat.OpenXml.xml", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/net8.0/DocumentFormat.OpenXml.dll", + "lib/net8.0/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "DocumentFormat.OpenXml.Framework/3.5.1": { + "sha512": "U5txtc3ORno73xQx9Lf2gWzfaSZnZwKHfLkTAslhlew9lxe5XbUiCt0dY1fHeAf8yRqszUAe5i/+xLC9R/Xfsw==", + "type": "package", + "path": "documentformat.openxml.framework/3.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "documentformat.openxml.framework.3.5.1.nupkg.sha512", + "documentformat.openxml.framework.nuspec", + "icon.png", + "lib/net10.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net10.0/DocumentFormat.OpenXml.Framework.xml", + "lib/net35/DocumentFormat.OpenXml.Framework.dll", + "lib/net35/DocumentFormat.OpenXml.Framework.xml", + "lib/net40/DocumentFormat.OpenXml.Framework.dll", + "lib/net40/DocumentFormat.OpenXml.Framework.xml", + "lib/net46/DocumentFormat.OpenXml.Framework.dll", + "lib/net46/DocumentFormat.OpenXml.Framework.xml", + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net6.0/DocumentFormat.OpenXml.Framework.xml", + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net8.0/DocumentFormat.OpenXml.Framework.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/13.0.4": { + "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", + "type": "package", + "path": "newtonsoft.json/13.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.4.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Svg/3.4.7": { + "sha512": "Omez7ly5BGhg3OzdV+LHZ5sI0+JQ6hF7WVKUeyHw4jRvcEWNCPCf1MWMBaf+R0DRBSZHx5EUHwBTEF+2oYtsAw==", + "type": "package", + "path": "svg/3.4.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Svg.dll", + "lib/net462/Svg.xml", + "lib/net472/Svg.dll", + "lib/net472/Svg.xml", + "lib/net481/Svg.dll", + "lib/net481/Svg.xml", + "lib/net6.0/Svg.dll", + "lib/net6.0/Svg.xml", + "lib/net8.0/Svg.dll", + "lib/net8.0/Svg.xml", + "lib/netcoreapp3.1/Svg.dll", + "lib/netcoreapp3.1/Svg.xml", + "lib/netstandard2.0/Svg.dll", + "lib/netstandard2.0/Svg.xml", + "lib/netstandard2.1/Svg.dll", + "lib/netstandard2.1/Svg.xml", + "svg-logo-v.png", + "svg.3.4.7.nupkg.sha512", + "svg.nuspec" + ] + }, + "System.Drawing.Common/5.0.3": { + "sha512": "rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==", + "type": "package", + "path": "system.drawing.common/5.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.5.0.3.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Packaging/8.0.1": { + "sha512": "KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "type": "package", + "path": "system.io.packaging/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Packaging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "lib/net462/System.IO.Packaging.dll", + "lib/net462/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/net7.0/System.IO.Packaging.dll", + "lib/net7.0/System.IO.Packaging.xml", + "lib/net8.0/System.IO.Packaging.dll", + "lib/net8.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.8.0.1.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "DCIT.Core/1.0.0": { + "type": "project", + "path": "../DCIT.Core/DCIT.Core.csproj", + "msbuildProject": "../DCIT.Core/DCIT.Core.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0-windows7.0": [ + "DCIT.Core >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\ly282\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\DCIT.App.csproj", + "projectName": "DCIT.App", + "projectPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\DCIT.App.csproj", + "packagesPath": "C:\\Users\\ly282\\.nuget\\packages\\", + "outputPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\ly282\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": { + "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\DCIT.Core.csproj": { + "projectPath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.Core\\DCIT.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Crossgen2.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", + "version": "[6.0.36, 6.0.36]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.428\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..354b8c8 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,22 @@ +{ + "version": 2, + "dgSpecHash": "iK7TpcGmcb1lowRqXNHLH/cUlCcZDLSAua/Zyvb39d3fQ9EscC9U4i1KuY32OFD3+ZncPpF0ThCa2tAPDFNleA==", + "success": true, + "projectFilePath": "E:\\projects\\wxwx\\projects_job\\GeneralRequirement\\WORD文档替换与还原工具\\codex\\DCIT\\src\\DCIT.App\\DCIT.App.csproj", + "expectedPackageFiles": [ + "C:\\Users\\ly282\\.nuget\\packages\\documentformat.openxml\\3.5.1\\documentformat.openxml.3.5.1.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\documentformat.openxml.framework\\3.5.1\\documentformat.openxml.framework.3.5.1.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\newtonsoft.json\\13.0.4\\newtonsoft.json.13.0.4.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\svg\\3.4.7\\svg.3.4.7.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\system.drawing.common\\5.0.3\\system.drawing.common.5.0.3.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\system.io.packaging\\8.0.1\\system.io.packaging.8.0.1.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\6.0.36\\microsoft.netcore.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\6.0.36\\microsoft.windowsdesktop.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\6.0.36\\microsoft.aspnetcore.app.runtime.win-x64.6.0.36.nupkg.sha512", + "C:\\Users\\ly282\\.nuget\\packages\\microsoft.netcore.app.crossgen2.win-x64\\6.0.36\\microsoft.netcore.app.crossgen2.win-x64.6.0.36.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/obj/x64/Release/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/obj/x64/Release/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/obj/x64/Release/net48/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/obj/x64/Release/net48/DCIT.App.AssemblyInfo.cs b/obj/x64/Release/net48/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..94fa8a2 --- /dev/null +++ b/obj/x64/Release/net48/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/x64/Release/net48/DCIT.App.AssemblyInfoInputs.cache b/obj/x64/Release/net48/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d8f6261 --- /dev/null +++ b/obj/x64/Release/net48/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cfdf085f448b7845532730a4703eb0cbe26d32e567bcf8dc69c93e03d970993c diff --git a/obj/x64/Release/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/x64/Release/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..63b0878 --- /dev/null +++ b/obj/x64/Release/net48/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,14 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = D:\projects\DCIT\src\DCIT.App\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/x64/Release/net48/DCIT.App.assets.cache b/obj/x64/Release/net48/DCIT.App.assets.cache new file mode 100644 index 0000000..7bf668b Binary files /dev/null and b/obj/x64/Release/net48/DCIT.App.assets.cache differ diff --git a/obj/x64/Release/net48/DCIT.App.csproj.AssemblyReference.cache b/obj/x64/Release/net48/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0ec7906 Binary files /dev/null and b/obj/x64/Release/net48/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/x64/Release/net48/DCIT.App.csproj.CoreCompileInputs.cache b/obj/x64/Release/net48/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..930e056 --- /dev/null +++ b/obj/x64/Release/net48/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7c05ef26f7a3b2c8c4113e93e294918c8be94456180c3815ccf430361ed5f6f1 diff --git a/obj/x64/Release/net48/DCIT.App.csproj.FileListAbsolute.txt b/obj/x64/Release/net48/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..7da37af --- /dev/null +++ b/obj/x64/Release/net48/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,23 @@ +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\tools\DocTo\docto.exe +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\DCIT.App.exe.config +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\DCIT.App.exe +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\DCIT.App.pdb +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\DocumentFormat.OpenXml.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\DocumentFormat.OpenXml.Framework.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\ExCSS.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\Newtonsoft.Json.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\Svg.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\System.Buffers.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\System.Memory.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\System.Numerics.Vectors.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\System.Runtime.CompilerServices.Unsafe.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\DCIT.Core.dll +D:\projects\DCIT\src\DCIT.App\bin\x64\Release\net48\DCIT.Core.pdb +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.csproj.AssemblyReference.cache +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.AssemblyInfoInputs.cache +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.AssemblyInfo.cs +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.csproj.CoreCompileInputs.cache +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.csproj.Up2Date +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.exe +D:\projects\DCIT\src\DCIT.App\obj\x64\Release\net48\DCIT.App.pdb diff --git a/obj/x64/Release/net48/DCIT.App.csproj.Up2Date b/obj/x64/Release/net48/DCIT.App.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/x64/Release/net48/DCIT.App.exe b/obj/x64/Release/net48/DCIT.App.exe new file mode 100644 index 0000000..8754dce Binary files /dev/null and b/obj/x64/Release/net48/DCIT.App.exe differ diff --git a/obj/x64/Release/net48/DCIT.App.exe.withSupportedRuntime.config b/obj/x64/Release/net48/DCIT.App.exe.withSupportedRuntime.config new file mode 100644 index 0000000..8e342a9 --- /dev/null +++ b/obj/x64/Release/net48/DCIT.App.exe.withSupportedRuntime.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/x64/Release/net48/DCIT.App.pdb b/obj/x64/Release/net48/DCIT.App.pdb new file mode 100644 index 0000000..d208790 Binary files /dev/null and b/obj/x64/Release/net48/DCIT.App.pdb differ diff --git a/obj/x64/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/x64/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/x64/Release/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.AssemblyInfo.cs b/obj/x64/Release/net6.0-windows/DCIT.App.AssemblyInfo.cs new file mode 100644 index 0000000..ed44de9 --- /dev/null +++ b/obj/x64/Release/net6.0-windows/DCIT.App.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("DCIT.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache b/obj/x64/Release/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache new file mode 100644 index 0000000..55cc088 --- /dev/null +++ b/obj/x64/Release/net6.0-windows/DCIT.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3456bb072ad02ec2080b4e888dde1f10de0edaea diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig b/obj/x64/Release/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9857d5e --- /dev/null +++ b/obj/x64/Release/net6.0-windows/DCIT.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = DCIT.App +build_property.ProjectDir = E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\ diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.assets.cache b/obj/x64/Release/net6.0-windows/DCIT.App.assets.cache new file mode 100644 index 0000000..f0f52e8 Binary files /dev/null and b/obj/x64/Release/net6.0-windows/DCIT.App.assets.cache differ diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache b/obj/x64/Release/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache new file mode 100644 index 0000000..db10e11 Binary files /dev/null and b/obj/x64/Release/net6.0-windows/DCIT.App.csproj.AssemblyReference.cache differ diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.csproj.CopyComplete b/obj/x64/Release/net6.0-windows/DCIT.App.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache b/obj/x64/Release/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e771f69 --- /dev/null +++ b/obj/x64/Release/net6.0-windows/DCIT.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c48043929a863872700cc6c43bca898c577c3647 diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt b/obj/x64/Release/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9e12b15 --- /dev/null +++ b/obj/x64/Release/net6.0-windows/DCIT.App.csproj.FileListAbsolute.txt @@ -0,0 +1,25 @@ +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\tools\DocTo\docto.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DCIT.App.exe +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DCIT.App.deps.json +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DCIT.App.runtimeconfig.json +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DCIT.App.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DocumentFormat.OpenXml.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DocumentFormat.OpenXml.Framework.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\ExCSS.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\Newtonsoft.Json.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\Svg.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\System.IO.Packaging.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DCIT.Core.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\bin\x64\Release\net6.0-windows\DCIT.Core.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.csproj.AssemblyReference.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.GeneratedMSBuildEditorConfig.editorconfig +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.AssemblyInfoInputs.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.AssemblyInfo.cs +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.csproj.CoreCompileInputs.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.csproj.CopyComplete +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\refint\DCIT.App.dll +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.pdb +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\DCIT.App.genruntimeconfig.cache +E:\projects\wxwx\projects_job\GeneralRequirement\WORD文档替换与还原工具\codex\DCIT\src\DCIT.App\obj\x64\Release\net6.0-windows\ref\DCIT.App.dll diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.dll b/obj/x64/Release/net6.0-windows/DCIT.App.dll new file mode 100644 index 0000000..4d40bac Binary files /dev/null and b/obj/x64/Release/net6.0-windows/DCIT.App.dll differ diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.genruntimeconfig.cache b/obj/x64/Release/net6.0-windows/DCIT.App.genruntimeconfig.cache new file mode 100644 index 0000000..e918e78 --- /dev/null +++ b/obj/x64/Release/net6.0-windows/DCIT.App.genruntimeconfig.cache @@ -0,0 +1 @@ +69f7bb7599b093073af5b6fb6d305a12e0513957 diff --git a/obj/x64/Release/net6.0-windows/DCIT.App.pdb b/obj/x64/Release/net6.0-windows/DCIT.App.pdb new file mode 100644 index 0000000..1c4ac20 Binary files /dev/null and b/obj/x64/Release/net6.0-windows/DCIT.App.pdb differ diff --git a/obj/x64/Release/net6.0-windows/apphost.exe b/obj/x64/Release/net6.0-windows/apphost.exe new file mode 100644 index 0000000..961d767 Binary files /dev/null and b/obj/x64/Release/net6.0-windows/apphost.exe differ diff --git a/obj/x64/Release/net6.0-windows/ref/DCIT.App.dll b/obj/x64/Release/net6.0-windows/ref/DCIT.App.dll new file mode 100644 index 0000000..46343f1 Binary files /dev/null and b/obj/x64/Release/net6.0-windows/ref/DCIT.App.dll differ diff --git a/obj/x64/Release/net6.0-windows/refint/DCIT.App.dll b/obj/x64/Release/net6.0-windows/refint/DCIT.App.dll new file mode 100644 index 0000000..46343f1 Binary files /dev/null and b/obj/x64/Release/net6.0-windows/refint/DCIT.App.dll differ