diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..277dc3d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+# Build output
+bin/
+obj/
+
+# User-specific files
+*.user
+*.suo
+.vs/
+
+# NuGet
+*.nupkg
+packages/
+
+# Publish output
+publish/
diff --git a/UpdateService/App.config b/UpdateService/App.config
deleted file mode 100644
index e224a6a..0000000
--- a/UpdateService/App.config
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/MainWindow.xaml.cs b/UpdateService/MainWindow.xaml.cs
index 0ecb0ed..ac1fc84 100644
--- a/UpdateService/MainWindow.xaml.cs
+++ b/UpdateService/MainWindow.xaml.cs
@@ -27,7 +27,7 @@ private void LoadSettings()
try
{
var json = File.ReadAllText(AppSettingsPath);
- var doc = JsonDocument.Parse(json);
+ using var doc = JsonDocument.Parse(json);
if (doc.RootElement.TryGetProperty("DestinationFilePath", out var dest))
TxtDestinationFilePath.Text = dest.GetString() ?? string.Empty;
diff --git a/UpdateService/UpdateService.cs b/UpdateService/UpdateService.cs
index e0fd27a..36ab8f0 100644
--- a/UpdateService/UpdateService.cs
+++ b/UpdateService/UpdateService.cs
@@ -1,6 +1,5 @@
using System.Diagnostics;
using System.IO;
-using System.Text.RegularExpressions;
namespace UpdateService
{
@@ -40,7 +39,6 @@ public async Task ExecuteAsync()
///
private async Task ExecuteServiceAsync()
{
- const string pattern = @".+\\";
var folderNames = GetFolderName(_serviceFilePath);
if (folderNames.Count == 0)
@@ -68,16 +66,16 @@ private async Task ExecuteServiceAsync()
switch (_executeMode)
{
case ExecuteModeEnum.Complete:
- await UnInstallAsync(unInstalls, pattern, destinationFilePath, folderName);
+ await UnInstallAsync(unInstalls, destinationFilePath, folderName);
OverWriteDestinationFile(destinationFilePath, serviceFilePath, folderName);
- await InstallAsync(installs, pattern, destinationFilePath, folderName);
+ await InstallAsync(installs, destinationFilePath, folderName);
break;
case ExecuteModeEnum.UnInstall:
- await UnInstallAsync(unInstalls, pattern, destinationFilePath, folderName);
+ await UnInstallAsync(unInstalls, destinationFilePath, folderName);
break;
case ExecuteModeEnum.Install:
OverWriteDestinationFile(destinationFilePath, serviceFilePath, folderName);
- await InstallAsync(installs, pattern, destinationFilePath, folderName);
+ await InstallAsync(installs, destinationFilePath, folderName);
break;
default:
_log("錯誤資訊:請確認安裝模式是否設定正確");
@@ -122,10 +120,9 @@ private async Task ExecuteProcessAsync(string workingDirectory, string fileName)
///
/// 執行安裝流程
///
- private async Task InstallAsync(string[] installs, string pattern, string destinationFilePath, string folderName)
+ private async Task InstallAsync(string[] installs, string destinationFilePath, string folderName)
{
- var match = Regex.Match(installs[0], pattern);
- var batFile = installs[0].Replace(match.Value, "");
+ var batFile = Path.GetFileName(installs[0]);
_log($"開始執行 安裝 {folderName} 服務");
await ExecuteProcessAsync(destinationFilePath, batFile);
}
@@ -133,10 +130,9 @@ private async Task InstallAsync(string[] installs, string pattern, string destin
///
/// 執行解除安裝流程
///
- private async Task UnInstallAsync(string[] unInstalls, string pattern, string destinationFilePath, string folderName)
+ private async Task UnInstallAsync(string[] unInstalls, string destinationFilePath, string folderName)
{
- var match = Regex.Match(unInstalls[0], pattern);
- var batFile = unInstalls[0].Replace(match.Value, "");
+ var batFile = Path.GetFileName(unInstalls[0]);
_log($"開始執行 解除安裝 {folderName} 服務");
await ExecuteProcessAsync(destinationFilePath, batFile);
}
@@ -166,10 +162,12 @@ private void OverWriteDestinationFile(string destinationFilePath, string service
catch (UnauthorizedAccessException)
{
_log($"錯誤資訊:覆寫 {folderName} 資料夾權限不足");
+ throw;
}
catch (DirectoryNotFoundException e)
{
_log($"錯誤資訊:{e.Message} 檔案遺失");
+ throw;
}
}
@@ -183,7 +181,10 @@ private static List GetFolderName(string filePath)
if (directories.Length == 0)
return names;
- names.AddRange(directories.Select(Path.GetFileNameWithoutExtension).Where(n => n != null)!);
+ names.AddRange(directories
+ .Select(Path.GetFileNameWithoutExtension)
+ .Where(n => !string.IsNullOrEmpty(n))
+ .Select(n => n!));
return names;
}
}
diff --git a/UpdateService/bin/Debug/UpdateService.application b/UpdateService/bin/Debug/UpdateService.application
deleted file mode 100644
index 04099e8..0000000
--- a/UpdateService/bin/Debug/UpdateService.application
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- fks7ritTDlY7KXLeojSTTzm0hYK/etRoNDqCGv72CH0=
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/bin/Debug/UpdateService.exe b/UpdateService/bin/Debug/UpdateService.exe
deleted file mode 100644
index 1ba9505..0000000
Binary files a/UpdateService/bin/Debug/UpdateService.exe and /dev/null differ
diff --git a/UpdateService/bin/Debug/UpdateService.exe.config b/UpdateService/bin/Debug/UpdateService.exe.config
deleted file mode 100644
index e224a6a..0000000
--- a/UpdateService/bin/Debug/UpdateService.exe.config
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/bin/Debug/UpdateService.exe.manifest b/UpdateService/bin/Debug/UpdateService.exe.manifest
deleted file mode 100644
index de80f34..0000000
--- a/UpdateService/bin/Debug/UpdateService.exe.manifest
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HHa/+7DP8a9bToWYeNatf608owE2njQO93Q3eOlVhdE=
-
-
-
-
-
-
-
-
-
- 2OUfAEqWYdLq7egrOh8rP9EfclhdTvLoFv6xZKMUKtE=
-
-
-
\ No newline at end of file
diff --git a/UpdateService/bin/Debug/UpdateService.pdb b/UpdateService/bin/Debug/UpdateService.pdb
deleted file mode 100644
index 93e94f7..0000000
Binary files a/UpdateService/bin/Debug/UpdateService.pdb and /dev/null differ
diff --git a/UpdateService/bin/Debug/app.publish/UpdateService.exe b/UpdateService/bin/Debug/app.publish/UpdateService.exe
deleted file mode 100644
index b622444..0000000
Binary files a/UpdateService/bin/Debug/app.publish/UpdateService.exe and /dev/null differ
diff --git a/UpdateService/bin/Debug/net8.0-windows/UpdateService b/UpdateService/bin/Debug/net8.0-windows/UpdateService
deleted file mode 100755
index 2b2fb3a..0000000
Binary files a/UpdateService/bin/Debug/net8.0-windows/UpdateService and /dev/null differ
diff --git a/UpdateService/bin/Debug/net8.0-windows/UpdateService.deps.json b/UpdateService/bin/Debug/net8.0-windows/UpdateService.deps.json
deleted file mode 100644
index 319ed77..0000000
--- a/UpdateService/bin/Debug/net8.0-windows/UpdateService.deps.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "UpdateService/1.0.0": {
- "runtime": {
- "UpdateService.dll": {}
- }
- }
- }
- },
- "libraries": {
- "UpdateService/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll b/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll
deleted file mode 100644
index 68ca380..0000000
Binary files a/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll and /dev/null differ
diff --git a/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll.config b/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll.config
deleted file mode 100644
index e224a6a..0000000
--- a/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll.config
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/bin/Debug/net8.0-windows/UpdateService.pdb b/UpdateService/bin/Debug/net8.0-windows/UpdateService.pdb
deleted file mode 100644
index 7591117..0000000
Binary files a/UpdateService/bin/Debug/net8.0-windows/UpdateService.pdb and /dev/null differ
diff --git a/UpdateService/bin/Debug/net8.0-windows/UpdateService.runtimeconfig.json b/UpdateService/bin/Debug/net8.0-windows/UpdateService.runtimeconfig.json
deleted file mode 100644
index c7a4117..0000000
--- a/UpdateService/bin/Debug/net8.0-windows/UpdateService.runtimeconfig.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net8.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "8.0.0"
- },
- {
- "name": "Microsoft.WindowsDesktop.App",
- "version": "8.0.0"
- }
- ],
- "configProperties": {
- "CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
- }
- }
-}
\ No newline at end of file
diff --git a/UpdateService/bin/Debug/net8.0-windows/appsettings.json b/UpdateService/bin/Debug/net8.0-windows/appsettings.json
deleted file mode 100644
index 70390b6..0000000
--- a/UpdateService/bin/Debug/net8.0-windows/appsettings.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "DestinationFilePath": "C:\\Program Files (x86)\\Service",
- "ExecuteMode": "Complete"
-}
diff --git a/UpdateService/bin/Release/UpdateService.application b/UpdateService/bin/Release/UpdateService.application
deleted file mode 100644
index be606af..0000000
--- a/UpdateService/bin/Release/UpdateService.application
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ZiBUYDl+v7YpnmFucIV2rbZ34DfHBweOvoC3xMCdrYk=
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/bin/Release/UpdateService.exe b/UpdateService/bin/Release/UpdateService.exe
deleted file mode 100644
index e26aea6..0000000
Binary files a/UpdateService/bin/Release/UpdateService.exe and /dev/null differ
diff --git a/UpdateService/bin/Release/UpdateService.exe.config b/UpdateService/bin/Release/UpdateService.exe.config
deleted file mode 100644
index e224a6a..0000000
--- a/UpdateService/bin/Release/UpdateService.exe.config
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/bin/Release/UpdateService.exe.manifest b/UpdateService/bin/Release/UpdateService.exe.manifest
deleted file mode 100644
index 9611247..0000000
--- a/UpdateService/bin/Release/UpdateService.exe.manifest
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TRoZJCcmtMrXwsOATcD/Pjaiiy/148oUKuveb4LUSNY=
-
-
-
-
-
-
-
-
-
- 2OUfAEqWYdLq7egrOh8rP9EfclhdTvLoFv6xZKMUKtE=
-
-
-
\ No newline at end of file
diff --git a/UpdateService/bin/Release/UpdateService.pdb b/UpdateService/bin/Release/UpdateService.pdb
deleted file mode 100644
index a4825c8..0000000
Binary files a/UpdateService/bin/Release/UpdateService.pdb and /dev/null differ
diff --git a/UpdateService/bin/Release/app.publish/UpdateService.exe b/UpdateService/bin/Release/app.publish/UpdateService.exe
deleted file mode 100644
index 768c083..0000000
Binary files a/UpdateService/bin/Release/app.publish/UpdateService.exe and /dev/null differ
diff --git a/UpdateService/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/UpdateService/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs
deleted file mode 100644
index 15efebf..0000000
--- a/UpdateService/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
diff --git a/UpdateService/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/UpdateService/obj/Debug/DesignTimeResolveAssemblyReferences.cache
deleted file mode 100644
index 0b7cd84..0000000
Binary files a/UpdateService/obj/Debug/DesignTimeResolveAssemblyReferences.cache and /dev/null differ
diff --git a/UpdateService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/UpdateService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
deleted file mode 100644
index 83002ce..0000000
Binary files a/UpdateService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ
diff --git a/UpdateService/obj/Debug/UpdateService.application b/UpdateService/obj/Debug/UpdateService.application
deleted file mode 100644
index 04099e8..0000000
--- a/UpdateService/obj/Debug/UpdateService.application
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- fks7ritTDlY7KXLeojSTTzm0hYK/etRoNDqCGv72CH0=
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/obj/Debug/UpdateService.csproj.AssemblyReference.cache b/UpdateService/obj/Debug/UpdateService.csproj.AssemblyReference.cache
deleted file mode 100644
index 147c651..0000000
Binary files a/UpdateService/obj/Debug/UpdateService.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/UpdateService/obj/Debug/UpdateService.csproj.CoreCompileInputs.cache b/UpdateService/obj/Debug/UpdateService.csproj.CoreCompileInputs.cache
deleted file mode 100644
index aeeb767..0000000
--- a/UpdateService/obj/Debug/UpdateService.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-e4e9347b560a8b1122bd0c01f6c469b92df4ca29
diff --git a/UpdateService/obj/Debug/UpdateService.csproj.FileListAbsolute.txt b/UpdateService/obj/Debug/UpdateService.csproj.FileListAbsolute.txt
deleted file mode 100644
index 6da42f0..0000000
--- a/UpdateService/obj/Debug/UpdateService.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\bin\Debug\UpdateService.exe.config
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\bin\Debug\UpdateService.exe
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\bin\Debug\UpdateService.pdb
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\obj\Debug\UpdateService.csproj.AssemblyReference.cache
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\obj\Debug\UpdateService.csproj.SuggestedBindingRedirects.cache
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\obj\Debug\UpdateService.csproj.CoreCompileInputs.cache
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\obj\Debug\UpdateService.exe
-D:\Project\CSS\MSS_API_2023\Service\UpdateService\UpdateService\obj\Debug\UpdateService.pdb
-C:\Project\UpdateService\UpdateService\bin\Debug\UpdateService.exe.config
-C:\Project\UpdateService\UpdateService\bin\Debug\UpdateService.exe
-C:\Project\UpdateService\UpdateService\bin\Debug\UpdateService.pdb
-C:\Project\UpdateService\UpdateService\obj\Debug\UpdateService.csproj.AssemblyReference.cache
-C:\Project\UpdateService\UpdateService\obj\Debug\UpdateService.csproj.SuggestedBindingRedirects.cache
-C:\Project\UpdateService\UpdateService\obj\Debug\UpdateService.csproj.CoreCompileInputs.cache
-C:\Project\UpdateService\UpdateService\obj\Debug\UpdateService.exe
-C:\Project\UpdateService\UpdateService\obj\Debug\UpdateService.pdb
-C:\Project\UpdateService\UpdateService\bin\Debug\UpdateService.exe.manifest
-C:\Project\UpdateService\UpdateService\bin\Debug\UpdateService.application
-C:\Project\UpdateService\UpdateService\obj\Debug\UpdateService.exe.manifest
-C:\Project\UpdateService\UpdateService\obj\Debug\UpdateService.application
diff --git a/UpdateService/obj/Debug/UpdateService.csproj.SuggestedBindingRedirects.cache b/UpdateService/obj/Debug/UpdateService.csproj.SuggestedBindingRedirects.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/UpdateService/obj/Debug/UpdateService.exe b/UpdateService/obj/Debug/UpdateService.exe
deleted file mode 100644
index 1ba9505..0000000
Binary files a/UpdateService/obj/Debug/UpdateService.exe and /dev/null differ
diff --git a/UpdateService/obj/Debug/UpdateService.exe.manifest b/UpdateService/obj/Debug/UpdateService.exe.manifest
deleted file mode 100644
index de80f34..0000000
--- a/UpdateService/obj/Debug/UpdateService.exe.manifest
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- HHa/+7DP8a9bToWYeNatf608owE2njQO93Q3eOlVhdE=
-
-
-
-
-
-
-
-
-
- 2OUfAEqWYdLq7egrOh8rP9EfclhdTvLoFv6xZKMUKtE=
-
-
-
\ No newline at end of file
diff --git a/UpdateService/obj/Debug/UpdateService.pdb b/UpdateService/obj/Debug/UpdateService.pdb
deleted file mode 100644
index 93e94f7..0000000
Binary files a/UpdateService/obj/Debug/UpdateService.pdb and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/UpdateService/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/UpdateService/obj/Debug/net8.0-windows/App.g.cs b/UpdateService/obj/Debug/net8.0-windows/App.g.cs
deleted file mode 100644
index 66db237..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/App.g.cs
+++ /dev/null
@@ -1,70 +0,0 @@
-#pragma checksum "../../../App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C8433635E38D9E16C58692D688483058C980FACD"
-//------------------------------------------------------------------------------
-//
-// 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.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Controls.Ribbon;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Forms.Integration;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace UpdateService {
-
-
- ///
- /// App
- ///
- public partial class App : System.Windows.Application {
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "10.0.5.0")]
- public void InitializeComponent() {
-
- #line 4 "../../../App.xaml"
- this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
-
- #line default
- #line hidden
- }
-
- ///
- /// Application Entry Point.
- ///
- [System.STAThreadAttribute()]
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "10.0.5.0")]
- public static void Main() {
- UpdateService.App app = new UpdateService.App();
- app.InitializeComponent();
- app.Run();
- }
- }
-}
-
diff --git a/UpdateService/obj/Debug/net8.0-windows/MainWindow.baml b/UpdateService/obj/Debug/net8.0-windows/MainWindow.baml
deleted file mode 100644
index e3b1824..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/MainWindow.baml and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/MainWindow.g.cs b/UpdateService/obj/Debug/net8.0-windows/MainWindow.g.cs
deleted file mode 100644
index 1ffccd7..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/MainWindow.g.cs
+++ /dev/null
@@ -1,164 +0,0 @@
-#pragma checksum "../../../MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C983908AC8999C3BDF1F78C863819082253A957A"
-//------------------------------------------------------------------------------
-//
-// 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.Diagnostics;
-using System.Windows;
-using System.Windows.Automation;
-using System.Windows.Controls;
-using System.Windows.Controls.Primitives;
-using System.Windows.Controls.Ribbon;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Forms.Integration;
-using System.Windows.Ink;
-using System.Windows.Input;
-using System.Windows.Markup;
-using System.Windows.Media;
-using System.Windows.Media.Animation;
-using System.Windows.Media.Effects;
-using System.Windows.Media.Imaging;
-using System.Windows.Media.Media3D;
-using System.Windows.Media.TextFormatting;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Shell;
-
-
-namespace UpdateService {
-
-
- ///
- /// MainWindow
- ///
- public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
-
-
- #line 37 "../../../MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox TxtDestinationFilePath;
-
- #line default
- #line hidden
-
-
- #line 49 "../../../MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.ComboBox CmbExecuteMode;
-
- #line default
- #line hidden
-
-
- #line 60 "../../../MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button BtnExecute;
-
- #line default
- #line hidden
-
-
- #line 64 "../../../MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.Button BtnClearLog;
-
- #line default
- #line hidden
-
-
- #line 72 "../../../MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBlock TxtServiceFilesHint;
-
- #line default
- #line hidden
-
-
- #line 79 "../../../MainWindow.xaml"
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
- internal System.Windows.Controls.TextBox TxtLog;
-
- #line default
- #line hidden
-
- private bool _contentLoaded;
-
- ///
- /// InitializeComponent
- ///
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "10.0.5.0")]
- public void InitializeComponent() {
- if (_contentLoaded) {
- return;
- }
- _contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/UpdateService;component/mainwindow.xaml", System.UriKind.Relative);
-
- #line 1 "../../../MainWindow.xaml"
- System.Windows.Application.LoadComponent(this, resourceLocater);
-
- #line default
- #line hidden
- }
-
- [System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "10.0.5.0")]
- [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
- void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
- switch (connectionId)
- {
- case 1:
- this.TxtDestinationFilePath = ((System.Windows.Controls.TextBox)(target));
- return;
- case 2:
-
- #line 42 "../../../MainWindow.xaml"
- ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnBrowse_Click);
-
- #line default
- #line hidden
- return;
- case 3:
- this.CmbExecuteMode = ((System.Windows.Controls.ComboBox)(target));
- return;
- case 4:
- this.BtnExecute = ((System.Windows.Controls.Button)(target));
-
- #line 63 "../../../MainWindow.xaml"
- this.BtnExecute.Click += new System.Windows.RoutedEventHandler(this.BtnExecute_Click);
-
- #line default
- #line hidden
- return;
- case 5:
- this.BtnClearLog = ((System.Windows.Controls.Button)(target));
-
- #line 67 "../../../MainWindow.xaml"
- this.BtnClearLog.Click += new System.Windows.RoutedEventHandler(this.BtnClearLog_Click);
-
- #line default
- #line hidden
- return;
- case 6:
- this.TxtServiceFilesHint = ((System.Windows.Controls.TextBlock)(target));
- return;
- case 7:
- this.TxtLog = ((System.Windows.Controls.TextBox)(target));
- return;
- }
- this._contentLoaded = true;
- }
- }
-}
-
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfo.cs b/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfo.cs
deleted file mode 100644
index 9cfe990..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfo.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("UpdateService")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+db4f94849f17a2bfbea3e9488afbc4df33ffe002")]
-[assembly: System.Reflection.AssemblyProductAttribute("UpdateService")]
-[assembly: System.Reflection.AssemblyTitleAttribute("UpdateService")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
-[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfoInputs.cache b/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfoInputs.cache
deleted file mode 100644
index 95a7bc0..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-c8a80b5c3550a29e41c1d37ef6ba4fe6e6f4637af3e3a0922f4e29104789acb5
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.GeneratedMSBuildEditorConfig.editorconfig b/UpdateService/obj/Debug/net8.0-windows/UpdateService.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 6f19796..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,24 +0,0 @@
-is_global = true
-build_property.ApplicationManifest =
-build_property.StartupObject =
-build_property.ApplicationDefaultFont =
-build_property.ApplicationHighDpiMode =
-build_property.ApplicationUseCompatibleTextRendering =
-build_property.ApplicationVisualStyles =
-build_property.TargetFramework = net8.0-windows
-build_property.TargetFrameworkIdentifier = .NETCoreApp
-build_property.TargetFrameworkVersion = v8.0
-build_property.TargetPlatformMinVersion = 7.0
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = UpdateService
-build_property.ProjectDir = /home/runner/work/UpdateService/UpdateService/UpdateService/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.CsWinRTUseWindowsUIXamlProjections = false
-build_property.EffectiveAnalysisLevelStyle = 8.0
-build_property.EnableCodeStyleSeverity =
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.GlobalUsings.g.cs b/UpdateService/obj/Debug/net8.0-windows/UpdateService.GlobalUsings.g.cs
deleted file mode 100644
index 3c55c3d..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-global using System;
-global using System.Collections.Generic;
-global using System.Drawing;
-global using System.Linq;
-global using System.Threading;
-global using System.Threading.Tasks;
-global using System.Windows.Forms;
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.assets.cache b/UpdateService/obj/Debug/net8.0-windows/UpdateService.assets.cache
deleted file mode 100644
index 4aee57b..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/UpdateService.assets.cache and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.csproj.CoreCompileInputs.cache b/UpdateService/obj/Debug/net8.0-windows/UpdateService.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 1da3653..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-72806bafcd2f452cf2a455d54bf368e9fbb60e1e2d970d8cb533df431a12596c
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.csproj.FileListAbsolute.txt b/UpdateService/obj/Debug/net8.0-windows/UpdateService.csproj.FileListAbsolute.txt
deleted file mode 100644
index 0c69451..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/MainWindow.baml
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/MainWindow.g.cs
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/App.g.cs
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService_MarkupCompile.cache
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.g.resources
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.GeneratedMSBuildEditorConfig.editorconfig
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfoInputs.cache
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.AssemblyInfo.cs
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.csproj.CoreCompileInputs.cache
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.sourcelink.json
-/home/runner/work/UpdateService/UpdateService/UpdateService/bin/Debug/net8.0-windows/appsettings.json
-/home/runner/work/UpdateService/UpdateService/UpdateService/bin/Debug/net8.0-windows/UpdateService
-/home/runner/work/UpdateService/UpdateService/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll.config
-/home/runner/work/UpdateService/UpdateService/UpdateService/bin/Debug/net8.0-windows/UpdateService.deps.json
-/home/runner/work/UpdateService/UpdateService/UpdateService/bin/Debug/net8.0-windows/UpdateService.runtimeconfig.json
-/home/runner/work/UpdateService/UpdateService/UpdateService/bin/Debug/net8.0-windows/UpdateService.dll
-/home/runner/work/UpdateService/UpdateService/UpdateService/bin/Debug/net8.0-windows/UpdateService.pdb
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.dll
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/refint/UpdateService.dll
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.pdb
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/UpdateService.genruntimeconfig.cache
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/ref/UpdateService.dll
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.dll b/UpdateService/obj/Debug/net8.0-windows/UpdateService.dll
deleted file mode 100644
index 68ca380..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/UpdateService.dll and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.g.resources b/UpdateService/obj/Debug/net8.0-windows/UpdateService.g.resources
deleted file mode 100644
index f0f5db2..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/UpdateService.g.resources and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.genruntimeconfig.cache b/UpdateService/obj/Debug/net8.0-windows/UpdateService.genruntimeconfig.cache
deleted file mode 100644
index cad93e6..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-9fc7b56366c0593dd59e2388b364b4507bca30384cfc85b68469f0d1900d83a1
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.pdb b/UpdateService/obj/Debug/net8.0-windows/UpdateService.pdb
deleted file mode 100644
index 7591117..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/UpdateService.pdb and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService.sourcelink.json b/UpdateService/obj/Debug/net8.0-windows/UpdateService.sourcelink.json
deleted file mode 100644
index 3208130..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"/home/runner/work/UpdateService/UpdateService/*":"https://raw.githubusercontent.com/gb63728f4/UpdateService/db4f94849f17a2bfbea3e9488afbc4df33ffe002/*"}}
\ No newline at end of file
diff --git a/UpdateService/obj/Debug/net8.0-windows/UpdateService_MarkupCompile.cache b/UpdateService/obj/Debug/net8.0-windows/UpdateService_MarkupCompile.cache
deleted file mode 100644
index 9a0c0f4..0000000
--- a/UpdateService/obj/Debug/net8.0-windows/UpdateService_MarkupCompile.cache
+++ /dev/null
@@ -1,20 +0,0 @@
-UpdateService
-
-
-winexe
-C#
-.cs
-/home/runner/work/UpdateService/UpdateService/UpdateService/obj/Debug/net8.0-windows/
-UpdateService
-none
-false
-TRACE;DEBUG;NET;NET8_0;NETCOREAPP;WINDOWS;WINDOWS7_0;NET5_0_OR_GREATER;NET6_0_OR_GREATER;NET7_0_OR_GREATER;NET8_0_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER;WINDOWS7_0_OR_GREATER
-/home/runner/work/UpdateService/UpdateService/UpdateService/App.xaml
-11407045341
-
-5798369306
-2072066036000
-MainWindow.xaml;
-
-False
-
diff --git a/UpdateService/obj/Debug/net8.0-windows/apphost b/UpdateService/obj/Debug/net8.0-windows/apphost
deleted file mode 100755
index 2b2fb3a..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/apphost and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/ref/UpdateService.dll b/UpdateService/obj/Debug/net8.0-windows/ref/UpdateService.dll
deleted file mode 100644
index 63347d5..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/ref/UpdateService.dll and /dev/null differ
diff --git a/UpdateService/obj/Debug/net8.0-windows/refint/UpdateService.dll b/UpdateService/obj/Debug/net8.0-windows/refint/UpdateService.dll
deleted file mode 100644
index 63347d5..0000000
Binary files a/UpdateService/obj/Debug/net8.0-windows/refint/UpdateService.dll and /dev/null differ
diff --git a/UpdateService/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/UpdateService/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs
deleted file mode 100644
index 15efebf..0000000
--- a/UpdateService/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
diff --git a/UpdateService/obj/Release/UpdateService.application b/UpdateService/obj/Release/UpdateService.application
deleted file mode 100644
index be606af..0000000
--- a/UpdateService/obj/Release/UpdateService.application
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ZiBUYDl+v7YpnmFucIV2rbZ34DfHBweOvoC3xMCdrYk=
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/obj/Release/UpdateService.csproj.AssemblyReference.cache b/UpdateService/obj/Release/UpdateService.csproj.AssemblyReference.cache
deleted file mode 100644
index 2a75fe6..0000000
Binary files a/UpdateService/obj/Release/UpdateService.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/UpdateService/obj/Release/UpdateService.csproj.CoreCompileInputs.cache b/UpdateService/obj/Release/UpdateService.csproj.CoreCompileInputs.cache
deleted file mode 100644
index b21ad54..0000000
--- a/UpdateService/obj/Release/UpdateService.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-24693c04215a2b5a1b44d69812a498a5cc4ead7e
diff --git a/UpdateService/obj/Release/UpdateService.csproj.FileListAbsolute.txt b/UpdateService/obj/Release/UpdateService.csproj.FileListAbsolute.txt
deleted file mode 100644
index 130e14e..0000000
--- a/UpdateService/obj/Release/UpdateService.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-C:\Project\UpdateService\UpdateService\bin\Release\UpdateService.exe.config
-C:\Project\UpdateService\UpdateService\bin\Release\UpdateService.exe.manifest
-C:\Project\UpdateService\UpdateService\bin\Release\UpdateService.application
-C:\Project\UpdateService\UpdateService\bin\Release\UpdateService.exe
-C:\Project\UpdateService\UpdateService\bin\Release\UpdateService.pdb
-C:\Project\UpdateService\UpdateService\obj\Release\UpdateService.csproj.AssemblyReference.cache
-C:\Project\UpdateService\UpdateService\obj\Release\UpdateService.csproj.SuggestedBindingRedirects.cache
-C:\Project\UpdateService\UpdateService\obj\Release\UpdateService.csproj.CoreCompileInputs.cache
-C:\Project\UpdateService\UpdateService\obj\Release\UpdateService.exe.manifest
-C:\Project\UpdateService\UpdateService\obj\Release\UpdateService.application
-C:\Project\UpdateService\UpdateService\obj\Release\UpdateService.exe
-C:\Project\UpdateService\UpdateService\obj\Release\UpdateService.pdb
diff --git a/UpdateService/obj/Release/UpdateService.csproj.SuggestedBindingRedirects.cache b/UpdateService/obj/Release/UpdateService.csproj.SuggestedBindingRedirects.cache
deleted file mode 100644
index e69de29..0000000
diff --git a/UpdateService/obj/Release/UpdateService.exe b/UpdateService/obj/Release/UpdateService.exe
deleted file mode 100644
index e26aea6..0000000
Binary files a/UpdateService/obj/Release/UpdateService.exe and /dev/null differ
diff --git a/UpdateService/obj/Release/UpdateService.exe.manifest b/UpdateService/obj/Release/UpdateService.exe.manifest
deleted file mode 100644
index 9611247..0000000
--- a/UpdateService/obj/Release/UpdateService.exe.manifest
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TRoZJCcmtMrXwsOATcD/Pjaiiy/148oUKuveb4LUSNY=
-
-
-
-
-
-
-
-
-
- 2OUfAEqWYdLq7egrOh8rP9EfclhdTvLoFv6xZKMUKtE=
-
-
-
\ No newline at end of file
diff --git a/UpdateService/obj/Release/UpdateService.pdb b/UpdateService/obj/Release/UpdateService.pdb
deleted file mode 100644
index a4825c8..0000000
Binary files a/UpdateService/obj/Release/UpdateService.pdb and /dev/null differ
diff --git a/UpdateService/obj/UpdateService.csproj.nuget.dgspec.json b/UpdateService/obj/UpdateService.csproj.nuget.dgspec.json
deleted file mode 100644
index 0172858..0000000
--- a/UpdateService/obj/UpdateService.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,76 +0,0 @@
-{
- "format": 1,
- "restore": {
- "/home/runner/work/UpdateService/UpdateService/UpdateService/UpdateService.csproj": {}
- },
- "projects": {
- "/home/runner/work/UpdateService/UpdateService/UpdateService/UpdateService.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/home/runner/work/UpdateService/UpdateService/UpdateService/UpdateService.csproj",
- "projectName": "UpdateService",
- "projectPath": "/home/runner/work/UpdateService/UpdateService/UpdateService/UpdateService.csproj",
- "packagesPath": "/home/runner/.nuget/packages/",
- "outputPath": "/home/runner/work/UpdateService/UpdateService/UpdateService/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/runner/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net8.0-windows"
- ],
- "sources": {
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0-windows7.0": {
- "targetAlias": "net8.0-windows",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "10.0.200"
- },
- "frameworks": {
- "net8.0-windows7.0": {
- "targetAlias": "net8.0-windows",
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.WindowsDesktop.App.Ref",
- "version": "[8.0.25, 8.0.25]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- },
- "Microsoft.WindowsDesktop.App": {
- "privateAssets": "none"
- }
- },
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/UpdateService/obj/UpdateService.csproj.nuget.g.props b/UpdateService/obj/UpdateService.csproj.nuget.g.props
deleted file mode 100644
index 2098f6f..0000000
--- a/UpdateService/obj/UpdateService.csproj.nuget.g.props
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- /home/runner/.nuget/packages/
- /home/runner/.nuget/packages/
- PackageReference
- 7.0.0
-
-
-
-
-
\ No newline at end of file
diff --git a/UpdateService/obj/UpdateService.csproj.nuget.g.targets b/UpdateService/obj/UpdateService.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/UpdateService/obj/UpdateService.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/UpdateService/obj/project.assets.json b/UpdateService/obj/project.assets.json
deleted file mode 100644
index 8e1bb68..0000000
--- a/UpdateService/obj/project.assets.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0-windows7.0": {}
- },
- "libraries": {},
- "projectFileDependencyGroups": {
- "net8.0-windows7.0": []
- },
- "packageFolders": {
- "/home/runner/.nuget/packages/": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/home/runner/work/UpdateService/UpdateService/UpdateService/UpdateService.csproj",
- "projectName": "UpdateService",
- "projectPath": "/home/runner/work/UpdateService/UpdateService/UpdateService/UpdateService.csproj",
- "packagesPath": "/home/runner/.nuget/packages/",
- "outputPath": "/home/runner/work/UpdateService/UpdateService/UpdateService/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/runner/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net8.0-windows"
- ],
- "sources": {
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0-windows7.0": {
- "targetAlias": "net8.0-windows",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "10.0.200"
- },
- "frameworks": {
- "net8.0-windows7.0": {
- "targetAlias": "net8.0-windows",
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.WindowsDesktop.App.Ref",
- "version": "[8.0.25, 8.0.25]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- },
- "Microsoft.WindowsDesktop.App": {
- "privateAssets": "none"
- }
- },
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/UpdateService/obj/project.nuget.cache b/UpdateService/obj/project.nuget.cache
deleted file mode 100644
index b0910da..0000000
--- a/UpdateService/obj/project.nuget.cache
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "o33gdHW90Lk=",
- "success": true,
- "projectFilePath": "/home/runner/work/UpdateService/UpdateService/UpdateService/UpdateService.csproj",
- "expectedPackageFiles": [
- "/home/runner/.nuget/packages/microsoft.windowsdesktop.app.ref/8.0.25/microsoft.windowsdesktop.app.ref.8.0.25.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file