diff --git a/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 b/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2
index 8e84d39..e1bcf70 100644
Binary files a/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 and b/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/43b996a0-2b31-4994-90dd-ca4cd0f2753b.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/43b996a0-2b31-4994-90dd-ca4cd0f2753b.vsidx
deleted file mode 100644
index 16bb154..0000000
Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/43b996a0-2b31-4994-90dd-ca4cd0f2753b.vsidx and /dev/null differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/696d6ae7-49b3-403f-be09-98a5334cd28f.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/696d6ae7-49b3-403f-be09-98a5334cd28f.vsidx
deleted file mode 100644
index a424a39..0000000
Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/696d6ae7-49b3-403f-be09-98a5334cd28f.vsidx and /dev/null differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/6a3e662b-5c8c-4221-bed2-47f34e147b02.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/6a3e662b-5c8c-4221-bed2-47f34e147b02.vsidx
deleted file mode 100644
index 4c71daf..0000000
Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/6a3e662b-5c8c-4221-bed2-47f34e147b02.vsidx and /dev/null differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/c777743b-cea5-4120-9a5b-78a4ed9b93cd.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/c777743b-cea5-4120-9a5b-78a4ed9b93cd.vsidx
new file mode 100644
index 0000000..f5c0c37
Binary files /dev/null and b/.vs/20230724_MBJC_upperpc/FileContentIndex/c777743b-cea5-4120-9a5b-78a4ed9b93cd.vsidx differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/cb9daa87-81dc-4641-8c8e-f95f479e5682.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/cb9daa87-81dc-4641-8c8e-f95f479e5682.vsidx
deleted file mode 100644
index db78a68..0000000
Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/cb9daa87-81dc-4641-8c8e-f95f479e5682.vsidx and /dev/null differ
diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/read.lock b/.vs/20230724_MBJC_upperpc/FileContentIndex/read.lock
deleted file mode 100644
index e69de29..0000000
diff --git a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1 b/.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1
deleted file mode 100644
index c50b8f0..0000000
Binary files a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v6.1 and /dev/null differ
diff --git a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 b/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1
deleted file mode 100644
index fa373ed..0000000
Binary files a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 and /dev/null differ
diff --git a/ViewModels/BeaconViewModel.cs b/ViewModels/BeaconViewModel.cs
index 512487c..75eba9b 100644
--- a/ViewModels/BeaconViewModel.cs
+++ b/ViewModels/BeaconViewModel.cs
@@ -32,32 +32,121 @@ namespace _20230724_MBJC_upperpc.ViewModels
///
public void DoFresh()
{
- float Beacon_JD;
- float Beacon_WD;
- float Beacon_JL;
- float Beacon_HG;
- float Beacon_HG_DIS;
- float Beacon_FY;
- float Beacon_FY_DIS;
- float Beacon_PH;
- float Beacon_PH_DIS;
+ float Beacon_JD = 0;
+ float Beacon_WD = 0;
+ float Beacon_JL = 0;
+ float Beacon_HG = 0;
+ float Beacon_HG_DIS = 0;
+ float Beacon_FY = 0;
+ float Beacon_FY_DIS = 0;
+ float Beacon_PH = 0;
+ float Beacon_PH_DIS = 0;
+ //从配置文件中取得对应的阈值文件
if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon1")))
{
Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon1_JD"));
Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon1_WD"));
Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon1_JL"));
Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon1_HG"));
- Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon1_HG_DIS"));
Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon1_FY"));
-
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon1_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon1_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon1_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon1_PH_DIS"));
}
- else if (true)
+ else if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon2")))
{
-
+ Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon2_JD"));
+ Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon2_WD"));
+ Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon2_JL"));
+ Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon2_HG"));
+ Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon2_FY"));
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon2_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon2_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon2_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon2_PH_DIS"));
+ }
+ else if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon3")))
+ {
+ Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon3_JD"));
+ Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon3_WD"));
+ Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon3_JL"));
+ Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon3_HG"));
+ Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon3_FY"));
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon3_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon3_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon3_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon3_PH_DIS"));
+ }
+ else if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon4")))
+ {
+ Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon4_JD"));
+ Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon4_WD"));
+ Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon4_JL"));
+ Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon4_HG"));
+ Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon4_FY"));
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon4_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon4_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon4_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon4_PH_DIS"));
+ }
+ else if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon5")))
+ {
+ Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon5_JD"));
+ Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon5_WD"));
+ Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon5_JL"));
+ Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon5_HG"));
+ Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon5_FY"));
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon5_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon5_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon5_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon5_PH_DIS"));
+ }
+ else if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon6")))
+ {
+ Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon6_JD"));
+ Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon6_WD"));
+ Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon6_JL"));
+ Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon6_HG"));
+ Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon6_FY"));
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon6_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon6_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon6_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon6_PH_DIS"));
+ }
+ else if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon7")))
+ {
+ Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon7_JD"));
+ Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon7_WD"));
+ Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon7_JL"));
+ Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon7_HG"));
+ Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon7_FY"));
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon7_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon7_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon7_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon7_PH_DIS"));
+ }
+ else if (Beacon.ID == int.Parse(tools.GetAppSetting("Beacon8")))
+ {
+ Beacon_JD = Convert.ToSingle(tools.GetAppSetting("Beacon8_JD"));
+ Beacon_WD = Convert.ToSingle(tools.GetAppSetting("Beacon8_WD"));
+ Beacon_JL = Convert.ToSingle(tools.GetAppSetting("Beacon8_JL"));
+ Beacon_HG = Convert.ToSingle(tools.GetAppSetting("Beacon8_HG"));
+ Beacon_FY = Convert.ToSingle(tools.GetAppSetting("Beacon8_FY"));
+ Beacon_PH = Convert.ToSingle(tools.GetAppSetting("Beacon8_PH"));
+ Beacon_HG_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon8_HG_DIS"));
+ Beacon_FY_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon8_FY_DIS"));
+ Beacon_PH_DIS = Convert.ToSingle(tools.GetAppSetting("Beacon8_PH_DIS"));
}
- //从配置文件中取得对应的阈值文件
+ //阈值状态包括 偏差的值 偏差值的百分比 偏差值百分比的颜色 百分之0到百分之75是绿色 百分之75到百分之99是黄色,百分之100及以上是红色
+
+ //计算后的经纬度偏移距离
+ double py = tools.GetDistanceTo(Beacon_JD, Beacon_WD, Beacon.Beacon_JD, Beacon.Beacon_WD);
+ //经纬度计算距离便宜百分比
+ float py_bfb = (float)py / Beacon_JL;
+ //
}
}
diff --git a/obj/20230724_MBJC_upperpc.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc.csproj.nuget.dgspec.json
index 37e2c6f..6be115a 100644
--- a/obj/20230724_MBJC_upperpc.csproj.nuget.dgspec.json
+++ b/obj/20230724_MBJC_upperpc.csproj.nuget.dgspec.json
@@ -1,23 +1,23 @@
{
"format": 1,
"restore": {
- "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {}
+ "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {}
},
"projects": {
- "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {
+ "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "projectUniqueName": "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
"projectName": "20230724_MBJC_upperpc",
- "projectPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
- "packagesPath": "C:\\Users\\86453\\.nuget\\packages\\",
- "outputPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\obj\\",
+ "projectPath": "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "packagesPath": "C:\\Users\\Chen\\.nuget\\packages\\",
+ "outputPath": "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
- "D:\\Software\\VisualStudio2022\\Shared\\NuGetPackages"
+ "D:\\Software\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configFilePaths": [
- "C:\\Users\\86453\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Users\\Chen\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
@@ -77,7 +77,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.203\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/obj/20230724_MBJC_upperpc.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc.csproj.nuget.g.props
index 86bb915..88a70f9 100644
--- a/obj/20230724_MBJC_upperpc.csproj.nuget.g.props
+++ b/obj/20230724_MBJC_upperpc.csproj.nuget.g.props
@@ -5,16 +5,16 @@
NuGet
$(MSBuildThisFileDirectory)project.assets.json
$(UserProfile)\.nuget\packages\
- C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages
+ C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages
PackageReference
- 6.5.0
+ 6.7.0
-
-
+
+
- C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39
- C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0
+ C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39
+ C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0
\ No newline at end of file
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.GeneratedMSBuildEditorConfig.editorconfig
index 7964348..b2296e7 100644
--- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.GeneratedMSBuildEditorConfig.editorconfig
@@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = _20230724_MBJC_upperpc
-build_property.ProjectDir = D:\WorkSpace\Gitea\20230724_MBJC_upperpc\
+build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.assets.cache
index cdd4406..5960520 100644
Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.assets.cache and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.AssemblyReference.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.AssemblyReference.cache
index b2fba70..aa41ee4 100644
Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.AssemblyReference.cache and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.designer.runtimeconfig.json b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.designer.runtimeconfig.json
index 72598f3..1d9dc51 100644
--- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.designer.runtimeconfig.json
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.designer.runtimeconfig.json
@@ -12,9 +12,9 @@
}
],
"additionalProbingPaths": [
- "C:\\Users\\86453\\.dotnet\\store\\|arch|\\|tfm|",
- "C:\\Users\\86453\\.nuget\\packages",
- "D:\\Software\\VisualStudio2022\\Shared\\NuGetPackages"
+ "C:\\Users\\Chen\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\Chen\\.nuget\\packages",
+ "D:\\Software\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache
index 594f526..db8948a 100644
--- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.cache
@@ -4,17 +4,17 @@
winexe
C#
.cs
-D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\
+D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\
_20230724_MBJC_upperpc
none
false
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
-D:\WorkSpace\Gitea\20230724_MBJC_upperpc\App.xaml
+D:\Workspace\Gitea\20230724_MBJC_upperpc\App.xaml
13758307417
1-908571137
38-1689912238
-2061389713567
+2061163918189
FirstWindow.xaml;MainWindow.xaml;Views\AnchorModel.xaml;Views\AnchorPointView.xaml;Views\BuoyModel.xaml;Views\BuoyPlatformView.xaml;Views\FirstPageAnchorControl.xaml;Views\FirstPageBuoyControl.xaml;Views\FirstPageSupportControl.xaml;Views\FirstPageView.xaml;Views\InitialView.xaml;Views\ProgressView.xaml;Views\SupportModel.xaml;
-False
+True
diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref
new file mode 100644
index 0000000..a5ce9e6
--- /dev/null
+++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref
@@ -0,0 +1,16 @@
+D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\GeneratedInternalTypeHelper.g.i.cs
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\App.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\FirstWindow.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\MainWindow.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\AnchorModel.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\AnchorPointView.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\BuoyModel.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\BuoyPlatformView.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\FirstPageAnchorControl.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\FirstPageBuoyControl.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\FirstPageSupportControl.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\FirstPageView.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\InitialView.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\ProgressView.xaml;;
+FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\SupportModel.xaml;;
+
diff --git a/obj/Debug/net6.0-windows/App.g.i.cs b/obj/Debug/net6.0-windows/App.g.i.cs
index 473ee7e..9580ace 100644
--- a/obj/Debug/net6.0-windows/App.g.i.cs
+++ b/obj/Debug/net6.0-windows/App.g.i.cs
@@ -50,7 +50,7 @@ namespace _20230724_MBJC_upperpc {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -62,7 +62,7 @@ namespace _20230724_MBJC_upperpc {
#line default
#line hidden
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/app.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/app.xaml", System.UriKind.Relative);
#line 1 "..\..\..\App.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -76,7 +76,7 @@ namespace _20230724_MBJC_upperpc {
///
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public static void Main() {
_20230724_MBJC_upperpc.App app = new _20230724_MBJC_upperpc.App();
app.InitializeComponent();
diff --git a/obj/Debug/net6.0-windows/FirstWindow.g.i.cs b/obj/Debug/net6.0-windows/FirstWindow.g.i.cs
index e75d6be..ac36856 100644
--- a/obj/Debug/net6.0-windows/FirstWindow.g.i.cs
+++ b/obj/Debug/net6.0-windows/FirstWindow.g.i.cs
@@ -58,13 +58,13 @@ namespace _20230724_MBJC_upperpc {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/firstwindow.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/firstwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\FirstWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -74,7 +74,7 @@ namespace _20230724_MBJC_upperpc {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.i.cs b/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.i.cs
index 6e2e519..5f70cb2 100644
--- a/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.i.cs
+++ b/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.i.cs
@@ -15,7 +15,7 @@ namespace XamlGeneratedNamespace {
/// GeneratedInternalTypeHelper
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
diff --git a/obj/Debug/net6.0-windows/MainWindow.g.i.cs b/obj/Debug/net6.0-windows/MainWindow.g.i.cs
index 2feb28c..ad0caaf 100644
--- a/obj/Debug/net6.0-windows/MainWindow.g.i.cs
+++ b/obj/Debug/net6.0-windows/MainWindow.g.i.cs
@@ -92,7 +92,7 @@ namespace _20230724_MBJC_upperpc {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -108,7 +108,7 @@ namespace _20230724_MBJC_upperpc {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/AnchorModel.g.i.cs b/obj/Debug/net6.0-windows/Views/AnchorModel.g.i.cs
index 08778c0..bbbbfd4 100644
--- a/obj/Debug/net6.0-windows/Views/AnchorModel.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/AnchorModel.g.i.cs
@@ -80,13 +80,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/anchormodel.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/anchormodel.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\AnchorModel.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -96,7 +96,7 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/AnchorPointView.g.i.cs b/obj/Debug/net6.0-windows/Views/AnchorPointView.g.i.cs
index 791b29f..8646407 100644
--- a/obj/Debug/net6.0-windows/Views/AnchorPointView.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/AnchorPointView.g.i.cs
@@ -75,7 +75,7 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -91,14 +91,14 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/BuoyModel.g.i.cs b/obj/Debug/net6.0-windows/Views/BuoyModel.g.i.cs
index 7dbd525..c278253 100644
--- a/obj/Debug/net6.0-windows/Views/BuoyModel.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/BuoyModel.g.i.cs
@@ -88,13 +88,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/buoymodel.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/buoymodel.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\BuoyModel.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -104,7 +104,7 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.i.cs b/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.i.cs
index d5f379b..2873eed 100644
--- a/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.i.cs
@@ -64,13 +64,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/buoyplatformview.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/buoyplatformview.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\BuoyPlatformView.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -80,14 +80,14 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.i.cs
index b88b94e..9a57f79 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.i.cs
@@ -147,13 +147,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/firstpageanchorcontrol.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/firstpageanchorcontrol.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\FirstPageAnchorControl.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -163,14 +163,14 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs
index 66496b5..d337518 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs
@@ -99,13 +99,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/firstpagebuoycontrol.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/firstpagebuoycontrol.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\FirstPageBuoyControl.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -115,14 +115,14 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.i.cs
index 85013d5..cfe9b80 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.i.cs
@@ -143,13 +143,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/firstpagesupportcontrol.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/firstpagesupportcontrol.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\FirstPageSupportControl.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -159,14 +159,14 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs
index ec01ea5..5a19f76 100644
--- a/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs
@@ -134,13 +134,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/firstpageview.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/firstpageview.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\FirstPageView.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -150,14 +150,14 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/InitialView.g.i.cs b/obj/Debug/net6.0-windows/Views/InitialView.g.i.cs
index bd45d72..22336af 100644
--- a/obj/Debug/net6.0-windows/Views/InitialView.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/InitialView.g.i.cs
@@ -95,13 +95,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/initialview.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/initialview.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\InitialView.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -111,7 +111,7 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/ProgressView.g.i.cs b/obj/Debug/net6.0-windows/Views/ProgressView.g.i.cs
index 5df75d4..e7d4834 100644
--- a/obj/Debug/net6.0-windows/Views/ProgressView.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/ProgressView.g.i.cs
@@ -47,13 +47,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/progressview.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/progressview.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\ProgressView.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -63,7 +63,7 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/Views/SupportModel.g.i.cs b/obj/Debug/net6.0-windows/Views/SupportModel.g.i.cs
index 68cba23..c79a54b 100644
--- a/obj/Debug/net6.0-windows/Views/SupportModel.g.i.cs
+++ b/obj/Debug/net6.0-windows/Views/SupportModel.g.i.cs
@@ -80,13 +80,13 @@ namespace _20230724_MBJC_upperpc.Views {
/// InitializeComponent
///
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
- System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;component/views/supportmodel.xaml", System.UriKind.Relative);
+ System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/supportmodel.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Views\SupportModel.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
@@ -96,7 +96,7 @@ namespace _20230724_MBJC_upperpc.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.5.0")]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
diff --git a/obj/Debug/net6.0-windows/apphost.exe b/obj/Debug/net6.0-windows/apphost.exe
index c866022..66fcfd0 100644
Binary files a/obj/Debug/net6.0-windows/apphost.exe and b/obj/Debug/net6.0-windows/apphost.exe differ
diff --git a/obj/project.assets.json b/obj/project.assets.json
index 5480f1a..2611b57 100644
--- a/obj/project.assets.json
+++ b/obj/project.assets.json
@@ -1961,23 +1961,23 @@
]
},
"packageFolders": {
- "C:\\Users\\86453\\.nuget\\packages\\": {},
- "D:\\Software\\VisualStudio2022\\Shared\\NuGetPackages": {}
+ "C:\\Users\\Chen\\.nuget\\packages\\": {},
+ "D:\\Software\\IDE\\VisualStudio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "projectUniqueName": "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
"projectName": "20230724_MBJC_upperpc",
- "projectPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
- "packagesPath": "C:\\Users\\86453\\.nuget\\packages\\",
- "outputPath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\obj\\",
+ "projectPath": "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "packagesPath": "C:\\Users\\Chen\\.nuget\\packages\\",
+ "outputPath": "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
- "D:\\Software\\VisualStudio2022\\Shared\\NuGetPackages"
+ "D:\\Software\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configFilePaths": [
- "C:\\Users\\86453\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Users\\Chen\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
@@ -2037,7 +2037,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.203\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
index 5d33953..d6b6410 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,45 +1,45 @@
{
"version": 2,
- "dgSpecHash": "Q9xNk9eg8mAf07k6/OKCokimbIqMPxLt1qDNVPwscvIFszZO4/OucaJ84yolBPxBinAdh+KV1kYAGgmQsxt6ZA==",
+ "dgSpecHash": "WyyTpydaQAlw46vdc6YPZ759PHofXxDcHt1/yG+cIpBmPEFm8duWnulccsTM8G6vTYkP/Rlvma5yEa9HHSP82Q==",
"success": true,
- "projectFilePath": "D:\\WorkSpace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
+ "projectFilePath": "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj",
"expectedPackageFiles": [
- "C:\\Users\\86453\\.nuget\\packages\\3dtools\\1.0.0\\3dtools.1.0.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\bouncycastle.cryptography\\2.2.1\\bouncycastle.cryptography.2.2.1.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\google.protobuf\\3.25.1\\google.protobuf.3.25.1.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\k4os.compression.lz4\\1.3.5\\k4os.compression.lz4.1.3.5.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.5\\k4os.compression.lz4.streams.1.3.5.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\k4os.hash.xxhash\\1.0.8\\k4os.hash.xxhash.1.0.8.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\materialdesigncolors\\2.1.4\\materialdesigncolors.2.1.4.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\materialdesignthemes\\4.9.0\\materialdesignthemes.4.9.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\microsoft.xaml.behaviors.wpf\\1.1.39\\microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\mysql.data\\8.3.0\\mysql.data.8.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.configuration.configurationmanager\\4.4.1\\system.configuration.configurationmanager.4.4.1.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.diagnostics.diagnosticsource\\7.0.2\\system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.4.0\\system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.text.encoding.codepages\\4.4.0\\system.text.encoding.codepages.4.4.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.text.json\\7.0.1\\system.text.json.7.0.1.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
- "C:\\Users\\86453\\.nuget\\packages\\zstdsharp.port\\0.7.1\\zstdsharp.port.0.7.1.nupkg.sha512"
+ "C:\\Users\\Chen\\.nuget\\packages\\3dtools\\1.0.0\\3dtools.1.0.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\bouncycastle.cryptography\\2.2.1\\bouncycastle.cryptography.2.2.1.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\google.protobuf\\3.25.1\\google.protobuf.3.25.1.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\k4os.compression.lz4\\1.3.5\\k4os.compression.lz4.1.3.5.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.5\\k4os.compression.lz4.streams.1.3.5.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\k4os.hash.xxhash\\1.0.8\\k4os.hash.xxhash.1.0.8.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\materialdesigncolors\\2.1.4\\materialdesigncolors.2.1.4.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\materialdesignthemes\\4.9.0\\materialdesignthemes.4.9.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\microsoft.xaml.behaviors.wpf\\1.1.39\\microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\mysql.data\\8.3.0\\mysql.data.8.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.configuration.configurationmanager\\4.4.1\\system.configuration.configurationmanager.4.4.1.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.diagnostics.diagnosticsource\\7.0.2\\system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.4.0\\system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.text.encoding.codepages\\4.4.0\\system.text.encoding.codepages.4.4.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.text.json\\7.0.1\\system.text.json.7.0.1.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512",
+ "C:\\Users\\Chen\\.nuget\\packages\\zstdsharp.port\\0.7.1\\zstdsharp.port.0.7.1.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file