开始修改子页面显示

This commit is contained in:
Chen 2024-01-22 13:36:57 +08:00
parent 89fe3ee2a8
commit 774bc4eca9
239 changed files with 2690 additions and 242 deletions

Binary file not shown.

View File

@ -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();
}
}
}

View File

@ -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;

View File

@ -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;

View File

@ -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;
}

View File

@ -13,6 +13,7 @@
<UserControl.Resources>
<ResourceDictionary>
<converters:AspectRatioConverter x:Key="AspectRatioConverter" />
<converters:VisibilityConverter x:Key="VisibilityConverter" />
</ResourceDictionary>
</UserControl.Resources>
<Grid>
@ -21,10 +22,26 @@
<ColumnDefinition Width="7*" />
</Grid.ColumnDefinitions>
<Grid Name="LeftGrid" Grid.Column="0">
<local:AnchorModel
x:Name="AnchorModel"
TBDEnable="True"
Visibility="Visible" />
<local:AnchorModel x:Name="AnchorModel" TBDEnable="True">
<local:AnchorModel.Visibility>
<MultiBinding Converter="{StaticResource ResourceKey=VisibilityConverter}">
<MultiBinding.Bindings>
<Binding ElementName="AnchorModel" Path="Name" />
<Binding Path="Model_Visibility" />
</MultiBinding.Bindings>
</MultiBinding>
</local:AnchorModel.Visibility>
</local:AnchorModel>
<local:SupportModel x:Name="SupportModel" TBDEnable="True">
<local:SupportModel.Visibility>
<MultiBinding Converter="{StaticResource ResourceKey=VisibilityConverter}">
<MultiBinding.Bindings>
<Binding ElementName="SupportModel" Path="Name" />
<Binding Path="Model_Visibility" />
</MultiBinding.Bindings>
</MultiBinding>
</local:SupportModel.Visibility>
</local:SupportModel>
<local:InitialView
Width="{Binding ElementName=LeftGrid, Path=ActualWidth, Converter={StaticResource AspectRatioConverter}, ConverterParameter=4}"
Height="{Binding ElementName=LeftGrid, Path=ActualHeight, Converter={StaticResource AspectRatioConverter}, ConverterParameter=4}"

View File

@ -45,7 +45,7 @@
</Canvas.Top>
</local:FirstPageBuoyControl>
<!-- 锚1 -->
<!--
<local:FirstPageAnchorControl
x:Name="Anchor1"
Canvas.Top="0"
@ -65,9 +65,9 @@
</MultiBinding>
</Canvas.Left>
</local:FirstPageAnchorControl>
-->
<!-- 锚2 -->
<!--
<local:FirstPageAnchorControl
x:Name="Anchor2"
Canvas.Top="0"
@ -86,9 +86,9 @@
</MultiBinding>
</Canvas.Left>
</local:FirstPageAnchorControl>
-->
<!-- 锚3 -->
<!--
<local:FirstPageAnchorControl
x:Name="Anchor3"
Canvas.Left="0"
@ -108,9 +108,9 @@
</MultiBinding>
</Canvas.Top>
</local:FirstPageAnchorControl>
-->
<!-- 锚4 -->
<!--
<local:FirstPageAnchorControl
x:Name="Anchor4"
Canvas.Left="0"
@ -129,9 +129,9 @@
</MultiBinding>
</Canvas.Top>
</local:FirstPageAnchorControl>
-->
<!-- 锚5 -->
<!--
<local:FirstPageAnchorControl
x:Name="Anchor5"
Width="{Binding ElementName=Window, Path=ActualWidth, Converter={StaticResource AspectRatioConverter}, ConverterParameter=8}"
@ -155,9 +155,9 @@
</MultiBinding>
</Canvas.Left>
</local:FirstPageAnchorControl>
-->
<!-- 锚6 -->
<!--
<local:FirstPageAnchorControl
x:Name="Anchor6"
Width="{Binding ElementName=Window, Path=ActualWidth, Converter={StaticResource AspectRatioConverter}, ConverterParameter=8}"
@ -180,9 +180,9 @@
</MultiBinding>
</Canvas.Left>
</local:FirstPageAnchorControl>
-->
<!-- 信标1 -->
<!--
<local:FirstPageAnchorControl
x:Name="Support1"
Width="{Binding ElementName=Window, Path=ActualWidth, Converter={StaticResource AspectRatioConverter}, ConverterParameter=8}"
@ -206,9 +206,9 @@
</MultiBinding>
</Canvas.Left>
</local:FirstPageAnchorControl>
-->
<!-- 信标2 -->
<!--
<local:FirstPageAnchorControl
x:Name="Support2"
Width="{Binding ElementName=Window, Path=ActualWidth, Converter={StaticResource AspectRatioConverter}, ConverterParameter=8}"
@ -230,9 +230,9 @@
<Binding ElementName="Window" Path="ActualWidth" />
</MultiBinding>
</Canvas.Left>
</local:FirstPageAnchorControl>-->
</local:FirstPageAnchorControl>
<!--<Polyline
<Polyline
Panel.ZIndex="0"
Opacity="0.3"
Stroke="SkyBlue"
@ -361,6 +361,6 @@
<Binding ElementName="Support2" Path="(Canvas.Top)" />
</MultiBinding>
</Polyline.Points>
</Polyline>-->
</Polyline>
</Canvas>
</UserControl>

View File

@ -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

View File

@ -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"
}
}
}

View File

@ -5,16 +5,16 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\86453\.nuget\packages\;D:\Software\VisualStudio2022\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\86453\.nuget\packages\" />
<SourceRoot Include="D:\Software\VisualStudio2022\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\86453\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\86453\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Chen\.nuget\packages\;D:\Software\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Chen\.nuget\packages\" />
<SourceRoot Include="D:\Software\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Xaml_Behaviors_Wpf Condition=" '$(PkgMicrosoft_Xaml_Behaviors_Wpf)' == '' ">C:\Users\Chen\.nuget\packages\microsoft.xaml.behaviors.wpf\1.1.39</PkgMicrosoft_Xaml_Behaviors_Wpf>
<PkgMaterialDesignThemes Condition=" '$(PkgMaterialDesignThemes)' == '' ">C:\Users\Chen\.nuget\packages\materialdesignthemes\4.9.0</PkgMaterialDesignThemes>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets" Condition="Exists('$(NuGetPackageRoot)materialdesignthemes\4.9.0\build\MaterialDesignThemes.targets')" />
</ImportGroup>
</Project>

View File

@ -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\

View File

@ -1 +1 @@
c13a43275a4cc88437576659cb791debaf9bae98
ebc61ef2b96f5fbf322c31334f5f72e6914b8194

View File

@ -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

View File

@ -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

View File

@ -1 +1 @@
b739079b1780dfde7e4c972c4065189ecd226037
045da831a74311370f06c69a1d7f771e919172b9

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -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

View File

@ -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

View File

@ -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;;

View File

@ -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;;

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
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 类生成。

View File

@ -0,0 +1 @@
30a7b50224ea867d874cd87b220c9acbeaa9a3d3

View File

@ -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\

Some files were not shown because too many files have changed in this diff Show More