修改
This commit is contained in:
parent
b80ed1e6ce
commit
afcf2ee41a
BIN
.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
.vs/20230724_MBJC_upperpc/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.vs/20230724_MBJC_upperpc/v17/.futdcache.v2
Normal file
BIN
.vs/20230724_MBJC_upperpc/v17/.futdcache.v2
Normal file
Binary file not shown.
Binary file not shown.
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v7.bin
Normal file
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.metadata.v7.bin
Normal file
Binary file not shown.
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v7.bin
Normal file
BIN
.vs/ProjectEvaluation/20230724_mbjc_upperpc.projects.v7.bin
Normal file
Binary file not shown.
@ -8,4 +8,8 @@
|
||||
<UseWPF>true</UseWPF>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MaterialDesignThemes" Version="4.9.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
26356
MainWindow.xaml
26356
MainWindow.xaml
File diff suppressed because one or more lines are too long
@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
@ -20,9 +21,56 @@ namespace _20230724_MBJC_upperpc
|
||||
/// </summary>
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
public Single single { get; set; } = new Single();
|
||||
//Single single = new Single();
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
this.DataContext = single;
|
||||
}
|
||||
private void Button_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
//for (int i = 0; i < 60; i++)
|
||||
//{
|
||||
// Thread.Sleep(100);
|
||||
// Rotate_X += 1;
|
||||
// Rotate_Y += 1;
|
||||
// Rotate_Z += 1;
|
||||
// Refresh();
|
||||
//}
|
||||
re(new List<Single> { new Single() { Rotate_X = -180, Rotate_Y = -90, Rotate_Z = 0 },
|
||||
new Single() { Rotate_X = -90, Rotate_Y = -90, Rotate_Z = 0 },
|
||||
new Single() { Rotate_X = -90, Rotate_Y = -180, Rotate_Z = 0 },
|
||||
new Single() { Rotate_X = -90, Rotate_Y = -90, Rotate_Z = 0 },
|
||||
new Single() { Rotate_X = -90, Rotate_Y = -90, Rotate_Z = 90 },
|
||||
new Single() { Rotate_X = -90, Rotate_Y = -90, Rotate_Z = 0 }});
|
||||
}
|
||||
|
||||
private async void re(List<Single> End)
|
||||
{
|
||||
await Task.Run(() =>
|
||||
{
|
||||
for (int i = 0; i < End.Count; i++)
|
||||
{
|
||||
float a = single.Rotate_X;
|
||||
float b = single.Rotate_Y;
|
||||
float c = single.Rotate_Z;
|
||||
for (int j = 0; j < 100; j++)
|
||||
{
|
||||
Thread.Sleep(10);
|
||||
single.Rotate_X += (End[i].Rotate_X - a) / 100;
|
||||
single.Rotate_Y += (End[i].Rotate_Y - b) / 100;
|
||||
single.Rotate_Z += (End[i].Rotate_Z - c) / 100;
|
||||
}
|
||||
}
|
||||
//for (int i = 0; i < 6000; i++)
|
||||
//{
|
||||
// Thread.Sleep(1);
|
||||
// //single.Rotate_X += 0.1f;
|
||||
// single.Rotate_Y += 0.1f;
|
||||
// //single.Rotate_Z += 0.1f;
|
||||
//}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
43
NotifyBase.cs
Normal file
43
NotifyBase.cs
Normal file
@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace _20230724_MBJC_upperpc
|
||||
{
|
||||
public class NotifyBase : INotifyPropertyChanged
|
||||
{
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
//[CallerMemberName]string propName = "" 设置一个默认值 提高容错性
|
||||
public void DoNotify([CallerMemberName] string propName = "")
|
||||
{
|
||||
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propName));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets property if it does not equal existing value. Notifies listeners if change occurs.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">Type of property.</typeparam>
|
||||
/// <param name="member">The property's backing field.</param>
|
||||
/// <param name="value">The new value.</param>
|
||||
/// <param name="propertyName">Name of the property used to notify listeners. This
|
||||
/// value is optional and can be provided automatically when invoked from compilers
|
||||
/// that support <see cref="CallerMemberNameAttribute"/>.</param>
|
||||
protected virtual bool SetProperty<T>(ref T member, T value, [CallerMemberName] string? propertyName = null)
|
||||
{
|
||||
if (EqualityComparer<T>.Default.Equals(member, value))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
member = value;
|
||||
DoNotify(propertyName);
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
34
Single.cs
Normal file
34
Single.cs
Normal file
@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace _20230724_MBJC_upperpc
|
||||
{
|
||||
//角度
|
||||
public class Single : NotifyBase
|
||||
{
|
||||
private float rotate_X = -90;
|
||||
|
||||
public float Rotate_X
|
||||
{
|
||||
get { return rotate_X; }
|
||||
set { rotate_X = value; this.DoNotify(); }
|
||||
}
|
||||
private float rotate_Y = -90;
|
||||
|
||||
public float Rotate_Y
|
||||
{
|
||||
get { return rotate_Y; }
|
||||
set { rotate_Y = value; this.DoNotify(); }
|
||||
}
|
||||
private float rotate_Z;
|
||||
|
||||
public float Rotate_Z
|
||||
{
|
||||
get { return rotate_Z; }
|
||||
set { rotate_Z = value; this.DoNotify(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
23
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.deps.json
Normal file
23
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.deps.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"20230724_MBJC_upperpc/1.0.0": {
|
||||
"runtime": {
|
||||
"20230724_MBJC_upperpc.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"20230724_MBJC_upperpc/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll
Normal file
BIN
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.exe
Normal file
BIN
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.exe
Normal file
Binary file not shown.
BIN
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb
Normal file
BIN
bin/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb
Normal file
Binary file not shown.
@ -0,0 +1,15 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -44,6 +44,12 @@
|
||||
"frameworks": {
|
||||
"net6.0-windows7.0": {
|
||||
"targetAlias": "net6.0-windows",
|
||||
"dependencies": {
|
||||
"MaterialDesignThemes": {
|
||||
"target": "Package",
|
||||
"version": "[4.9.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
|
||||
@ -13,4 +13,8 @@
|
||||
<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>
|
||||
@ -1,2 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
<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>
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
5dd559ffe97ef316ab4d8d0e9da9412138e95b35
|
||||
@ -0,0 +1,20 @@
|
||||
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.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\obj\Debug\net6.0-windows\MainWindow.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\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\MainWindow.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.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
|
||||
@ -5,7 +5,58 @@
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {}
|
||||
},
|
||||
"libraries": {}
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"MaterialDesignColors/2.1.4": {
|
||||
"runtime": {
|
||||
"lib/net6.0/MaterialDesignColors.dll": {
|
||||
"assemblyVersion": "2.1.4.0",
|
||||
"fileVersion": "2.1.4.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MaterialDesignThemes/4.9.0": {
|
||||
"dependencies": {
|
||||
"MaterialDesignColors": "2.1.4",
|
||||
"Microsoft.Xaml.Behaviors.Wpf": "1.1.39"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/MaterialDesignThemes.Wpf.dll": {
|
||||
"assemblyVersion": "4.9.0.0",
|
||||
"fileVersion": "4.9.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Xaml.Behaviors.Wpf/1.1.39": {
|
||||
"runtime": {
|
||||
"lib/net5.0-windows7.0/Microsoft.Xaml.Behaviors.dll": {
|
||||
"assemblyVersion": "1.1.0.0",
|
||||
"fileVersion": "1.1.39.4716"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"MaterialDesignColors/2.1.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-C4Oy+qkjMoMPoZKyqYdCnIYtK8c0OSIHmNP73Vgc69NjiUG093xTkE7W/Ks54cTDS7fmWOtUHfwISTVTtb/YKg==",
|
||||
"path": "materialdesigncolors/2.1.4",
|
||||
"hashPath": "materialdesigncolors.2.1.4.nupkg.sha512"
|
||||
},
|
||||
"MaterialDesignThemes/4.9.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bp9Auw70j+9V7WsUMT4pc8ulVzfL0Eav/tyGgICDirxxhKJwhqtC/6PRkTUm+R1t9611xiDuk5pSUNdDV6vfOQ==",
|
||||
"path": "materialdesignthemes/4.9.0",
|
||||
"hashPath": "materialdesignthemes.4.9.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Xaml.Behaviors.Wpf/1.1.39": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-8PZKqw9QOcu42xk8puY4P1+EXHL9YGOR9b7qhaYx5cILHul456H073tj99vyPcCt0W0781T9RwHqkx507ZyUpQ==",
|
||||
"path": "microsoft.xaml.behaviors.wpf/1.1.39",
|
||||
"hashPath": "microsoft.xaml.behaviors.wpf.1.1.39.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll
Normal file
BIN
obj/Debug/net6.0-windows/20230724_MBJC_upperpc.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources
Normal file
BIN
obj/Debug/net6.0-windows/20230724_MBJC_upperpc.g.resources
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
045da831a74311370f06c69a1d7f771e919172b9
|
||||
BIN
obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb
Normal file
BIN
obj/Debug/net6.0-windows/20230724_MBJC_upperpc.pdb
Normal file
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -0,0 +1,20 @@
|
||||
20230724_MBJC_upperpc
|
||||
|
||||
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
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
|
||||
11407045341
|
||||
|
||||
5527234391
|
||||
194183970531
|
||||
MainWindow.xaml;
|
||||
|
||||
False
|
||||
|
||||
@ -12,8 +12,8 @@ TRACE;DEBUG;NET;NET6_0;NETCOREAPP
|
||||
D:\Workspace\Gitea\20230724_MBJC_upperpc\App.xaml
|
||||
11407045341
|
||||
|
||||
51294954975
|
||||
194183970531
|
||||
7-1239608373
|
||||
197-446416838
|
||||
MainWindow.xaml;
|
||||
|
||||
False
|
||||
|
||||
@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
FD:\Workspace\Gitea\20230724_MBJC_upperpc\MainWindow.xaml;;
|
||||
|
||||
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
@ -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 类生成。
|
||||
|
||||
@ -0,0 +1 @@
|
||||
30a7b50224ea867d874cd87b220c9acbeaa9a3d3
|
||||
@ -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\
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user