修改了一些样式表加了个网络传输函数
This commit is contained in:
@@ -1,4 +1,6 @@
|
|||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
using MongoDB.Driver;
|
||||||
|
using MongoDB.Driver.Core.Servers;
|
||||||
using NPOI.SS.UserModel;
|
using NPOI.SS.UserModel;
|
||||||
using NPOI.XSSF.UserModel;
|
using NPOI.XSSF.UserModel;
|
||||||
using System;
|
using System;
|
||||||
@@ -6,6 +8,8 @@ using System.Collections.Generic;
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Sockets;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -49,6 +53,21 @@ namespace Ramitta.lib
|
|||||||
Dispatcher.CurrentDispatcher.Invoke(DispatcherPriority.Background, new Action(delegate { }));
|
Dispatcher.CurrentDispatcher.Invoke(DispatcherPriority.Background, new Action(delegate { }));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
public static SolidColorBrush GenerateRandomColor(SolidColorBrush color = null)
|
||||||
|
{
|
||||||
|
// 如果 color 参数为 null,生成一个新的随机颜色
|
||||||
|
if (color == null)
|
||||||
|
{
|
||||||
|
Random random = new Random();
|
||||||
|
byte r = (byte)random.Next(0, 256); // 红色分量 0 - 255
|
||||||
|
byte g = (byte)random.Next(0, 256); // 绿色分量 0 - 255
|
||||||
|
byte b = (byte)random.Next(0, 256); // 蓝色分量 0 - 255
|
||||||
|
|
||||||
|
color = new SolidColorBrush(Color.FromRgb(r, g, b));
|
||||||
|
}
|
||||||
|
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
|
||||||
// 定义自定义异常类
|
// 定义自定义异常类
|
||||||
public class DebugbarException : Exception
|
public class DebugbarException : Exception
|
||||||
@@ -123,7 +142,14 @@ namespace Ramitta.lib
|
|||||||
}
|
}
|
||||||
public static string FileRead(string outputPath)
|
public static string FileRead(string outputPath)
|
||||||
{
|
{
|
||||||
return File.ReadAllText(outputPath);
|
try
|
||||||
|
{
|
||||||
|
return File.ReadAllText(outputPath);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取路径下所有文件和文件夹,支持传入判断文件的函数
|
// 获取路径下所有文件和文件夹,支持传入判断文件的函数
|
||||||
@@ -279,6 +305,43 @@ namespace Ramitta.lib
|
|||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
// 通过 UDP 发送消息
|
||||||
|
public static void SendUdpMessage(string _serverIp, int _serverPort,string message)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (UdpClient udpClient = new UdpClient())
|
||||||
|
{
|
||||||
|
IPEndPoint endPoint = new IPEndPoint(IPAddress.Parse(_serverIp), _serverPort);
|
||||||
|
byte[] messageBytes = Encoding.UTF8.GetBytes(message);
|
||||||
|
udpClient.Send(messageBytes, messageBytes.Length, endPoint);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Debug.WriteLine($"发送 UDP 消息失败: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 通过 TCP 发送消息
|
||||||
|
public static void SendTcpMessage(string _serverIp, int _serverPort, string message)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (TcpClient tcpClient = new TcpClient(_serverIp, _serverPort))
|
||||||
|
using (NetworkStream networkStream = tcpClient.GetStream())
|
||||||
|
{
|
||||||
|
byte[] messageBytes = Encoding.UTF8.GetBytes(message);
|
||||||
|
networkStream.Write(messageBytes, 0, messageBytes.Length);
|
||||||
|
networkStream.Flush();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Debug.WriteLine($"发送 TCP 消息失败: {ex.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 生成哈希
|
// 生成哈希
|
||||||
public static string GenerateHash(string input)
|
public static string GenerateHash(string input)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -39,9 +39,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DnsClient/1.6.1": {
|
"DnsClient/1.6.1": {
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Win32.Registry": "5.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net5.0/DnsClient.dll": {
|
"lib/net5.0/DnsClient.dll": {
|
||||||
"assemblyVersion": "1.6.1.0",
|
"assemblyVersion": "1.6.1.0",
|
||||||
@@ -51,10 +48,6 @@
|
|||||||
},
|
},
|
||||||
"EntityFramework/6.5.1": {
|
"EntityFramework/6.5.1": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"System.CodeDom": "6.0.0",
|
|
||||||
"System.ComponentModel.Annotations": "5.0.0",
|
|
||||||
"System.Configuration.ConfigurationManager": "6.0.1",
|
|
||||||
"System.Data.SqlClient": "4.8.6"
|
"System.Data.SqlClient": "4.8.6"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -92,7 +85,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||||
@@ -120,19 +112,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
|
||||||
"Microsoft.Win32.Registry/5.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.AccessControl": "6.0.0",
|
|
||||||
"System.Security.Principal.Windows": "5.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Win32.SystemEvents/6.0.0": {},
|
|
||||||
"MongoDB.Bson/3.5.0": {
|
"MongoDB.Bson/3.5.0": {
|
||||||
"dependencies": {
|
|
||||||
"System.Memory": "4.5.5",
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net6.0/MongoDB.Bson.dll": {
|
"lib/net6.0/MongoDB.Bson.dll": {
|
||||||
"assemblyVersion": "3.5.0.0",
|
"assemblyVersion": "3.5.0.0",
|
||||||
@@ -147,7 +127,6 @@
|
|||||||
"MongoDB.Bson": "3.5.0",
|
"MongoDB.Bson": "3.5.0",
|
||||||
"SharpCompress": "0.30.1",
|
"SharpCompress": "0.30.1",
|
||||||
"Snappier": "1.0.0",
|
"Snappier": "1.0.0",
|
||||||
"System.Buffers": "4.5.1",
|
|
||||||
"ZstdSharp.Port": "0.7.3"
|
"ZstdSharp.Port": "0.7.3"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -278,10 +257,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"SixLabors.ImageSharp/2.1.10": {
|
"SixLabors.ImageSharp/2.1.10": {
|
||||||
"dependencies": {
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0",
|
|
||||||
"System.Text.Encoding.CodePages": "5.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
|
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
|
||||||
"assemblyVersion": "2.0.0.0",
|
"assemblyVersion": "2.0.0.0",
|
||||||
@@ -327,19 +302,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Buffers/4.5.1": {},
|
|
||||||
"System.CodeDom/6.0.0": {},
|
|
||||||
"System.ComponentModel.Annotations/5.0.0": {},
|
|
||||||
"System.Configuration.ConfigurationManager/6.0.1": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.Cryptography.ProtectedData": "6.0.0",
|
|
||||||
"System.Security.Permissions": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Data.SqlClient/4.8.6": {
|
"System.Data.SqlClient/4.8.6": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Win32.Registry": "5.0.0",
|
|
||||||
"System.Security.Principal.Windows": "5.0.0",
|
|
||||||
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -388,11 +352,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Drawing.Common/6.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Win32.SystemEvents": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.IO.Pipelines/8.0.0": {
|
"System.IO.Pipelines/8.0.0": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net8.0/System.IO.Pipelines.dll": {
|
"lib/net8.0/System.IO.Pipelines.dll": {
|
||||||
@@ -401,9 +360,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Memory/4.5.5": {},
|
|
||||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {},
|
|
||||||
"System.Security.AccessControl/6.0.0": {},
|
|
||||||
"System.Security.Cryptography.Pkcs/8.0.1": {
|
"System.Security.Cryptography.Pkcs/8.0.1": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net8.0/System.Security.Cryptography.Pkcs.dll": {
|
"lib/net8.0/System.Security.Cryptography.Pkcs.dll": {
|
||||||
@@ -420,7 +376,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Security.Cryptography.ProtectedData/6.0.0": {},
|
|
||||||
"System.Security.Cryptography.Xml/8.0.2": {
|
"System.Security.Cryptography.Xml/8.0.2": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"System.Security.Cryptography.Pkcs": "8.0.1"
|
"System.Security.Cryptography.Pkcs": "8.0.1"
|
||||||
@@ -432,23 +387,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Security.Permissions/6.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.AccessControl": "6.0.0",
|
|
||||||
"System.Windows.Extensions": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Principal.Windows/5.0.0": {},
|
|
||||||
"System.Text.Encoding.CodePages/5.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Windows.Extensions/6.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Drawing.Common": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ZstdSharp.Port/0.7.3": {
|
"ZstdSharp.Port/0.7.3": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net7.0/ZstdSharp.dll": {
|
"lib/net7.0/ZstdSharp.dll": {
|
||||||
@@ -522,13 +460,6 @@
|
|||||||
"path": "mathnet.numerics.signed/5.0.0",
|
"path": "mathnet.numerics.signed/5.0.0",
|
||||||
"hashPath": "mathnet.numerics.signed.5.0.0.nupkg.sha512"
|
"hashPath": "mathnet.numerics.signed.5.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -550,27 +481,6 @@
|
|||||||
"path": "microsoft.io.recyclablememorystream/3.0.1",
|
"path": "microsoft.io.recyclablememorystream/3.0.1",
|
||||||
"hashPath": "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512"
|
"hashPath": "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
|
||||||
"path": "microsoft.netcore.platforms/5.0.0",
|
|
||||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Win32.Registry/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
|
|
||||||
"path": "microsoft.win32.registry/5.0.0",
|
|
||||||
"hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Win32.SystemEvents/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
|
|
||||||
"path": "microsoft.win32.systemevents/6.0.0",
|
|
||||||
"hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"MongoDB.Bson/3.5.0": {
|
"MongoDB.Bson/3.5.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -683,34 +593,6 @@
|
|||||||
"path": "stub.system.data.sqlite.core.netstandard/1.0.119",
|
"path": "stub.system.data.sqlite.core.netstandard/1.0.119",
|
||||||
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.119.nupkg.sha512"
|
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.119.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Buffers/4.5.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
|
||||||
"path": "system.buffers/4.5.1",
|
|
||||||
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
|
|
||||||
"path": "system.codedom/6.0.0",
|
|
||||||
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ComponentModel.Annotations/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
|
|
||||||
"path": "system.componentmodel.annotations/5.0.0",
|
|
||||||
"hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/6.0.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
|
|
||||||
"path": "system.configuration.configurationmanager/6.0.1",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Data.SqlClient/4.8.6": {
|
"System.Data.SqlClient/4.8.6": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -739,13 +621,6 @@
|
|||||||
"path": "system.data.sqlite.ef6/2.0.1",
|
"path": "system.data.sqlite.ef6/2.0.1",
|
||||||
"hashPath": "system.data.sqlite.ef6.2.0.1.nupkg.sha512"
|
"hashPath": "system.data.sqlite.ef6.2.0.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Drawing.Common/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
|
|
||||||
"path": "system.drawing.common/6.0.0",
|
|
||||||
"hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.IO.Pipelines/8.0.0": {
|
"System.IO.Pipelines/8.0.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -753,27 +628,6 @@
|
|||||||
"path": "system.io.pipelines/8.0.0",
|
"path": "system.io.pipelines/8.0.0",
|
||||||
"hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
|
"hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Memory/4.5.5": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
|
|
||||||
"path": "system.memory/4.5.5",
|
|
||||||
"hashPath": "system.memory.4.5.5.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
|
|
||||||
"path": "system.runtime.compilerservices.unsafe/5.0.0",
|
|
||||||
"hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.AccessControl/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
|
|
||||||
"path": "system.security.accesscontrol/6.0.0",
|
|
||||||
"hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.Pkcs/8.0.1": {
|
"System.Security.Cryptography.Pkcs/8.0.1": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -781,13 +635,6 @@
|
|||||||
"path": "system.security.cryptography.pkcs/8.0.1",
|
"path": "system.security.cryptography.pkcs/8.0.1",
|
||||||
"hashPath": "system.security.cryptography.pkcs.8.0.1.nupkg.sha512"
|
"hashPath": "system.security.cryptography.pkcs.8.0.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Security.Cryptography.ProtectedData/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/6.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.Xml/8.0.2": {
|
"System.Security.Cryptography.Xml/8.0.2": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -795,34 +642,6 @@
|
|||||||
"path": "system.security.cryptography.xml/8.0.2",
|
"path": "system.security.cryptography.xml/8.0.2",
|
||||||
"hashPath": "system.security.cryptography.xml.8.0.2.nupkg.sha512"
|
"hashPath": "system.security.cryptography.xml.8.0.2.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Security.Permissions/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
|
|
||||||
"path": "system.security.permissions/6.0.0",
|
|
||||||
"hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Principal.Windows/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
|
|
||||||
"path": "system.security.principal.windows/5.0.0",
|
|
||||||
"hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Text.Encoding.CodePages/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
|
|
||||||
"path": "system.text.encoding.codepages/5.0.0",
|
|
||||||
"hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Windows.Extensions/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
|
|
||||||
"path": "system.windows.extensions/6.0.0",
|
|
||||||
"hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"ZstdSharp.Port/0.7.3": {
|
"ZstdSharp.Port/0.7.3": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -14,7 +14,6 @@
|
|||||||
"configProperties": {
|
"configProperties": {
|
||||||
"MVVMTOOLKIT_ENABLE_INOTIFYPROPERTYCHANGING_SUPPORT": true,
|
"MVVMTOOLKIT_ENABLE_INOTIFYPROPERTYCHANGING_SUPPORT": true,
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
|
|
||||||
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
|
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -466,8 +466,9 @@
|
|||||||
</Trigger>
|
</Trigger>
|
||||||
|
|
||||||
<Trigger Property="IsEnabled" Value="False">
|
<Trigger Property="IsEnabled" Value="False">
|
||||||
<Setter Property="BorderThickness" Value="0"/>
|
<Setter Property="Foreground" Value="#717171"/>
|
||||||
<Setter TargetName="border" Property="Background" Value="Transparent" />
|
<Setter TargetName="border" Property="BorderBrush" Value="#3d3d3d" />
|
||||||
|
<Setter TargetName="border" Property="Background" Value="#333333" />
|
||||||
</Trigger>
|
</Trigger>
|
||||||
</ControlTemplate.Triggers>
|
</ControlTemplate.Triggers>
|
||||||
</ControlTemplate>
|
</ControlTemplate>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -39,9 +39,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DnsClient/1.6.1": {
|
"DnsClient/1.6.1": {
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Win32.Registry": "5.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net5.0/DnsClient.dll": {
|
"lib/net5.0/DnsClient.dll": {
|
||||||
"assemblyVersion": "1.6.1.0",
|
"assemblyVersion": "1.6.1.0",
|
||||||
@@ -51,10 +48,6 @@
|
|||||||
},
|
},
|
||||||
"EntityFramework/6.5.1": {
|
"EntityFramework/6.5.1": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.CSharp": "4.7.0",
|
|
||||||
"System.CodeDom": "6.0.0",
|
|
||||||
"System.ComponentModel.Annotations": "5.0.0",
|
|
||||||
"System.Configuration.ConfigurationManager": "6.0.1",
|
|
||||||
"System.Data.SqlClient": "4.8.6"
|
"System.Data.SqlClient": "4.8.6"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -92,7 +85,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Microsoft.CSharp/4.7.0": {},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||||
@@ -120,19 +112,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
|
||||||
"Microsoft.Win32.Registry/5.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.AccessControl": "6.0.0",
|
|
||||||
"System.Security.Principal.Windows": "5.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.Win32.SystemEvents/6.0.0": {},
|
|
||||||
"MongoDB.Bson/3.5.0": {
|
"MongoDB.Bson/3.5.0": {
|
||||||
"dependencies": {
|
|
||||||
"System.Memory": "4.5.5",
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net6.0/MongoDB.Bson.dll": {
|
"lib/net6.0/MongoDB.Bson.dll": {
|
||||||
"assemblyVersion": "3.5.0.0",
|
"assemblyVersion": "3.5.0.0",
|
||||||
@@ -147,7 +127,6 @@
|
|||||||
"MongoDB.Bson": "3.5.0",
|
"MongoDB.Bson": "3.5.0",
|
||||||
"SharpCompress": "0.30.1",
|
"SharpCompress": "0.30.1",
|
||||||
"Snappier": "1.0.0",
|
"Snappier": "1.0.0",
|
||||||
"System.Buffers": "4.5.1",
|
|
||||||
"ZstdSharp.Port": "0.7.3"
|
"ZstdSharp.Port": "0.7.3"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -278,10 +257,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"SixLabors.ImageSharp/2.1.10": {
|
"SixLabors.ImageSharp/2.1.10": {
|
||||||
"dependencies": {
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0",
|
|
||||||
"System.Text.Encoding.CodePages": "5.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
|
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
|
||||||
"assemblyVersion": "2.0.0.0",
|
"assemblyVersion": "2.0.0.0",
|
||||||
@@ -327,19 +302,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Buffers/4.5.1": {},
|
|
||||||
"System.CodeDom/6.0.0": {},
|
|
||||||
"System.ComponentModel.Annotations/5.0.0": {},
|
|
||||||
"System.Configuration.ConfigurationManager/6.0.1": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.Cryptography.ProtectedData": "6.0.0",
|
|
||||||
"System.Security.Permissions": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Data.SqlClient/4.8.6": {
|
"System.Data.SqlClient/4.8.6": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Win32.Registry": "5.0.0",
|
|
||||||
"System.Security.Principal.Windows": "5.0.0",
|
|
||||||
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
@@ -388,11 +352,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Drawing.Common/6.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Win32.SystemEvents": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.IO.Pipelines/8.0.0": {
|
"System.IO.Pipelines/8.0.0": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net8.0/System.IO.Pipelines.dll": {
|
"lib/net8.0/System.IO.Pipelines.dll": {
|
||||||
@@ -401,9 +360,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Memory/4.5.5": {},
|
|
||||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {},
|
|
||||||
"System.Security.AccessControl/6.0.0": {},
|
|
||||||
"System.Security.Cryptography.Pkcs/8.0.1": {
|
"System.Security.Cryptography.Pkcs/8.0.1": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net8.0/System.Security.Cryptography.Pkcs.dll": {
|
"lib/net8.0/System.Security.Cryptography.Pkcs.dll": {
|
||||||
@@ -420,7 +376,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Security.Cryptography.ProtectedData/6.0.0": {},
|
|
||||||
"System.Security.Cryptography.Xml/8.0.2": {
|
"System.Security.Cryptography.Xml/8.0.2": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"System.Security.Cryptography.Pkcs": "8.0.1"
|
"System.Security.Cryptography.Pkcs": "8.0.1"
|
||||||
@@ -432,23 +387,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"System.Security.Permissions/6.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.AccessControl": "6.0.0",
|
|
||||||
"System.Windows.Extensions": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Security.Principal.Windows/5.0.0": {},
|
|
||||||
"System.Text.Encoding.CodePages/5.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Windows.Extensions/6.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Drawing.Common": "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ZstdSharp.Port/0.7.3": {
|
"ZstdSharp.Port/0.7.3": {
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net7.0/ZstdSharp.dll": {
|
"lib/net7.0/ZstdSharp.dll": {
|
||||||
@@ -522,13 +460,6 @@
|
|||||||
"path": "mathnet.numerics.signed/5.0.0",
|
"path": "mathnet.numerics.signed/5.0.0",
|
||||||
"hashPath": "mathnet.numerics.signed.5.0.0.nupkg.sha512"
|
"hashPath": "mathnet.numerics.signed.5.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"Microsoft.CSharp/4.7.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
|
|
||||||
"path": "microsoft.csharp/4.7.0",
|
|
||||||
"hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -550,27 +481,6 @@
|
|||||||
"path": "microsoft.io.recyclablememorystream/3.0.1",
|
"path": "microsoft.io.recyclablememorystream/3.0.1",
|
||||||
"hashPath": "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512"
|
"hashPath": "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
|
||||||
"path": "microsoft.netcore.platforms/5.0.0",
|
|
||||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Win32.Registry/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
|
|
||||||
"path": "microsoft.win32.registry/5.0.0",
|
|
||||||
"hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.Win32.SystemEvents/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
|
|
||||||
"path": "microsoft.win32.systemevents/6.0.0",
|
|
||||||
"hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"MongoDB.Bson/3.5.0": {
|
"MongoDB.Bson/3.5.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -683,34 +593,6 @@
|
|||||||
"path": "stub.system.data.sqlite.core.netstandard/1.0.119",
|
"path": "stub.system.data.sqlite.core.netstandard/1.0.119",
|
||||||
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.119.nupkg.sha512"
|
"hashPath": "stub.system.data.sqlite.core.netstandard.1.0.119.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Buffers/4.5.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
|
||||||
"path": "system.buffers/4.5.1",
|
|
||||||
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.CodeDom/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
|
|
||||||
"path": "system.codedom/6.0.0",
|
|
||||||
"hashPath": "system.codedom.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.ComponentModel.Annotations/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
|
|
||||||
"path": "system.componentmodel.annotations/5.0.0",
|
|
||||||
"hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Configuration.ConfigurationManager/6.0.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
|
|
||||||
"path": "system.configuration.configurationmanager/6.0.1",
|
|
||||||
"hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Data.SqlClient/4.8.6": {
|
"System.Data.SqlClient/4.8.6": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -739,13 +621,6 @@
|
|||||||
"path": "system.data.sqlite.ef6/2.0.1",
|
"path": "system.data.sqlite.ef6/2.0.1",
|
||||||
"hashPath": "system.data.sqlite.ef6.2.0.1.nupkg.sha512"
|
"hashPath": "system.data.sqlite.ef6.2.0.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Drawing.Common/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
|
|
||||||
"path": "system.drawing.common/6.0.0",
|
|
||||||
"hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.IO.Pipelines/8.0.0": {
|
"System.IO.Pipelines/8.0.0": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -753,27 +628,6 @@
|
|||||||
"path": "system.io.pipelines/8.0.0",
|
"path": "system.io.pipelines/8.0.0",
|
||||||
"hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
|
"hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Memory/4.5.5": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
|
|
||||||
"path": "system.memory/4.5.5",
|
|
||||||
"hashPath": "system.memory.4.5.5.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
|
|
||||||
"path": "system.runtime.compilerservices.unsafe/5.0.0",
|
|
||||||
"hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.AccessControl/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
|
|
||||||
"path": "system.security.accesscontrol/6.0.0",
|
|
||||||
"hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.Pkcs/8.0.1": {
|
"System.Security.Cryptography.Pkcs/8.0.1": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -781,13 +635,6 @@
|
|||||||
"path": "system.security.cryptography.pkcs/8.0.1",
|
"path": "system.security.cryptography.pkcs/8.0.1",
|
||||||
"hashPath": "system.security.cryptography.pkcs.8.0.1.nupkg.sha512"
|
"hashPath": "system.security.cryptography.pkcs.8.0.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Security.Cryptography.ProtectedData/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
|
|
||||||
"path": "system.security.cryptography.protecteddata/6.0.0",
|
|
||||||
"hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Cryptography.Xml/8.0.2": {
|
"System.Security.Cryptography.Xml/8.0.2": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
@@ -795,34 +642,6 @@
|
|||||||
"path": "system.security.cryptography.xml/8.0.2",
|
"path": "system.security.cryptography.xml/8.0.2",
|
||||||
"hashPath": "system.security.cryptography.xml.8.0.2.nupkg.sha512"
|
"hashPath": "system.security.cryptography.xml.8.0.2.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"System.Security.Permissions/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
|
|
||||||
"path": "system.security.permissions/6.0.0",
|
|
||||||
"hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Security.Principal.Windows/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
|
|
||||||
"path": "system.security.principal.windows/5.0.0",
|
|
||||||
"hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Text.Encoding.CodePages/5.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
|
|
||||||
"path": "system.text.encoding.codepages/5.0.0",
|
|
||||||
"hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"System.Windows.Extensions/6.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
|
|
||||||
"path": "system.windows.extensions/6.0.0",
|
|
||||||
"hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"ZstdSharp.Port/0.7.3": {
|
"ZstdSharp.Port/0.7.3": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -14,7 +14,6 @@
|
|||||||
"configProperties": {
|
"configProperties": {
|
||||||
"MVVMTOOLKIT_ENABLE_INOTIFYPROPERTYCHANGING_SUPPORT": true,
|
"MVVMTOOLKIT_ENABLE_INOTIFYPROPERTYCHANGING_SUPPORT": true,
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
|
|
||||||
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
|
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,2 +1,62 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace XamlGeneratedNamespace {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// GeneratedInternalTypeHelper
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.10.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// CreateInstance
|
||||||
|
/// </summary>
|
||||||
|
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
|
||||||
|
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
|
||||||
|
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// GetPropertyValue
|
||||||
|
/// </summary>
|
||||||
|
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
|
||||||
|
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// SetPropertyValue
|
||||||
|
/// </summary>
|
||||||
|
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
|
||||||
|
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// CreateDelegate
|
||||||
|
/// </summary>
|
||||||
|
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
|
||||||
|
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
|
||||||
|
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
|
||||||
|
delegateType,
|
||||||
|
handler}, null)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// AddEventHandler
|
||||||
|
/// </summary>
|
||||||
|
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
|
||||||
|
eventInfo.AddEventHandler(target, handler);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ namespace XamlGeneratedNamespace {
|
|||||||
/// GeneratedInternalTypeHelper
|
/// GeneratedInternalTypeHelper
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.9.0")]
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.10.0")]
|
||||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
|
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c9f4ce4ef3fe9b36b6f089bdd81221bd51934443")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
9e45e5d712ccce1f8de6a4285d5a627e5349eedc2dac1d877e87114f2b547d82
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
b1b3ce6def66eea91973a5634330b7f21e9e88c8ab7f61bdd5970bcaec6f136f
|
3c989c84fed19b3c99d0511b1c68aa2f083667aa4c9788d35cf45e501065904e
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/c9f4ce4ef3fe9b36b6f089bdd81221bd51934443/*"}}
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -13,7 +13,7 @@ TRACE;DEBUG;NET;NET8_0;NETCOREAPP;WINDOWS;WINDOWS7_0;NET5_0_OR_GREATER;NET6_0_OR
|
|||||||
6-1361401215
|
6-1361401215
|
||||||
|
|
||||||
11-1637546402
|
11-1637546402
|
||||||
230891355276
|
230-43463638
|
||||||
Generic.xaml;Themes\CustomWindowStyle.xaml;Themes\vsStyle.xaml;winDataGrid.xaml;winTitleBar.xaml;winTreeList.xaml;
|
Generic.xaml;Themes\CustomWindowStyle.xaml;Themes\vsStyle.xaml;winDataGrid.xaml;winTitleBar.xaml;winTreeList.xaml;
|
||||||
|
|
||||||
False
|
False
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ TRACE;DEBUG;NET;NET8_0;NETCOREAPP;WINDOWS;WINDOWS7_0;NET5_0_OR_GREATER;NET6_0_OR
|
|||||||
6-1361401215
|
6-1361401215
|
||||||
|
|
||||||
13-1173563590
|
13-1173563590
|
||||||
230891355276
|
230-43463638
|
||||||
Generic.xaml;Themes\CustomWindowStyle.xaml;Themes\vsStyle.xaml;winDataGrid.xaml;winTitleBar.xaml;winTreeList.xaml;
|
Generic.xaml;Themes\CustomWindowStyle.xaml;Themes\vsStyle.xaml;winDataGrid.xaml;winTitleBar.xaml;winTreeList.xaml;
|
||||||
|
|
||||||
False
|
False
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
D:\Workspace\GitHub\Ramitta-lib\Ramitta\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs
|
|
||||||
|
|
||||||
FD:\Workspace\GitHub\Ramitta-lib\Ramitta\Themes\CustomWindowStyle.xaml;;
|
FD:\Workspace\GitHub\Ramitta-lib\Ramitta\Themes\CustomWindowStyle.xaml;;
|
||||||
FD:\Workspace\GitHub\Ramitta-lib\Ramitta\winDataGrid.xaml;;
|
FD:\Workspace\GitHub\Ramitta-lib\Ramitta\winDataGrid.xaml;;
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2bc454d2155a121b5b1172c23751bf76bd3db859")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Ramitta")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Ramitta")]
|
||||||
|
[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 @@
|
|||||||
|
fa28f7abeb811321eac69077be57d364b37f563fadd72e1ad9d3402c22306469
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.MvvmToolkitEnableINotifyPropertyChangingSupport = true
|
||||||
|
build_property._MvvmToolkitIsUsingWindowsRuntimePack = false
|
||||||
|
build_property.CsWinRTComponent =
|
||||||
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
|
build_property.CsWinRTAotWarningLevel =
|
||||||
|
build_property.TargetFramework = net8.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 = Ramitta
|
||||||
|
build_property.ProjectDir = D:\Workspace\GitHub\Ramitta-lib\Ramitta\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
{"documents":{"D:\\Workspace\\GitHub\\Ramitta-lib\\*":"https://raw.githubusercontent.com/XerolySkinner/Ramitta-lib/2bc454d2155a121b5b1172c23751bf76bd3db859/*"}}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user