diff --git a/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 b/.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2 index e3d83d8..a8b30fa 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/40896a0f-863a-412c-af0c-3b5e61264f2f.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/40896a0f-863a-412c-af0c-3b5e61264f2f.vsidx deleted file mode 100644 index 9c4478e..0000000 Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/40896a0f-863a-412c-af0c-3b5e61264f2f.vsidx and /dev/null differ diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/7a02361d-7333-4cf7-b561-af9c82a92943.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/7a02361d-7333-4cf7-b561-af9c82a92943.vsidx new file mode 100644 index 0000000..96d8725 Binary files /dev/null and b/.vs/20230724_MBJC_upperpc/FileContentIndex/7a02361d-7333-4cf7-b561-af9c82a92943.vsidx differ diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/838bbbf5-d724-478d-9d17-96a875e5ad53.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/838bbbf5-d724-478d-9d17-96a875e5ad53.vsidx deleted file mode 100644 index 41b19f6..0000000 Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/838bbbf5-d724-478d-9d17-96a875e5ad53.vsidx and /dev/null differ diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/c0fff1a2-45e6-4984-8fae-6f10715a6caf.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/c0fff1a2-45e6-4984-8fae-6f10715a6caf.vsidx deleted file mode 100644 index 62aaef2..0000000 Binary files a/.vs/20230724_MBJC_upperpc/FileContentIndex/c0fff1a2-45e6-4984-8fae-6f10715a6caf.vsidx and /dev/null differ diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/fa89f8bc-df26-4498-b0d3-b4ad0331d845.vsidx b/.vs/20230724_MBJC_upperpc/FileContentIndex/fa89f8bc-df26-4498-b0d3-b4ad0331d845.vsidx new file mode 100644 index 0000000..20cd658 Binary files /dev/null and b/.vs/20230724_MBJC_upperpc/FileContentIndex/fa89f8bc-df26-4498-b0d3-b4ad0331d845.vsidx differ diff --git a/.vs/20230724_MBJC_upperpc/v17/.suo b/.vs/20230724_MBJC_upperpc/v17/.suo index 1d0be49..e112739 100644 Binary files a/.vs/20230724_MBJC_upperpc/v17/.suo and b/.vs/20230724_MBJC_upperpc/v17/.suo differ 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 6a39c6f..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 8e5ffa9..0000000 Binary files a/.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v6.1 and /dev/null differ diff --git a/Common/VisibilityConverter.cs b/Common/VisibilityConverter.cs new file mode 100644 index 0000000..3d750c5 --- /dev/null +++ b/Common/VisibilityConverter.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Data; + +namespace _20230724_MBJC_upperpc.Common +{ + public class VisibilityConverter : IMultiValueConverter + { + public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) + { + if (((string)values[0]).Equals("AnchorModel")) + { + return int.Parse(values[1].ToString()) == 1 ? Visibility.Visible : Visibility.Collapsed; + } + else + { + return int.Parse(values[1].ToString()) == 2 ? Visibility.Visible : Visibility.Collapsed; + } + } + + public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture) + { + throw new NotImplementedException(); + } + } +} diff --git a/Models/ClientModel.cs b/Models/ClientModel.cs index a4c51d1..9dda38e 100644 --- a/Models/ClientModel.cs +++ b/Models/ClientModel.cs @@ -119,25 +119,25 @@ namespace _20230724_MBJC_upperpc.Models MainWindow.viewModel.Beacon1.Beacon = beacon; break; case 2: - MainWindow.viewModel.beacon2.Beacon = beacon; + MainWindow.viewModel.Beacon2.Beacon = beacon; break; case 3: - MainWindow.viewModel.beacon3.Beacon = beacon; + MainWindow.viewModel.Beacon3.Beacon = beacon; break; case 4: - MainWindow.viewModel.beacon4.Beacon = beacon; + MainWindow.viewModel.Beacon4.Beacon = beacon; break; case 5: - MainWindow.viewModel.beacon5.Beacon = beacon; + MainWindow.viewModel.Beacon5.Beacon = beacon; break; case 6: - MainWindow.viewModel.beacon6.Beacon = beacon; + MainWindow.viewModel.Beacon6.Beacon = beacon; break; case 7: - MainWindow.viewModel.beacon7.Beacon = beacon; + MainWindow.viewModel.Beacon7.Beacon = beacon; break; case 8: - MainWindow.viewModel.beacon8.Beacon = beacon; + MainWindow.viewModel.Beacon8.Beacon = beacon; break; default: break; diff --git a/ViewModels/BeaconViewModel.cs b/ViewModels/BeaconViewModel.cs index b7e9bdb..8ea94e4 100644 --- a/ViewModels/BeaconViewModel.cs +++ b/ViewModels/BeaconViewModel.cs @@ -9,7 +9,14 @@ namespace _20230724_MBJC_upperpc.ViewModels { public class BeaconViewModel : NotifyBase { - public BeaconModel Beacon = new BeaconModel(); + private BeaconModel beacon; + + public BeaconModel Beacon + { + get { return beacon; } + set { beacon = value; this.DoNotify(); } + } + private int model_Visibility = 1; diff --git a/ViewModels/MainViewModel.cs b/ViewModels/MainViewModel.cs index b540832..ea8f70d 100644 --- a/ViewModels/MainViewModel.cs +++ b/ViewModels/MainViewModel.cs @@ -31,15 +31,6 @@ namespace _20230724_MBJC_upperpc.ViewModels set { _pageContent = value; this.DoNotify(); } } #region - - private int myVar; - - public int MyProperty - { - get { return myVar; } - set { myVar = value; } - } - private BeaconViewModel beacon1 = new BeaconViewModel(); public BeaconViewModel Beacon1 @@ -47,13 +38,57 @@ namespace _20230724_MBJC_upperpc.ViewModels get { return beacon1; } set { beacon1 = value; this.DoNotify(); } } - public BeaconViewModel beacon2 = new BeaconViewModel(); - public BeaconViewModel beacon3 = new BeaconViewModel(); - public BeaconViewModel beacon4 = new BeaconViewModel(); - public BeaconViewModel beacon5 = new BeaconViewModel(); - public BeaconViewModel beacon6 = new BeaconViewModel(); - public BeaconViewModel beacon7 = new BeaconViewModel() { Model_Visibility = 2 }; - public BeaconViewModel beacon8 = new BeaconViewModel() { Model_Visibility = 2 }; + private BeaconViewModel beacon2 = new BeaconViewModel(); + + public BeaconViewModel Beacon2 + { + get { return beacon2; } + set { beacon2 = value; this.DoNotify(); } + } + private BeaconViewModel beacon3 = new BeaconViewModel(); + + public BeaconViewModel Beacon3 + { + get { return beacon3; } + set { beacon3 = value; this.DoNotify(); } + } + private BeaconViewModel beacon4 = new BeaconViewModel(); + + public BeaconViewModel Beacon4 + { + get { return beacon4; } + set { beacon4 = value; this.DoNotify(); } + } + private BeaconViewModel beacon5 = new BeaconViewModel(); + + public BeaconViewModel Beacon5 + { + get { return beacon5; } + set { beacon5 = value; this.DoNotify(); } + } + private BeaconViewModel beacon6 = new BeaconViewModel(); + + public BeaconViewModel Beacon6 + { + get { return beacon6; } + set { beacon6 = value; this.DoNotify(); } + } + + private BeaconViewModel beacon7 = new BeaconViewModel() { Model_Visibility = 2 }; + + public BeaconViewModel Beacon7 + { + get { return beacon7; } + set { beacon7 = value; this.DoNotify(); } + } + + private BeaconViewModel beacon8 = new BeaconViewModel() { Model_Visibility = 2 }; + + public BeaconViewModel Beacon8 + { + get { return beacon8; } + set { beacon8 = value; this.DoNotify(); } + } #endregion @@ -127,6 +162,34 @@ namespace _20230724_MBJC_upperpc.ViewModels Type type = Type.GetType("_20230724_MBJC_upperpc.Views." + Title_Name); ConstructorInfo cti = type.GetConstructor(System.Type.EmptyTypes); FrameworkElement page = (FrameworkElement)cti.Invoke(null); + switch (obj.ToString()) + { + case "Point1": + page.DataContext = Beacon1; + break; + case "Point2": + page.DataContext = Beacon2; + break; + case "Point3": + page.DataContext = Beacon3; + break; + case "Point4": + page.DataContext = Beacon4; + break; + case "Point5": + page.DataContext = Beacon5; + break; + case "Point6": + page.DataContext = Beacon6; + break; + case "Benchmark1": + page.DataContext = Beacon7; + break; + case "Benchmark2": + page.DataContext = Beacon8; + break; + default: break; + } this.PageContent = page; } diff --git a/Views/AnchorPointView.xaml b/Views/AnchorPointView.xaml index 70ae28b..859e40e 100644 --- a/Views/AnchorPointView.xaml +++ b/Views/AnchorPointView.xaml @@ -13,6 +13,7 @@ + @@ -21,10 +22,26 @@ - + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + diff --git a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll index 6352049..8f64e5d 100644 Binary files a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll and b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll differ diff --git a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.exe b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.exe index c866022..66fcfd0 100644 Binary files a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.exe and b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.exe differ diff --git a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb index 1504d5e..22d1974 100644 Binary files a/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb and b/bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb differ diff --git a/bin/Debug/net6.0-windows/数据记录/2024_01_19/Log.txt b/bin/Debug/net6.0-windows/数据记录/2024_01_19/Log.txt index e9b8ef1..8fb42c5 100644 --- a/bin/Debug/net6.0-windows/数据记录/2024_01_19/Log.txt +++ b/bin/Debug/net6.0-windows/数据记录/2024_01_19/Log.txt @@ -25,3 +25,26 @@ 2024-01-19 10:26:49 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 2024-01-19 10:27:06 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 2024-01-19 10:27:15 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 13:42:25 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 13:44:18 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 13:46:29 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 13:48:17 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 13:49:12 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 14:02:16 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 14:09:30 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 14:11:01 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 14:12:17 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 14:36:06 ---- 连接客户端失败,IP:127.0.0.1端口号:8899 +2024-01-19 14:36:46 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 14:43:19 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 14:43:47 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 14:45:22 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 14:45:29 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 14:55:42 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 14:55:56 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 14:56:46 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 15:48:16 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 16:02:41 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 16:40:26 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 16:41:46 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 +2024-01-19 16:48:36 ---- 连接客户端成功,IP:127.0.0.1端口号:8899 diff --git a/obj/20230724_MBJC_upperpc.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc.csproj.nuget.dgspec.json index 197d927..f950614 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" ], @@ -73,7 +73,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/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_053vgqyt_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_ea53fyzr_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_ghuj3flw_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_jgorptpe_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_nl02ha1s_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_odo5pjkt_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.dgspec.json b/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f950614 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "D:\\Workspace\\Gitea\\20230724_MBJC_upperpc\\20230724_MBJC_upperpc.csproj": {} + }, + "projects": { + "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", + "projectName": "20230724_MBJC_upperpc", + "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\\IDE\\VisualStudio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "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" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "3DTools": { + "target": "Package", + "version": "[1.0.0, )" + }, + "MaterialDesignThemes": { + "target": "Package", + "version": "[4.9.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.401\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.g.props b/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..88a70f9 --- /dev/null +++ b/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages + PackageReference + 6.7.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/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.g.targets b/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..bb14d9d --- /dev/null +++ b/obj/20230724_MBJC_upperpc_vwkueid4_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ 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 2a87420..2dec0ac 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 6f1ff86..45cab05 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.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache index 39ef42e..3b61a53 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -c13a43275a4cc88437576659cb791debaf9bae98 +ebc61ef2b96f5fbf322c31334f5f72e6914b8194 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.FileListAbsolute.txt b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.FileListAbsolute.txt index 458589f..0b107d0 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.FileListAbsolute.txt +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.csproj.FileListAbsolute.txt @@ -1,53 +1,53 @@ -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.exe -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.dll.config -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.deps.json -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.runtimeconfig.json -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.dll -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.pdb -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\3DTools.dll -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\MaterialDesignColors.dll -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\MaterialDesignThemes.Wpf.dll -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\Microsoft.Xaml.Behaviors.dll -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.csproj.AssemblyReference.cache -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\FirstWindow.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\MainWindow.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorModel.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorPointView.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyModel.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyPlatformView.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageAnchorControl.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageBuoyControl.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageSupportControl.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageView.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\InitialView.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\ProgressView.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SupportModel.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\App.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\GeneratedInternalTypeHelper.g.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc_MarkupCompile.cache -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc_MarkupCompile.lref -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\App.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\FirstWindow.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\MainWindow.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorModel.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorPointView.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyModel.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyPlatformView.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageAnchorControl.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageBuoyControl.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageSupportControl.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageView.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\InitialView.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\ProgressView.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SupportModel.baml -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.g.resources -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.GeneratedMSBuildEditorConfig.editorconfig -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.AssemblyInfoInputs.cache -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.AssemblyInfo.cs -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.csproj.CopyComplete -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.dll -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\refint\20230724_MBJC_upperpc.dll -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.pdb -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.genruntimeconfig.cache -D:\WorkSpace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\ref\20230724_MBJC_upperpc.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.csproj.AssemblyReference.cache +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\FirstWindow.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\MainWindow.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorModel.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorPointView.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyModel.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyPlatformView.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageAnchorControl.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageBuoyControl.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageSupportControl.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageView.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\InitialView.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\ProgressView.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SupportModel.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\App.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\GeneratedInternalTypeHelper.g.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc_MarkupCompile.cache +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc_MarkupCompile.lref +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.exe +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.dll.config +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.deps.json +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.runtimeconfig.json +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\20230724_MBJC_upperpc.pdb +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\3DTools.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\MaterialDesignColors.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\MaterialDesignThemes.Wpf.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\bin\Debug\net6.0-windows\Microsoft.Xaml.Behaviors.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\App.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\FirstWindow.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\MainWindow.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorModel.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\AnchorPointView.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyModel.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\BuoyPlatformView.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageAnchorControl.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageBuoyControl.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageSupportControl.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\FirstPageView.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\InitialView.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\ProgressView.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\Views\SupportModel.baml +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.g.resources +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.GeneratedMSBuildEditorConfig.editorconfig +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.AssemblyInfoInputs.cache +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.AssemblyInfo.cs +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.csproj.CoreCompileInputs.cache +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.csproj.CopyComplete +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\refint\20230724_MBJC_upperpc.dll +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.pdb +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\20230724_MBJC_upperpc.genruntimeconfig.cache +D:\Workspace\Gitea\20230724_MBJC_upperpc\obj\Debug\net6.0-windows\ref\20230724_MBJC_upperpc.dll 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.dll b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll index 6352049..8f64e5d 100644 Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources index 8e8d237..d5045f0 100644 Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.genruntimeconfig.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.genruntimeconfig.cache index 93e2769..28d7333 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.genruntimeconfig.cache +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.genruntimeconfig.cache @@ -1 +1 @@ -b739079b1780dfde7e4c972c4065189ecd226037 +045da831a74311370f06c69a1d7f771e919172b9 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb index 1504d5e..22d1974 100644 Binary files a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.assets.cache new file mode 100644 index 0000000..695a433 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_053vgqyt_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.assets.cache new file mode 100644 index 0000000..03a14bd Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2nhgfvmf_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.assets.cache new file mode 100644 index 0000000..64719bd Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_2pfr3jke_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.assets.cache new file mode 100644 index 0000000..bfaa122 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_4ngpwhqt_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.assets.cache new file mode 100644 index 0000000..7cc276b Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.assets.cache differ diff --git a/.vs/20230724_MBJC_upperpc/FileContentIndex/read.lock b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.csproj.BuildWithSkipAnalyzers similarity index 100% rename from .vs/20230724_MBJC_upperpc/FileContentIndex/read.lock rename to obj/Debug/net6.0-windows/20230724_MBJC_upperpc_5y2w0fdp_wpftmp.csproj.BuildWithSkipAnalyzers diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache index 65a181e..101b0dc 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.cache @@ -4,16 +4,16 @@ 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 -33-580596544 -198-1745317550 +34711280284 +198-979494243 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 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 e7c5c5f..24aa810 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,16 +4,16 @@ 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 -351947527988 -198-1745317550 +36-1055562480 +198-979494243 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; 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 index a02ef8b..9ef2399 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.i.lref @@ -1,9 +1,4 @@  -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\MainWindow.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\FirstPageAnchorControl.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageBuoyControl.xaml;; -FD:\WorkSpace\Gitea\20230724_MBJC_upperpc\Views\FirstPageView.xaml;; +FD:\Workspace\Gitea\20230724_MBJC_upperpc\Views\AnchorPointView.xaml;; diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref index 0262ccb..2e2213e 100644 --- a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_MarkupCompile.lref @@ -1,16 +1,16 @@  -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;; +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/20230724_MBJC_upperpc_audfjfjl_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.assets.cache new file mode 100644 index 0000000..32ab539 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_audfjfjl_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.assets.cache new file mode 100644 index 0000000..50f089f Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_djryc2qy_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.assets.cache new file mode 100644 index 0000000..54fd288 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ea53fyzr_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.assets.cache new file mode 100644 index 0000000..0fb529a Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fczhek4u_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.assets.cache new file mode 100644 index 0000000..f28b7e0 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fhe5fxr5_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.assets.cache new file mode 100644 index 0000000..7f739fb Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_fo4cpnjt_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.assets.cache new file mode 100644 index 0000000..8b98fe0 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ghuj3flw_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.assets.cache new file mode 100644 index 0000000..4427f9c Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_gvuyfeeu_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.assets.cache new file mode 100644 index 0000000..cda5325 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_icu1sobg_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.assets.cache new file mode 100644 index 0000000..8f558f8 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_iprcarfp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.assets.cache new file mode 100644 index 0000000..1c01cec Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jcdhhijb_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.assets.cache new file mode 100644 index 0000000..c93c939 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jgorptpe_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.assets.cache new file mode 100644 index 0000000..ee790fd Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_jl02k1r1_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.assets.cache new file mode 100644 index 0000000..b97df47 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_k4x50l4u_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.assets.cache new file mode 100644 index 0000000..ba622c2 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_mqlfil1e_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.assets.cache new file mode 100644 index 0000000..c63fe8b Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nl02ha1s_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.assets.cache new file mode 100644 index 0000000..c70ef86 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_nrav5uqn_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.assets.cache new file mode 100644 index 0000000..6262431 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_odo5pjkt_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.assets.cache new file mode 100644 index 0000000..8c7b974 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_pii2uxef_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.assets.cache new file mode 100644 index 0000000..7ae0ebf Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qb2i20ib_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.assets.cache new file mode 100644 index 0000000..8496ade Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qintpbf0_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.assets.cache new file mode 100644 index 0000000..9556518 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qovfkydn_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.assets.cache new file mode 100644 index 0000000..35de5ef Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_qphywso2_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.assets.cache new file mode 100644 index 0000000..ca6fda0 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_rjarskhe_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.assets.cache new file mode 100644 index 0000000..57f7afa Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_uc534euc_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.assets.cache new file mode 100644 index 0000000..14eb56c Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_vwkueid4_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.assets.cache new file mode 100644 index 0000000..0f5c2fe Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_x5s1jsqa_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.assets.cache new file mode 100644 index 0000000..9a88d0f Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_ze1k3ztm_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.AssemblyInfo.cs b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..599871d --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyTitleAttribute("20230724_MBJC_upperpc")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6175f8f --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30a7b50224ea867d874cd87b220c9acbeaa9a3d3 diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2296e7 --- /dev/null +++ b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = _20230724_MBJC_upperpc +build_property.ProjectDir = D:\Workspace\Gitea\20230724_MBJC_upperpc\ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.assets.cache b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.assets.cache new file mode 100644 index 0000000..c707183 Binary files /dev/null and b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.assets.cache differ diff --git a/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0-windows/20230724_MBJC_upperpc_zv1cvrwu_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/App.g.cs b/obj/Debug/net6.0-windows/App.g.cs index 7809aa4..d880004 100644 --- a/obj/Debug/net6.0-windows/App.g.cs +++ b/obj/Debug/net6.0-windows/App.g.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; @@ -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/App.g.i.cs b/obj/Debug/net6.0-windows/App.g.i.cs index 7809aa4..d880004 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; @@ -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.cs b/obj/Debug/net6.0-windows/FirstWindow.g.cs index e75d6be..33abb26 100644 --- a/obj/Debug/net6.0-windows/FirstWindow.g.cs +++ b/obj/Debug/net6.0-windows/FirstWindow.g.cs @@ -58,7 +58,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; @@ -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/FirstWindow.g.i.cs b/obj/Debug/net6.0-windows/FirstWindow.g.i.cs index e75d6be..33abb26 100644 --- a/obj/Debug/net6.0-windows/FirstWindow.g.i.cs +++ b/obj/Debug/net6.0-windows/FirstWindow.g.i.cs @@ -58,7 +58,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; @@ -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.cs b/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.cs index 6e2e519..5f70cb2 100644 --- a/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.cs +++ b/obj/Debug/net6.0-windows/GeneratedInternalTypeHelper.g.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/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.cs b/obj/Debug/net6.0-windows/MainWindow.g.cs index a9ed3ea..917c7fb 100644 --- a/obj/Debug/net6.0-windows/MainWindow.g.cs +++ b/obj/Debug/net6.0-windows/MainWindow.g.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/MainWindow.g.i.cs b/obj/Debug/net6.0-windows/MainWindow.g.i.cs index a9ed3ea..917c7fb 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.cs b/obj/Debug/net6.0-windows/Views/AnchorModel.g.cs index 08778c0..ef9b211 100644 --- a/obj/Debug/net6.0-windows/Views/AnchorModel.g.cs +++ b/obj/Debug/net6.0-windows/Views/AnchorModel.g.cs @@ -80,7 +80,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; @@ -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/AnchorModel.g.i.cs b/obj/Debug/net6.0-windows/Views/AnchorModel.g.i.cs index 08778c0..ef9b211 100644 --- a/obj/Debug/net6.0-windows/Views/AnchorModel.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/AnchorModel.g.i.cs @@ -80,7 +80,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; @@ -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.baml b/obj/Debug/net6.0-windows/Views/AnchorPointView.baml index c46a8f7..9d48dd1 100644 Binary files a/obj/Debug/net6.0-windows/Views/AnchorPointView.baml and b/obj/Debug/net6.0-windows/Views/AnchorPointView.baml differ diff --git a/obj/Debug/net6.0-windows/Views/AnchorPointView.g.cs b/obj/Debug/net6.0-windows/Views/AnchorPointView.g.cs index 7d75e05..b7649f1 100644 --- a/obj/Debug/net6.0-windows/Views/AnchorPointView.g.cs +++ b/obj/Debug/net6.0-windows/Views/AnchorPointView.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B1A3D6DA56726C60F8E59EC8DDA582DD23C4E44C" +#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D6D5A8CDCF860848352E168787C7F76B83183073" //------------------------------------------------------------------------------ // // 此代码由工具生成。 @@ -46,7 +46,7 @@ namespace _20230724_MBJC_upperpc.Views { public partial class AnchorPointView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { - #line 23 "..\..\..\..\Views\AnchorPointView.xaml" + #line 24 "..\..\..\..\Views\AnchorPointView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid LeftGrid; @@ -61,13 +61,21 @@ namespace _20230724_MBJC_upperpc.Views { #line default #line hidden + + #line 35 "..\..\..\..\Views\AnchorPointView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.SupportModel SupportModel; + + #line default + #line hidden + private bool _contentLoaded; /// /// 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; @@ -83,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")] @@ -105,8 +113,11 @@ namespace _20230724_MBJC_upperpc.Views { this.AnchorModel = ((_20230724_MBJC_upperpc.Views.AnchorModel)(target)); return; case 3: + this.SupportModel = ((_20230724_MBJC_upperpc.Views.SupportModel)(target)); + return; + case 4: - #line 59 "..\..\..\..\Views\AnchorPointView.xaml" + #line 76 "..\..\..\..\Views\AnchorPointView.xaml" ((System.Windows.Controls.DatePicker)(target)).SelectedDateChanged += new System.EventHandler(this.DatePicker_SelectedDateChanged); #line default 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 7d75e05..867bacc 100644 --- a/obj/Debug/net6.0-windows/Views/AnchorPointView.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/AnchorPointView.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "B1A3D6DA56726C60F8E59EC8DDA582DD23C4E44C" +#pragma checksum "..\..\..\..\Views\AnchorPointView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D6D5A8CDCF860848352E168787C7F76B83183073" //------------------------------------------------------------------------------ // // 此代码由工具生成。 @@ -46,7 +46,7 @@ namespace _20230724_MBJC_upperpc.Views { public partial class AnchorPointView : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { - #line 23 "..\..\..\..\Views\AnchorPointView.xaml" + #line 24 "..\..\..\..\Views\AnchorPointView.xaml" [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] internal System.Windows.Controls.Grid LeftGrid; @@ -61,19 +61,27 @@ namespace _20230724_MBJC_upperpc.Views { #line default #line hidden + + #line 35 "..\..\..\..\Views\AnchorPointView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.SupportModel SupportModel; + + #line default + #line hidden + private bool _contentLoaded; /// /// 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/anchorpointview.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/20230724_MBJC_upperpc;V1.0.0.0;component/views/anchorpointview.xaml", System.UriKind.Relative); #line 1 "..\..\..\..\Views\AnchorPointView.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); @@ -83,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")] @@ -105,8 +113,11 @@ namespace _20230724_MBJC_upperpc.Views { this.AnchorModel = ((_20230724_MBJC_upperpc.Views.AnchorModel)(target)); return; case 3: + this.SupportModel = ((_20230724_MBJC_upperpc.Views.SupportModel)(target)); + return; + case 4: - #line 59 "..\..\..\..\Views\AnchorPointView.xaml" + #line 76 "..\..\..\..\Views\AnchorPointView.xaml" ((System.Windows.Controls.DatePicker)(target)).SelectedDateChanged += new System.EventHandler(this.DatePicker_SelectedDateChanged); #line default diff --git a/obj/Debug/net6.0-windows/Views/BuoyModel.g.cs b/obj/Debug/net6.0-windows/Views/BuoyModel.g.cs index 8ee759b..99349cb 100644 --- a/obj/Debug/net6.0-windows/Views/BuoyModel.g.cs +++ b/obj/Debug/net6.0-windows/Views/BuoyModel.g.cs @@ -88,7 +88,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; @@ -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/BuoyModel.g.i.cs b/obj/Debug/net6.0-windows/Views/BuoyModel.g.i.cs index 8ee759b..99349cb 100644 --- a/obj/Debug/net6.0-windows/Views/BuoyModel.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/BuoyModel.g.i.cs @@ -88,7 +88,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; @@ -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.cs b/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.cs index 574692b..5988e68 100644 --- a/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.cs +++ b/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.cs @@ -64,7 +64,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; @@ -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/BuoyPlatformView.g.i.cs b/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.i.cs index 574692b..5988e68 100644 --- a/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/BuoyPlatformView.g.i.cs @@ -64,7 +64,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; @@ -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.cs b/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.cs index 463a6ec..06c17b2 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.cs @@ -147,7 +147,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; @@ -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/FirstPageAnchorControl.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.i.cs index 463a6ec..06c17b2 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageAnchorControl.g.i.cs @@ -147,7 +147,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; @@ -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.cs b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.cs index 66496b5..cb21125 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.cs @@ -99,7 +99,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; @@ -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/FirstPageBuoyControl.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs index 66496b5..cb21125 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageBuoyControl.g.i.cs @@ -99,7 +99,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; @@ -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.cs b/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.cs index 85013d5..e9c4815 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.cs @@ -143,7 +143,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; @@ -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/FirstPageSupportControl.g.i.cs b/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.i.cs index 85013d5..e9c4815 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageSupportControl.g.i.cs @@ -143,7 +143,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; @@ -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.baml b/obj/Debug/net6.0-windows/Views/FirstPageView.baml index 44fdefc..f4ab06e 100644 Binary files a/obj/Debug/net6.0-windows/Views/FirstPageView.baml and b/obj/Debug/net6.0-windows/Views/FirstPageView.baml differ diff --git a/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs b/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs index 7161017..79fa48e 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageView.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5D7BCE2C1B177955888ABB4B09007A277B2EE332" +#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AAAA51304589612C55CB9E4D29E5A65269601271" //------------------------------------------------------------------------------ // // 此代码由工具生成。 @@ -64,13 +64,77 @@ namespace _20230724_MBJC_upperpc.Views { #line default #line hidden + + #line 50 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor1; + + #line default + #line hidden + + + #line 72 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor2; + + #line default + #line hidden + + + #line 93 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor3; + + #line default + #line hidden + + + #line 115 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor4; + + #line default + #line hidden + + + #line 136 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor5; + + #line default + #line hidden + + + #line 162 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor6; + + #line default + #line hidden + + + #line 187 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support1; + + #line default + #line hidden + + + #line 213 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support2; + + #line default + #line hidden + private bool _contentLoaded; /// /// 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; @@ -86,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")] @@ -107,6 +171,30 @@ namespace _20230724_MBJC_upperpc.Views { case 2: this.Buoy = ((_20230724_MBJC_upperpc.Views.FirstPageBuoyControl)(target)); return; + case 3: + this.Anchor1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 4: + this.Anchor2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 5: + this.Anchor3 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 6: + this.Anchor4 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 7: + this.Anchor5 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 8: + this.Anchor6 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 9: + this.Support1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 10: + this.Support2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; } this._contentLoaded = true; } 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 7161017..79fa48e 100644 --- a/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/FirstPageView.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5D7BCE2C1B177955888ABB4B09007A277B2EE332" +#pragma checksum "..\..\..\..\Views\FirstPageView.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AAAA51304589612C55CB9E4D29E5A65269601271" //------------------------------------------------------------------------------ // // 此代码由工具生成。 @@ -64,13 +64,77 @@ namespace _20230724_MBJC_upperpc.Views { #line default #line hidden + + #line 50 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor1; + + #line default + #line hidden + + + #line 72 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor2; + + #line default + #line hidden + + + #line 93 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor3; + + #line default + #line hidden + + + #line 115 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor4; + + #line default + #line hidden + + + #line 136 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor5; + + #line default + #line hidden + + + #line 162 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Anchor6; + + #line default + #line hidden + + + #line 187 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support1; + + #line default + #line hidden + + + #line 213 "..\..\..\..\Views\FirstPageView.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal _20230724_MBJC_upperpc.Views.FirstPageAnchorControl Support2; + + #line default + #line hidden + private bool _contentLoaded; /// /// 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; @@ -86,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")] @@ -107,6 +171,30 @@ namespace _20230724_MBJC_upperpc.Views { case 2: this.Buoy = ((_20230724_MBJC_upperpc.Views.FirstPageBuoyControl)(target)); return; + case 3: + this.Anchor1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 4: + this.Anchor2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 5: + this.Anchor3 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 6: + this.Anchor4 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 7: + this.Anchor5 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 8: + this.Anchor6 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 9: + this.Support1 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; + case 10: + this.Support2 = ((_20230724_MBJC_upperpc.Views.FirstPageAnchorControl)(target)); + return; } this._contentLoaded = true; } diff --git a/obj/Debug/net6.0-windows/Views/InitialView.g.cs b/obj/Debug/net6.0-windows/Views/InitialView.g.cs index 39891e5..f749913 100644 --- a/obj/Debug/net6.0-windows/Views/InitialView.g.cs +++ b/obj/Debug/net6.0-windows/Views/InitialView.g.cs @@ -71,7 +71,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; @@ -87,7 +87,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/InitialView.g.i.cs b/obj/Debug/net6.0-windows/Views/InitialView.g.i.cs index 39891e5..f749913 100644 --- a/obj/Debug/net6.0-windows/Views/InitialView.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/InitialView.g.i.cs @@ -71,7 +71,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; @@ -87,7 +87,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.cs b/obj/Debug/net6.0-windows/Views/ProgressView.g.cs index 5df75d4..0ac9bf9 100644 --- a/obj/Debug/net6.0-windows/Views/ProgressView.g.cs +++ b/obj/Debug/net6.0-windows/Views/ProgressView.g.cs @@ -47,7 +47,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; @@ -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/ProgressView.g.i.cs b/obj/Debug/net6.0-windows/Views/ProgressView.g.i.cs index 5df75d4..0ac9bf9 100644 --- a/obj/Debug/net6.0-windows/Views/ProgressView.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/ProgressView.g.i.cs @@ -47,7 +47,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; @@ -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.cs b/obj/Debug/net6.0-windows/Views/SupportModel.g.cs index f27edfb..517270d 100644 --- a/obj/Debug/net6.0-windows/Views/SupportModel.g.cs +++ b/obj/Debug/net6.0-windows/Views/SupportModel.g.cs @@ -80,7 +80,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; @@ -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/SupportModel.g.i.cs b/obj/Debug/net6.0-windows/Views/SupportModel.g.i.cs index f27edfb..517270d 100644 --- a/obj/Debug/net6.0-windows/Views/SupportModel.g.i.cs +++ b/obj/Debug/net6.0-windows/Views/SupportModel.g.i.cs @@ -80,7 +80,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; @@ -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/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll b/obj/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll index ac50685..250204e 100644 Binary files a/obj/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll and b/obj/Debug/net6.0-windows/ref/20230724_MBJC_upperpc.dll differ diff --git a/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll b/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll index ac50685..250204e 100644 Binary files a/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll and b/obj/Debug/net6.0-windows/refint/20230724_MBJC_upperpc.dll differ diff --git a/obj/project.assets.json b/obj/project.assets.json index 2ff7348..f04fcc3 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -179,23 +179,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" ], @@ -251,7 +251,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 7961e26..40acd95 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,13 +1,13 @@ { "version": 2, - "dgSpecHash": "iQGKFAPIa9r6aiWRyPEPwdDUR/mQ3KtYfOC7BMC555hN/9vSpUIEDHyp0EgAqCbfaQOfsn8+5GK5ImAI2ZedMw==", + "dgSpecHash": "zoPW0IxI2+cO/V6S3bLxAnlY0fF136mtvmdpaz2iEmoaRBM0FTP/BrLqyn/ncZNQ33URjlBTmiIfiK6+1FPeIg==", "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\\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.xaml.behaviors.wpf\\1.1.39\\microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512" + "C:\\Users\\Chen\\.nuget\\packages\\3dtools\\1.0.0\\3dtools.1.0.0.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.xaml.behaviors.wpf\\1.1.39\\microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512" ], "logs": [] } \ No newline at end of file