重构软件框架
This commit is contained in:
parent
a3d8595a50
commit
4cf9bb67de
776
Form1.Designer.cs
generated
776
Form1.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
211
Form1.cs
211
Form1.cs
@ -14,6 +14,9 @@ using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Windows.Automation;
|
||||
using Titanium.Web.Proxy;
|
||||
using Titanium.Web.Proxy.EventArguments;
|
||||
using Titanium.Web.Proxy.Models;
|
||||
using WinLabel = System.Windows.Forms.Label;
|
||||
using WinPanel = System.Windows.Forms.Panel;
|
||||
using WinTextBox = System.Windows.Forms.TextBox;
|
||||
@ -48,6 +51,7 @@ namespace Vmianqian
|
||||
private CancellationTokenSource? _wechatHookCts;
|
||||
private CancellationTokenSource? _wechatProtocolCts;
|
||||
private CancellationTokenSource? _wechatSidCaptureCts;
|
||||
private ProxyServer? _proxyServer;
|
||||
private readonly HashSet<string> _wechatHookSeen = new(StringComparer.Ordinal);
|
||||
private readonly HashSet<string> _wechatProtocolSeen = new(StringComparer.Ordinal);
|
||||
private string _wechatProtocolLastTransId = string.Empty;
|
||||
@ -94,7 +98,6 @@ namespace Vmianqian
|
||||
private AntdUI.Label lblEmailAuthCodeTitle = null!;
|
||||
private AntdUI.Label lblWechatSidTitle = null!;
|
||||
private AntdUI.Label lblWechatFrequencyTitle = null!;
|
||||
private AntdUI.Label lblWechatPollingTitle = null!;
|
||||
private AntdUI.Label lblHeartbeatDesc = null!;
|
||||
private AntdUI.Label lblMemberPlaceholder = null!;
|
||||
private AntdUI.Switch chkHeartbeatEnabled = null!;
|
||||
@ -117,9 +120,6 @@ namespace Vmianqian
|
||||
private AntdUI.Input txtAliPid = null!;
|
||||
private NumericUpDown numAlipayInterval = null!;
|
||||
|
||||
private AntdUI.Input txtServicePort = null!;
|
||||
private AntdUI.Input txtListenPath = null!;
|
||||
|
||||
private DataGridView gridWechatLogs = null!;
|
||||
private DataGridView gridAlipayLogs = null!;
|
||||
|
||||
@ -148,10 +148,6 @@ namespace Vmianqian
|
||||
|
||||
private void InitializeDesignerLayout()
|
||||
{
|
||||
pageHome.Resize += (_, _) => LayoutHomePage();
|
||||
pageWechat.Resize += (_, _) => LayoutWechatPage();
|
||||
pageAlipay.Resize += (_, _) => LayoutAlipayPage();
|
||||
pageSettings.Resize += (_, _) => LayoutSettingsPage();
|
||||
|
||||
pageHome.HorizontalScroll.Enabled = false;
|
||||
pageHome.HorizontalScroll.Visible = false;
|
||||
@ -162,10 +158,6 @@ namespace Vmianqian
|
||||
pageSettings.HorizontalScroll.Enabled = false;
|
||||
pageSettings.HorizontalScroll.Visible = false;
|
||||
|
||||
LayoutHomePage();
|
||||
LayoutWechatPage();
|
||||
LayoutAlipayPage();
|
||||
LayoutSettingsPage();
|
||||
|
||||
if (IsInDesigner()) return;
|
||||
|
||||
@ -289,6 +281,8 @@ namespace Vmianqian
|
||||
Math.Max(24, logCard.ClientSize.Width - btnClearLog.Width - 24),
|
||||
14
|
||||
);
|
||||
btnClearLog.Visible = true;
|
||||
btnClearLog.BringToFront();
|
||||
}
|
||||
logCard.ResumeLayout(false);
|
||||
}
|
||||
@ -301,20 +295,12 @@ namespace Vmianqian
|
||||
|
||||
private void LayoutWechatPage()
|
||||
{
|
||||
const int margin = 20;
|
||||
const int gap = 16;
|
||||
var hookCard = FindCard(pageWechat, "wechat-hook");
|
||||
var protocolCard = FindCard(pageWechat, "wechat-protocol");
|
||||
var gridCard = FindCard(pageWechat, "wechat-log");
|
||||
|
||||
if (hookCard != null && protocolCard != null)
|
||||
{
|
||||
var totalWidth = Math.Max(0, pageWechat.ClientSize.Width - margin * 2 - gap);
|
||||
var hookWidth = totalWidth / 2;
|
||||
var protocolWidth = totalWidth - hookWidth;
|
||||
hookCard.Bounds = new Rectangle(margin, 20, hookWidth, 280);
|
||||
protocolCard.Bounds = new Rectangle(hookCard.Right + gap, 20, protocolWidth, 280);
|
||||
|
||||
var hookPathWidth = Math.Max(140, hookCard.ClientSize.Width - 24 - 24 - btnSelectWechatPath.Width - 12);
|
||||
txtWechatPath.Width = hookPathWidth;
|
||||
btnSelectWechatPath.Size = new Size(92, 36);
|
||||
@ -332,20 +318,13 @@ namespace Vmianqian
|
||||
lblWechatFrequencyTitle.Location = new Point(24, 146);
|
||||
numWechatInterval.Location = new Point(24, 182);
|
||||
numWechatInterval.Size = new Size(96, 30);
|
||||
lblWechatPollingTitle.Location = new Point(rightColX, 146);
|
||||
chkWheel.Location = new Point(rightColX, 198);
|
||||
btnWechatProtocolStart.Size = new Size(120, 42);
|
||||
btnWechatProtocolStart.Location = new Point(24, btnWechatHookStart.Bottom - btnWechatProtocolStart.Height);
|
||||
}
|
||||
|
||||
if (gridCard != null && hookCard != null)
|
||||
if (gridCard != null)
|
||||
{
|
||||
gridCard.Left = margin;
|
||||
gridCard.Width = Math.Max(0, pageWechat.ClientSize.Width - margin * 2);
|
||||
gridCard.Top = hookCard.Bottom + margin;
|
||||
var bottom = pageWechat.ClientSize.Height - 20;
|
||||
gridCard.Height = Math.Max(260, bottom - gridCard.Top);
|
||||
|
||||
if (gridWechatLogs != null)
|
||||
{
|
||||
gridWechatLogs.Size = new Size(Math.Max(240, gridCard.ClientSize.Width - 50), Math.Max(120, gridCard.ClientSize.Height - 76));
|
||||
@ -361,13 +340,9 @@ namespace Vmianqian
|
||||
|
||||
private void LayoutAlipayPage()
|
||||
{
|
||||
LayoutPageCards(pageAlipay, 20);
|
||||
|
||||
var gridCard = FindCard(pageAlipay, "alipay-log");
|
||||
if (gridCard != null)
|
||||
{
|
||||
var bottom = pageAlipay.ClientSize.Height - 20;
|
||||
gridCard.Height = Math.Max(260, bottom - gridCard.Top);
|
||||
numAlipayInterval.Size = new Size(96, 30);
|
||||
|
||||
if (gridAlipayLogs != null)
|
||||
@ -391,10 +366,6 @@ namespace Vmianqian
|
||||
listenCard.Top = 20;
|
||||
emailCard.Top = listenCard.Bottom + 16;
|
||||
|
||||
var listenInputWidth = Math.Max(220, listenCard.ClientSize.Width - 48);
|
||||
txtServicePort.Width = Math.Min(220, listenInputWidth);
|
||||
txtListenPath.Width = Math.Min(360, listenInputWidth);
|
||||
|
||||
var emailInputWidth = Math.Max(220, Math.Min(520, emailCard.ClientSize.Width - 48));
|
||||
txtSenderEmail.Width = emailInputWidth;
|
||||
txtSmtpHost.Width = emailInputWidth;
|
||||
@ -430,6 +401,12 @@ namespace Vmianqian
|
||||
{
|
||||
return control;
|
||||
}
|
||||
|
||||
var nested = FindCard(control, tag);
|
||||
if (nested != null)
|
||||
{
|
||||
return nested;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
@ -465,13 +442,14 @@ namespace Vmianqian
|
||||
RowHeadersVisible = false,
|
||||
AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill,
|
||||
BackgroundColor = Color.White,
|
||||
BorderStyle = BorderStyle.FixedSingle
|
||||
BorderStyle = BorderStyle.FixedSingle,
|
||||
};
|
||||
|
||||
grid.Columns.Add("Shop", "收款方");
|
||||
grid.Columns.Add("Amount", "金额");
|
||||
grid.Columns.Add("Time", "时间");
|
||||
grid.Columns.Add("Remark", "备注/订单号");
|
||||
grid.Columns.Add("OrderStatus", "订单状态");
|
||||
grid.Columns.Add("Callback", "回调状态");
|
||||
return grid;
|
||||
}
|
||||
@ -494,6 +472,7 @@ namespace Vmianqian
|
||||
grid.Columns.Add("Amount", "金额");
|
||||
grid.Columns.Add("Time", "时间");
|
||||
grid.Columns.Add("Remark", "备注");
|
||||
grid.Columns.Add("OrderStatus", "订单状态");
|
||||
grid.Columns.Add("Callback", "回调状态");
|
||||
return grid;
|
||||
}
|
||||
@ -672,8 +651,6 @@ namespace Vmianqian
|
||||
txtAliPath.Text = _config.AlipayPath;
|
||||
txtAliAppId.Text = _config.AlipayAppId;
|
||||
txtAliPid.Text = _config.AlipayUserId;
|
||||
txtServicePort.Text = _config.ListenPort.ToString();
|
||||
txtListenPath.Text = _config.ListenPath;
|
||||
numWechatInterval.Value = Math.Min(Math.Max(_config.WechatIntervalSeconds, 1), 3600);
|
||||
numAlipayInterval.Value = Math.Min(Math.Max(_config.AlipayIntervalSeconds, 1), 3600);
|
||||
chkWheel.Checked = _config.EnableWheelPolling;
|
||||
@ -695,8 +672,6 @@ namespace Vmianqian
|
||||
_config.AlipayPath = txtAliPath.Text.Trim();
|
||||
_config.AlipayAppId = txtAliAppId.Text.Trim();
|
||||
_config.AlipayUserId = txtAliPid.Text.Trim();
|
||||
_config.ListenPort = ParsePort(txtServicePort.Text);
|
||||
_config.ListenPath = string.IsNullOrWhiteSpace(txtListenPath.Text) ? "/notify/" : txtListenPath.Text.Trim();
|
||||
_config.WechatIntervalSeconds = (int)numWechatInterval.Value;
|
||||
_config.AlipayIntervalSeconds = (int)numAlipayInterval.Value;
|
||||
_config.EnableWheelPolling = chkWheel.Checked;
|
||||
@ -822,38 +797,29 @@ namespace Vmianqian
|
||||
{
|
||||
StopWechatSidCapture();
|
||||
_wechatSidCaptureCts = new CancellationTokenSource();
|
||||
var token = _wechatSidCaptureCts.Token;
|
||||
UpdateWechatMonitorButtons();
|
||||
btnWechatSidAuto.Text = "停止捕获";
|
||||
btnWechatSidAuto.Type = TTypeMini.Error;
|
||||
btnWechatSidAuto.Loading = true;
|
||||
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
while (!token.IsCancellationRequested)
|
||||
{
|
||||
try
|
||||
{
|
||||
var result = TryExtractSidFromWechatLocalFiles();
|
||||
if (!string.IsNullOrWhiteSpace(result.Sid))
|
||||
{
|
||||
BeginInvoke(() => ApplyCapturedSid(result.Sid, result.Version, result.Source));
|
||||
return;
|
||||
}
|
||||
_proxyServer = new ProxyServer();
|
||||
_proxyServer.CertificateManager.EnsureRootCertificate();
|
||||
_proxyServer.BeforeRequest += OnWechatSidProxyBeforeRequest;
|
||||
|
||||
await Task.Delay(TimeSpan.FromSeconds(2), token);
|
||||
var explicitEndPoint = new ExplicitProxyEndPoint(IPAddress.Any, 8000, true);
|
||||
_proxyServer.AddEndPoint(explicitEndPoint);
|
||||
_proxyServer.Start();
|
||||
_proxyServer.SetAsSystemHttpProxy(explicitEndPoint);
|
||||
_proxyServer.SetAsSystemHttpsProxy(explicitEndPoint);
|
||||
|
||||
Log("已启动本地代理捕获,请在微信中进入【收款小账本】。若出现证书提示,请点击“是”。");
|
||||
}
|
||||
catch (OperationCanceledException)
|
||||
catch
|
||||
{
|
||||
break;
|
||||
StopWechatSidCapture();
|
||||
throw;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
BeginInvoke(() => Log($"SID 捕获轮询异常:{ex.Message}"));
|
||||
await Task.Delay(TimeSpan.FromSeconds(2), token);
|
||||
}
|
||||
}
|
||||
}, token);
|
||||
}
|
||||
|
||||
private void StopWechatSidCapture()
|
||||
@ -861,6 +827,24 @@ namespace Vmianqian
|
||||
try { _wechatSidCaptureCts?.Cancel(); } catch { }
|
||||
try { _wechatSidCaptureCts?.Dispose(); } catch { }
|
||||
_wechatSidCaptureCts = null;
|
||||
if (_proxyServer != null)
|
||||
{
|
||||
try
|
||||
{
|
||||
_proxyServer.BeforeRequest -= OnWechatSidProxyBeforeRequest;
|
||||
_proxyServer.RestoreOriginalProxySettings();
|
||||
_proxyServer.Stop();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Log($"停止代理时发生异常:{ex.Message}");
|
||||
}
|
||||
finally
|
||||
{
|
||||
_proxyServer.Dispose();
|
||||
_proxyServer = null;
|
||||
}
|
||||
}
|
||||
UpdateWechatMonitorButtons();
|
||||
|
||||
if (btnWechatSidAuto != null)
|
||||
@ -873,6 +857,62 @@ namespace Vmianqian
|
||||
}
|
||||
}
|
||||
|
||||
private async Task OnWechatSidProxyBeforeRequest(object sender, SessionEventArgs e)
|
||||
{
|
||||
if (_wechatSidCaptureCts?.IsCancellationRequested == true)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var requestUrl = e.HttpClient.Request.Url;
|
||||
if (!requestUrl.Contains("smallbook.wxpapp.weixin.qq.com/qrappzd", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Uri.TryCreate(requestUrl, UriKind.Absolute, out var uri))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var sid = TryGetQueryParameter(uri.Query, "sid");
|
||||
var version = TryGetQueryParameter(uri.Query, "v");
|
||||
if (!string.IsNullOrWhiteSpace(sid))
|
||||
{
|
||||
BeginInvoke(() => ApplyCapturedSid(sid, string.IsNullOrWhiteSpace(version) ? "7.10.1" : version, "NetworkProxy"));
|
||||
}
|
||||
|
||||
await Task.CompletedTask;
|
||||
}
|
||||
|
||||
private static string? TryGetQueryParameter(string query, string key)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(query))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
var trimmed = query.TrimStart('?');
|
||||
var parts = trimmed.Split('&', StringSplitOptions.RemoveEmptyEntries);
|
||||
foreach (var part in parts)
|
||||
{
|
||||
var kv = part.Split('=', 2);
|
||||
if (kv.Length == 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!string.Equals(Uri.UnescapeDataString(kv[0]), key, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
return kv.Length > 1 ? Uri.UnescapeDataString(kv[1]) : string.Empty;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private void ApplyCapturedSid(string sid, string version, string source)
|
||||
{
|
||||
txtWechatId.Text = sid;
|
||||
@ -2303,10 +2343,29 @@ namespace Vmianqian
|
||||
return;
|
||||
}
|
||||
|
||||
var callbackText = callbackResult.StatusCode == HttpStatusCode.OK ? "成功" : $"失败({(int)callbackResult.StatusCode})";
|
||||
// 将单一状态拆分为两个独立的文本,向 V免签官方术语对齐
|
||||
string orderStatusText;
|
||||
string callbackText;
|
||||
|
||||
if (callbackResult.StatusCode == HttpStatusCode.OK)
|
||||
{
|
||||
orderStatusText = "完成"; // 匹配成功并推送到云端
|
||||
callbackText = "成功";
|
||||
}
|
||||
else if (callbackResult.StatusCode == HttpStatusCode.Conflict)
|
||||
{
|
||||
orderStatusText = "过期"; // 本地待支付列表中未找到对应的订单
|
||||
callbackText = "本地跳过";
|
||||
}
|
||||
else
|
||||
{
|
||||
orderStatusText = "异常"; // 网络错误或云端返回报错
|
||||
callbackText = $"失败({(int)callbackResult.StatusCode})";
|
||||
}
|
||||
|
||||
if (string.Equals(paymentEvent.Channel, "alipay", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
// 支付宝列对应关系:序号, 订单号, 金额, 时间, 备注, 订单状态, 回调状态
|
||||
gridAlipayLogs.Rows.Insert(
|
||||
0,
|
||||
gridAlipayLogs.Rows.Count + 1,
|
||||
@ -2314,20 +2373,25 @@ namespace Vmianqian
|
||||
paymentEvent.Amount.ToString("0.00"),
|
||||
paymentEvent.ReceivedAt.LocalDateTime.ToString("yyyy-MM-dd HH:mm:ss"),
|
||||
paymentEvent.Payer,
|
||||
callbackText);
|
||||
orderStatusText, // 塞入第六列:订单状态
|
||||
callbackText
|
||||
); // 塞入第七列:回调状态
|
||||
|
||||
lblAlipayStatusValue.Text = "支付宝: 在线";
|
||||
lblAlipayStatusValue.ForeColor = Color.LimeGreen;
|
||||
}
|
||||
else
|
||||
{
|
||||
// 微信列对应关系:收款方, 金额, 时间, 备注/订单号, 订单状态, 回调状态
|
||||
gridWechatLogs.Rows.Insert(
|
||||
0,
|
||||
paymentEvent.Payer,
|
||||
paymentEvent.Amount.ToString("0.00"),
|
||||
paymentEvent.ReceivedAt.LocalDateTime.ToString("yyyy-MM-dd HH:mm:ss"),
|
||||
paymentEvent.OrderNo,
|
||||
callbackText);
|
||||
orderStatusText, // 塞入第五列:订单状态
|
||||
callbackText
|
||||
); // 塞入第六列:回调状态
|
||||
|
||||
lblWechatStatusValue.Text = "微信: 在线";
|
||||
lblWechatStatusValue.ForeColor = Color.LimeGreen;
|
||||
@ -2868,6 +2932,21 @@ namespace Vmianqian
|
||||
return timestamp.Value.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
private void numWechatInterval_ValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void gridPanel1_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void label1_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public sealed class ClientConfig
|
||||
|
||||
@ -117,4 +117,10 @@
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="订单状态.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="状态.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
</root>
|
||||
@ -13,10 +13,13 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="AntdUI" Version="2.3.10" />
|
||||
<PackageReference Include="MailKit" Version="4.16.0" />
|
||||
<PackageReference Include="Titanium.Web.Proxy" Version="3.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="antdui-demo\**\*.cs" />
|
||||
<Compile Remove="obj_proxycheck\**\*.cs" />
|
||||
<Compile Remove="bin_proxycheck\**\*.cs" />
|
||||
<EmbeddedResource Remove="antdui-demo\**\*" />
|
||||
<None Remove="antdui-demo\**\*" />
|
||||
</ItemGroup>
|
||||
|
||||
BIN
bin/Debug/net10.0-windows/BouncyCastle.Crypto.dll
Normal file
BIN
bin/Debug/net10.0-windows/BouncyCastle.Crypto.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net10.0-windows/BrotliSharpLib.dll
Normal file
BIN
bin/Debug/net10.0-windows/BrotliSharpLib.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net10.0-windows/Titanium.Web.Proxy.dll
Normal file
BIN
bin/Debug/net10.0-windows/Titanium.Web.Proxy.dll
Normal file
Binary file not shown.
@ -9,7 +9,8 @@
|
||||
"Vmianqian/1.0.0": {
|
||||
"dependencies": {
|
||||
"AntdUI": "2.3.10",
|
||||
"MailKit": "4.16.0"
|
||||
"MailKit": "4.16.0",
|
||||
"Titanium.Web.Proxy": "3.2.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Vmianqian.dll": {}
|
||||
@ -31,6 +32,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll": {
|
||||
"assemblyVersion": "0.3.2.0",
|
||||
"fileVersion": "0.3.3.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"dependencies": {
|
||||
"MimeKit": "4.16.0"
|
||||
@ -52,6 +61,26 @@
|
||||
"fileVersion": "4.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {
|
||||
"assemblyVersion": "1.8.8.0",
|
||||
"fileVersion": "1.8.8.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"dependencies": {
|
||||
"BrotliSharpLib": "0.3.3",
|
||||
"Portable.BouncyCastle": "1.8.8"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll": {
|
||||
"assemblyVersion": "1.0.1.0",
|
||||
"fileVersion": "1.0.1.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -75,6 +104,13 @@
|
||||
"path": "bouncycastle.cryptography/2.6.2",
|
||||
"hashPath": "bouncycastle.cryptography.2.6.2.nupkg.sha512"
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-/z74VNg6etlQK/N1mSD5Tz2qQUZqc3RMiuv2F8Q/MOfvg4l7a6lDYhQQTPd9s9saSokh1GqUD7JTuunOiQid8w==",
|
||||
"path": "brotlisharplib/0.3.3",
|
||||
"hashPath": "brotlisharplib.0.3.3.nupkg.sha512"
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@ -88,6 +124,20 @@
|
||||
"sha512": "sha512-X0LFxeM4gPRIhODyY/HYS9b+zRZ7y//v59rFzgS6wLxcPuZThnMtNZHtrr0fjLyRRkg3gqJBtvW36XfUzZ7Djw==",
|
||||
"path": "mimekit/4.16.0",
|
||||
"hashPath": "mimekit.4.16.0.nupkg.sha512"
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
|
||||
"path": "portable.bouncycastle/1.8.8",
|
||||
"hashPath": "portable.bouncycastle.1.8.8.nupkg.sha512"
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-XHchT17Cqr4lX+p4+T4qMPOMfBBvXgIkjy6imy4guNWxLTPKyCaLv/VTiHgk4CwXnXTHlga7KWT1agNCbjwYYg==",
|
||||
"path": "titanium.web.proxy/3.2.0",
|
||||
"hashPath": "titanium.web.proxy.3.2.0.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -6,9 +6,9 @@
|
||||
"SmtpPort": 465,
|
||||
"NotifyEmail": "1066960883@qq.com",
|
||||
"EmailAuthCode": "TPPMKSMvCadyzu3m",
|
||||
"WechatPath": "D:\\Softwares\\Tencent\\Weixin\\Weixin.exe",
|
||||
"WechatSid": "",
|
||||
"WechatApiVersion": "7.10.1",
|
||||
"WechatPath": "C:\\Softwares\\Tencent\\Weixin\\Weixin.exe",
|
||||
"WechatSid": "AAEtSt7xaW0QXPhIoqOM06pwoIyXWmy1u8jFoBF83zvIjA",
|
||||
"WechatApiVersion": "7.10.2",
|
||||
"AlipayPath": "",
|
||||
"AlipayAppId": "",
|
||||
"AlipayUserId": "",
|
||||
|
||||
BIN
bin/Debug/net10.0-windows/rootCert.pfx
Normal file
BIN
bin/Debug/net10.0-windows/rootCert.pfx
Normal file
Binary file not shown.
@ -14,12 +14,12 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Vmianqian")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b8577139b743128e6d1f7535c4e26f8b9f8ae07e")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a3d8595a50353d13747bd605c96fe35f2f9be2f3")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Vmianqian")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Vmianqian")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
|
||||
@ -1 +1 @@
|
||||
2bf683a342db48dd63c7773755779041e948fbfa65b1232aa9ccc9ab7062c89c
|
||||
b485efd0b4f1ef3ebf2f86472e1044cdcb234120ac1fadab6acbfeaad6c81be6
|
||||
|
||||
@ -16,7 +16,7 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Vmianqian
|
||||
build_property.ProjectDir = E:\Demos\DemoOwns\C\VmianqianC\
|
||||
build_property.ProjectDir = E:\Demo\C\Vmianqian\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
a7b3445afcbd56fec3c73f3a521fa72c62329fb7fbf05cdc5a48d209a06f572f
|
||||
f5a7563dfce5232e1c5a9116ced46141bcc1701be44a9504f149a9339e3409e9
|
||||
|
||||
@ -1,22 +1,3 @@
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.deps.json
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.runtimeconfig.json
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.pdb
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.Form1.resources
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.GenerateResource.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.AssemblyInfoInputs.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.AssemblyInfo.cs
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.CoreCompileInputs.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\refint\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.pdb
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.genruntimeconfig.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\ref\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\AntdUI.dll
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.AssemblyReference.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.Up2Date
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.exe
|
||||
E:\Demo\C\Vmianqian\build_verify\Vmianqian.deps.json
|
||||
E:\Demo\C\Vmianqian\build_verify\Vmianqian.runtimeconfig.json
|
||||
E:\Demo\C\Vmianqian\build_verify\Vmianqian.dll
|
||||
@ -62,3 +43,28 @@ E:\Demos\DemoOwns\C\VmianqianC\build-temp\AntdUI.dll
|
||||
E:\Demos\DemoOwns\C\VmianqianC\build-temp\BouncyCastle.Cryptography.dll
|
||||
E:\Demos\DemoOwns\C\VmianqianC\build-temp\MailKit.dll
|
||||
E:\Demos\DemoOwns\C\VmianqianC\build-temp\MimeKit.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.exe
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.deps.json
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.runtimeconfig.json
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Vmianqian.pdb
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\AntdUI.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\BouncyCastle.Cryptography.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\MailKit.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\MimeKit.dll
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.AssemblyReference.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.Form1.resources
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.GenerateResource.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.AssemblyInfoInputs.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.AssemblyInfo.cs
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.CoreCompileInputs.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.csproj.Up2Date
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\refint\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.pdb
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\Vmianqian.genruntimeconfig.cache
|
||||
E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\ref\Vmianqian.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\BrotliSharpLib.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\BouncyCastle.Crypto.dll
|
||||
E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Titanium.Web.Proxy.dll
|
||||
|
||||
Binary file not shown.
@ -22,6 +22,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll": {
|
||||
"assemblyVersion": "0.3.2.0",
|
||||
"fileVersion": "0.3.3.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"dependencies": {
|
||||
"MimeKit": "4.16.0"
|
||||
@ -43,6 +51,26 @@
|
||||
"fileVersion": "4.16.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {
|
||||
"assemblyVersion": "1.8.8.0",
|
||||
"fileVersion": "1.8.8.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"dependencies": {
|
||||
"BrotliSharpLib": "0.3.3",
|
||||
"Portable.BouncyCastle": "1.8.8"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll": {
|
||||
"assemblyVersion": "1.0.1.0",
|
||||
"fileVersion": "1.0.1.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -61,6 +89,13 @@
|
||||
"path": "bouncycastle.cryptography/2.6.2",
|
||||
"hashPath": "bouncycastle.cryptography.2.6.2.nupkg.sha512"
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-/z74VNg6etlQK/N1mSD5Tz2qQUZqc3RMiuv2F8Q/MOfvg4l7a6lDYhQQTPd9s9saSokh1GqUD7JTuunOiQid8w==",
|
||||
"path": "brotlisharplib/0.3.3",
|
||||
"hashPath": "brotlisharplib.0.3.3.nupkg.sha512"
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@ -74,6 +109,20 @@
|
||||
"sha512": "sha512-X0LFxeM4gPRIhODyY/HYS9b+zRZ7y//v59rFzgS6wLxcPuZThnMtNZHtrr0fjLyRRkg3gqJBtvW36XfUzZ7Djw==",
|
||||
"path": "mimekit/4.16.0",
|
||||
"hashPath": "mimekit.4.16.0.nupkg.sha512"
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
|
||||
"path": "portable.bouncycastle/1.8.8",
|
||||
"hashPath": "portable.bouncycastle.1.8.8.nupkg.sha512"
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-XHchT17Cqr4lX+p4+T4qMPOMfBBvXgIkjy6imy4guNWxLTPKyCaLv/VTiHgk4CwXnXTHlga7KWT1agNCbjwYYg==",
|
||||
"path": "titanium.web.proxy/3.2.0",
|
||||
"hashPath": "titanium.web.proxy.3.2.0.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -12,9 +12,9 @@
|
||||
}
|
||||
],
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\heros\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\heros\\.nuget\\packages",
|
||||
"D:\\Softwares\\Microsoft\\VisualStudio\\Shared\\NuGetPackages"
|
||||
"C:\\Users\\Administrator\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages",
|
||||
"C:\\Softwares\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
|
||||
|
||||
Binary file not shown.
@ -1 +1 @@
|
||||
bfd4fda30425a127e04d84d69f89302f1a5d0a22c65f909e0dc14e06f1be3226
|
||||
06af8958efc8199d17b3e5352714ede4c860a98abdd43801bf6807d2659e5f95
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,23 +1,23 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\Demos\\DemoOwns\\C\\VmianqianC\\Vmianqian.csproj": {}
|
||||
"E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\Demos\\DemoOwns\\C\\VmianqianC\\Vmianqian.csproj": {
|
||||
"E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Demos\\DemoOwns\\C\\VmianqianC\\Vmianqian.csproj",
|
||||
"projectUniqueName": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"projectName": "Vmianqian",
|
||||
"projectPath": "E:\\Demos\\DemoOwns\\C\\VmianqianC\\Vmianqian.csproj",
|
||||
"packagesPath": "C:\\Users\\heros\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Demos\\DemoOwns\\C\\VmianqianC\\obj\\",
|
||||
"projectPath": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Demo\\C\\Vmianqian\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"D:\\Softwares\\Microsoft\\VisualStudio\\Shared\\NuGetPackages"
|
||||
"C:\\Softwares\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\heros\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@ -26,10 +26,12 @@
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net10.0-windows7.0": {
|
||||
"net10.0-windows": {
|
||||
"framework": "net10.0-windows7.0",
|
||||
"targetAlias": "net10.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
@ -47,7 +49,8 @@
|
||||
"SdkAnalysisLevel": "10.0.200"
|
||||
},
|
||||
"frameworks": {
|
||||
"net10.0-windows7.0": {
|
||||
"net10.0-windows": {
|
||||
"framework": "net10.0-windows7.0",
|
||||
"targetAlias": "net10.0-windows",
|
||||
"dependencies": {
|
||||
"AntdUI": {
|
||||
@ -57,6 +60,10 @@
|
||||
"MailKit": {
|
||||
"target": "Package",
|
||||
"version": "[4.16.0, )"
|
||||
},
|
||||
"Titanium.Web.Proxy": {
|
||||
"target": "Package",
|
||||
"version": "[3.2.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
@ -78,7 +85,7 @@
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json",
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.202/PortableRuntimeIdentifierGraph.json",
|
||||
"packagesToPrune": {
|
||||
"Microsoft.CSharp": "(,4.7.32767]",
|
||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
||||
|
||||
@ -5,12 +5,12 @@
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\heros\.nuget\packages\;D:\Softwares\Microsoft\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Softwares\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\heros\.nuget\packages\" />
|
||||
<SourceRoot Include="D:\Softwares\Microsoft\VisualStudio\Shared\NuGetPackages\" />
|
||||
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Softwares\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@ -31,6 +31,19 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@ -62,6 +75,32 @@
|
||||
"related": ".dll.config;.pdb;.xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"BrotliSharpLib": "0.3.3",
|
||||
"Portable.BouncyCastle": "1.8.8"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -113,6 +152,33 @@
|
||||
"packageIcon.png"
|
||||
]
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"sha512": "/z74VNg6etlQK/N1mSD5Tz2qQUZqc3RMiuv2F8Q/MOfvg4l7a6lDYhQQTPd9s9saSokh1GqUD7JTuunOiQid8w==",
|
||||
"type": "package",
|
||||
"path": "brotlisharplib/0.3.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"brotlisharplib.0.3.3.nupkg.sha512",
|
||||
"brotlisharplib.nuspec",
|
||||
"lib/net20/BrotliSharpLib.dll",
|
||||
"lib/net20/BrotliSharpLib.xml",
|
||||
"lib/net35/BrotliSharpLib.dll",
|
||||
"lib/net35/BrotliSharpLib.xml",
|
||||
"lib/net40/BrotliSharpLib.dll",
|
||||
"lib/net40/BrotliSharpLib.xml",
|
||||
"lib/net45/BrotliSharpLib.dll",
|
||||
"lib/net45/BrotliSharpLib.xml",
|
||||
"lib/net451/BrotliSharpLib.dll",
|
||||
"lib/net451/BrotliSharpLib.xml",
|
||||
"lib/netstandard1.1/BrotliSharpLib.dll",
|
||||
"lib/netstandard1.1/BrotliSharpLib.xml",
|
||||
"lib/netstandard1.3/BrotliSharpLib.dll",
|
||||
"lib/netstandard1.3/BrotliSharpLib.xml",
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll",
|
||||
"lib/netstandard2.0/BrotliSharpLib.xml"
|
||||
]
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"sha512": "trJ82DOpAmo8i1jO1vNE+dGn4mPRyeYfy4swRcAGgMJhPoI1Kohf4OFJJf0+YIj4iUxgxPn8W+ht7e7KiYzSjg==",
|
||||
"type": "package",
|
||||
@ -195,32 +261,63 @@
|
||||
"mimekit.4.16.0.nupkg.sha512",
|
||||
"mimekit.nuspec"
|
||||
]
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"sha512": "1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
|
||||
"type": "package",
|
||||
"path": "portable.bouncycastle/1.8.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net40/BouncyCastle.Crypto.dll",
|
||||
"lib/net40/BouncyCastle.Crypto.xml",
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll",
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.xml",
|
||||
"portable.bouncycastle.1.8.8.nupkg.sha512",
|
||||
"portable.bouncycastle.nuspec"
|
||||
]
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"sha512": "XHchT17Cqr4lX+p4+T4qMPOMfBBvXgIkjy6imy4guNWxLTPKyCaLv/VTiHgk4CwXnXTHlga7KWT1agNCbjwYYg==",
|
||||
"type": "package",
|
||||
"path": "titanium.web.proxy/3.2.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net451/Titanium.Web.Proxy.dll",
|
||||
"lib/net461/Titanium.Web.Proxy.dll",
|
||||
"lib/netstandard2.0/Titanium.Web.Proxy.dll",
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll",
|
||||
"titanium.web.proxy.3.2.0.nupkg.sha512",
|
||||
"titanium.web.proxy.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net10.0-windows7.0": [
|
||||
"AntdUI >= 2.3.10",
|
||||
"MailKit >= 4.16.0"
|
||||
"MailKit >= 4.16.0",
|
||||
"Titanium.Web.Proxy >= 3.2.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\heros\\.nuget\\packages\\": {},
|
||||
"D:\\Softwares\\Microsoft\\VisualStudio\\Shared\\NuGetPackages": {}
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\": {},
|
||||
"C:\\Softwares\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "e:\\Demos\\DemoOwns\\C\\VmianqianC\\Vmianqian.csproj",
|
||||
"projectUniqueName": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"projectName": "Vmianqian",
|
||||
"projectPath": "e:\\Demos\\DemoOwns\\C\\VmianqianC\\Vmianqian.csproj",
|
||||
"packagesPath": "C:\\Users\\heros\\.nuget\\packages\\",
|
||||
"outputPath": "e:\\Demos\\DemoOwns\\C\\VmianqianC\\obj\\",
|
||||
"projectPath": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Demo\\C\\Vmianqian\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"D:\\Softwares\\Microsoft\\VisualStudio\\Shared\\NuGetPackages"
|
||||
"C:\\Softwares\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\heros\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@ -229,6 +326,7 @@
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
@ -260,6 +358,10 @@
|
||||
"MailKit": {
|
||||
"target": "Package",
|
||||
"version": "[4.16.0, )"
|
||||
},
|
||||
"Titanium.Web.Proxy": {
|
||||
"target": "Package",
|
||||
"version": "[3.2.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
@ -281,7 +383,7 @@
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.201/PortableRuntimeIdentifierGraph.json",
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.202/PortableRuntimeIdentifierGraph.json",
|
||||
"packagesToPrune": {
|
||||
"Microsoft.CSharp": "(,4.7.32767]",
|
||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
||||
|
||||
@ -1,13 +1,16 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "DphbmbH3VSw=",
|
||||
"dgSpecHash": "IdXVTdj4e7A=",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\Demos\\DemoOwns\\C\\VmianqianC\\Vmianqian.csproj",
|
||||
"projectFilePath": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\heros\\.nuget\\packages\\antdui\\2.3.10\\antdui.2.3.10.nupkg.sha512",
|
||||
"C:\\Users\\heros\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\bouncycastle.cryptography.2.6.2.nupkg.sha512",
|
||||
"C:\\Users\\heros\\.nuget\\packages\\mailkit\\4.16.0\\mailkit.4.16.0.nupkg.sha512",
|
||||
"C:\\Users\\heros\\.nuget\\packages\\mimekit\\4.16.0\\mimekit.4.16.0.nupkg.sha512"
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\antdui\\2.3.10\\antdui.2.3.10.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\bouncycastle.cryptography.2.6.2.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\brotlisharplib\\0.3.3\\brotlisharplib.0.3.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mailkit\\4.16.0\\mailkit.4.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mimekit\\4.16.0\\mimekit.4.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\portable.bouncycastle\\1.8.8\\portable.bouncycastle.1.8.8.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\titanium.web.proxy\\3.2.0\\titanium.web.proxy.3.2.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
|
||||
@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Vmianqian")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a3d8595a50353d13747bd605c96fe35f2f9be2f3")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Vmianqian")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Vmianqian")]
|
||||
[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 @@
|
||||
b485efd0b4f1ef3ebf2f86472e1044cdcb234120ac1fadab6acbfeaad6c81be6
|
||||
BIN
obj_proxycheck/Debug/net10.0-windows/Vmianqian.Form1.resources
Normal file
BIN
obj_proxycheck/Debug/net10.0-windows/Vmianqian.Form1.resources
Normal file
Binary file not shown.
@ -0,0 +1,24 @@
|
||||
is_global = true
|
||||
build_property.ApplicationManifest =
|
||||
build_property.StartupObject =
|
||||
build_property.ApplicationDefaultFont =
|
||||
build_property.ApplicationHighDpiMode =
|
||||
build_property.ApplicationUseCompatibleTextRendering =
|
||||
build_property.ApplicationVisualStyles =
|
||||
build_property.TargetFramework = net10.0-windows
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v10.0
|
||||
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 = Vmianqian
|
||||
build_property.ProjectDir = E:\Demo\C\Vmianqian\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
||||
build_property.EffectiveAnalysisLevelStyle = 10.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.Drawing;
|
||||
global using System.Linq;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
global using System.Windows.Forms;
|
||||
BIN
obj_proxycheck/Debug/net10.0-windows/Vmianqian.assets.cache
Normal file
BIN
obj_proxycheck/Debug/net10.0-windows/Vmianqian.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
26affb128d211a48ae4f5261f949bb7f6b5c924d0043fc128f7734d49a62c523
|
||||
@ -0,0 +1,7 @@
|
||||
E:\Demo\C\Vmianqian\obj_proxycheck\Debug\net10.0-windows\Vmianqian.csproj.AssemblyReference.cache
|
||||
E:\Demo\C\Vmianqian\obj_proxycheck\Debug\net10.0-windows\Vmianqian.Form1.resources
|
||||
E:\Demo\C\Vmianqian\obj_proxycheck\Debug\net10.0-windows\Vmianqian.csproj.GenerateResource.cache
|
||||
E:\Demo\C\Vmianqian\obj_proxycheck\Debug\net10.0-windows\Vmianqian.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\Demo\C\Vmianqian\obj_proxycheck\Debug\net10.0-windows\Vmianqian.AssemblyInfoInputs.cache
|
||||
E:\Demo\C\Vmianqian\obj_proxycheck\Debug\net10.0-windows\Vmianqian.AssemblyInfo.cs
|
||||
E:\Demo\C\Vmianqian\obj_proxycheck\Debug\net10.0-windows\Vmianqian.csproj.CoreCompileInputs.cache
|
||||
Binary file not shown.
381
obj_proxycheck/Vmianqian.csproj.nuget.dgspec.json
Normal file
381
obj_proxycheck/Vmianqian.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,381 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"projectName": "Vmianqian",
|
||||
"projectPath": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Demo\\C\\Vmianqian\\obj_proxycheck/",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Softwares\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net10.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net10.0-windows7.0": {
|
||||
"targetAlias": "net10.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "all"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.200"
|
||||
},
|
||||
"frameworks": {
|
||||
"net10.0-windows7.0": {
|
||||
"targetAlias": "net10.0-windows",
|
||||
"dependencies": {
|
||||
"AntdUI": {
|
||||
"target": "Package",
|
||||
"version": "[2.3.10, )"
|
||||
},
|
||||
"MailKit": {
|
||||
"target": "Package",
|
||||
"version": "[4.16.0, )"
|
||||
},
|
||||
"Titanium.Web.Proxy": {
|
||||
"target": "Package",
|
||||
"version": "[3.2.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
},
|
||||
"Microsoft.WindowsDesktop.App": {
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.202/PortableRuntimeIdentifierGraph.json",
|
||||
"packagesToPrune": {
|
||||
"Microsoft.CSharp": "(,4.7.32767]",
|
||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
||||
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
||||
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
||||
"Microsoft.Win32.Registry.AccessControl": "(,10.0.32767]",
|
||||
"Microsoft.Win32.SystemEvents": "(,10.0.32767]",
|
||||
"runtime.any.System.Collections": "(,4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
||||
"runtime.any.System.Globalization": "(,4.3.32767]",
|
||||
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
||||
"runtime.any.System.IO": "(,4.3.32767]",
|
||||
"runtime.any.System.Reflection": "(,4.3.32767]",
|
||||
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
||||
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
||||
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
||||
"runtime.any.System.Runtime": "(,4.3.32767]",
|
||||
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
||||
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
||||
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
||||
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
||||
"runtime.aot.System.Collections": "(,4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
||||
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
||||
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
||||
"runtime.aot.System.IO": "(,4.3.32767]",
|
||||
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
||||
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
||||
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
||||
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
||||
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
||||
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
||||
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
||||
"runtime.unix.System.Console": "(,4.3.32767]",
|
||||
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
||||
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
||||
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
||||
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
||||
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
||||
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
||||
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
||||
"runtime.win.System.Console": "(,4.3.32767]",
|
||||
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
||||
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
||||
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
||||
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
||||
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"System.AppContext": "(,4.3.32767]",
|
||||
"System.Buffers": "(,5.0.32767]",
|
||||
"System.CodeDom": "(,10.0.32767]",
|
||||
"System.Collections": "(,4.3.32767]",
|
||||
"System.Collections.Concurrent": "(,4.3.32767]",
|
||||
"System.Collections.Immutable": "(,10.0.32767]",
|
||||
"System.Collections.NonGeneric": "(,4.3.32767]",
|
||||
"System.Collections.Specialized": "(,4.3.32767]",
|
||||
"System.ComponentModel": "(,4.3.32767]",
|
||||
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
||||
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
||||
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
||||
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
||||
"System.Configuration.ConfigurationManager": "(,10.0.32767]",
|
||||
"System.Console": "(,4.3.32767]",
|
||||
"System.Data.Common": "(,4.3.32767]",
|
||||
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
||||
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
||||
"System.Diagnostics.Debug": "(,4.3.32767]",
|
||||
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
||||
"System.Diagnostics.EventLog": "(,10.0.32767]",
|
||||
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
||||
"System.Diagnostics.PerformanceCounter": "(,10.0.32767]",
|
||||
"System.Diagnostics.Process": "(,4.3.32767]",
|
||||
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
||||
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
||||
"System.Diagnostics.Tools": "(,4.3.32767]",
|
||||
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
||||
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
||||
"System.DirectoryServices": "(,10.0.32767]",
|
||||
"System.Drawing.Common": "(,10.0.32767]",
|
||||
"System.Drawing.Primitives": "(,4.3.32767]",
|
||||
"System.Dynamic.Runtime": "(,4.3.32767]",
|
||||
"System.Formats.Asn1": "(,10.0.32767]",
|
||||
"System.Formats.Nrbf": "(,10.0.32767]",
|
||||
"System.Formats.Tar": "(,10.0.32767]",
|
||||
"System.Globalization": "(,4.3.32767]",
|
||||
"System.Globalization.Calendars": "(,4.3.32767]",
|
||||
"System.Globalization.Extensions": "(,4.3.32767]",
|
||||
"System.IO": "(,4.3.32767]",
|
||||
"System.IO.Compression": "(,4.3.32767]",
|
||||
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
||||
"System.IO.FileSystem": "(,4.3.32767]",
|
||||
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
||||
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
||||
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
||||
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
||||
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
||||
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
||||
"System.IO.Packaging": "(,10.0.32767]",
|
||||
"System.IO.Pipelines": "(,10.0.32767]",
|
||||
"System.IO.Pipes": "(,4.3.32767]",
|
||||
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
||||
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
||||
"System.Linq": "(,4.3.32767]",
|
||||
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
||||
"System.Linq.Expressions": "(,4.3.32767]",
|
||||
"System.Linq.Parallel": "(,4.3.32767]",
|
||||
"System.Linq.Queryable": "(,4.3.32767]",
|
||||
"System.Memory": "(,5.0.32767]",
|
||||
"System.Net.Http": "(,4.3.32767]",
|
||||
"System.Net.Http.Json": "(,10.0.32767]",
|
||||
"System.Net.NameResolution": "(,4.3.32767]",
|
||||
"System.Net.NetworkInformation": "(,4.3.32767]",
|
||||
"System.Net.Ping": "(,4.3.32767]",
|
||||
"System.Net.Primitives": "(,4.3.32767]",
|
||||
"System.Net.Requests": "(,4.3.32767]",
|
||||
"System.Net.Security": "(,4.3.32767]",
|
||||
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
||||
"System.Net.Sockets": "(,4.3.32767]",
|
||||
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
||||
"System.Net.WebSockets": "(,4.3.32767]",
|
||||
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
||||
"System.Numerics.Vectors": "(,5.0.32767]",
|
||||
"System.ObjectModel": "(,4.3.32767]",
|
||||
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
||||
"System.Private.Uri": "(,4.3.32767]",
|
||||
"System.Reflection": "(,4.3.32767]",
|
||||
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
||||
"System.Reflection.Emit": "(,4.7.32767]",
|
||||
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
||||
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
||||
"System.Reflection.Extensions": "(,4.3.32767]",
|
||||
"System.Reflection.Metadata": "(,10.0.32767]",
|
||||
"System.Reflection.Primitives": "(,4.3.32767]",
|
||||
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
||||
"System.Resources.Extensions": "(,10.0.32767]",
|
||||
"System.Resources.Reader": "(,4.3.32767]",
|
||||
"System.Resources.ResourceManager": "(,4.3.32767]",
|
||||
"System.Resources.Writer": "(,4.3.32767]",
|
||||
"System.Runtime": "(,4.3.32767]",
|
||||
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
||||
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
||||
"System.Runtime.Extensions": "(,4.3.32767]",
|
||||
"System.Runtime.Handles": "(,4.3.32767]",
|
||||
"System.Runtime.InteropServices": "(,4.3.32767]",
|
||||
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
||||
"System.Runtime.Loader": "(,4.3.32767]",
|
||||
"System.Runtime.Numerics": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
||||
"System.Security.AccessControl": "(,6.0.32767]",
|
||||
"System.Security.Claims": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
||||
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
||||
"System.Security.Cryptography.Pkcs": "(,10.0.32767]",
|
||||
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.ProtectedData": "(,10.0.32767]",
|
||||
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Xml": "(,10.0.32767]",
|
||||
"System.Security.Permissions": "(,10.0.32767]",
|
||||
"System.Security.Principal": "(,4.3.32767]",
|
||||
"System.Security.Principal.Windows": "(,5.0.32767]",
|
||||
"System.Security.SecureString": "(,4.3.32767]",
|
||||
"System.Text.Encoding": "(,4.3.32767]",
|
||||
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
||||
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
||||
"System.Text.Encodings.Web": "(,10.0.32767]",
|
||||
"System.Text.Json": "(,10.0.32767]",
|
||||
"System.Text.RegularExpressions": "(,4.3.32767]",
|
||||
"System.Threading": "(,4.3.32767]",
|
||||
"System.Threading.AccessControl": "(,10.0.32767]",
|
||||
"System.Threading.Channels": "(,10.0.32767]",
|
||||
"System.Threading.Overlapped": "(,4.3.32767]",
|
||||
"System.Threading.Tasks": "(,4.3.32767]",
|
||||
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
||||
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
||||
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
||||
"System.Threading.Thread": "(,4.3.32767]",
|
||||
"System.Threading.ThreadPool": "(,4.3.32767]",
|
||||
"System.Threading.Timer": "(,4.3.32767]",
|
||||
"System.ValueTuple": "(,4.5.32767]",
|
||||
"System.Windows.Extensions": "(,10.0.32767]",
|
||||
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
||||
"System.Xml.XDocument": "(,4.3.32767]",
|
||||
"System.Xml.XmlDocument": "(,4.3.32767]",
|
||||
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
||||
"System.Xml.XPath": "(,4.3.32767]",
|
||||
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
obj_proxycheck/Vmianqian.csproj.nuget.g.props
Normal file
16
obj_proxycheck/Vmianqian.csproj.nuget.g.props
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Softwares\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Softwares\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
2
obj_proxycheck/Vmianqian.csproj.nuget.g.targets
Normal file
2
obj_proxycheck/Vmianqian.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
680
obj_proxycheck/project.assets.json
Normal file
680
obj_proxycheck/project.assets.json
Normal file
@ -0,0 +1,680 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net10.0-windows7.0": {
|
||||
"AntdUI/2.3.10": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net10.0-windows7.0/AntdUI.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net10.0-windows7.0/AntdUI.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"frameworkReferences": [
|
||||
"Microsoft.WindowsDesktop.App.WindowsForms"
|
||||
]
|
||||
},
|
||||
"BouncyCastle.Cryptography/2.6.2": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net6.0/BouncyCastle.Cryptography.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/BouncyCastle.Cryptography.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"MimeKit": "4.16.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net10.0/MailKit.dll": {
|
||||
"related": ".dll.config;.pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net10.0/MailKit.dll": {
|
||||
"related": ".dll.config;.pdb;.xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MimeKit/4.16.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"BouncyCastle.Cryptography": "2.6.2"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net10.0/MimeKit.dll": {
|
||||
"related": ".dll.config;.pdb;.xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net10.0/MimeKit.dll": {
|
||||
"related": ".dll.config;.pdb;.xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"BrotliSharpLib": "0.3.3",
|
||||
"Portable.BouncyCastle": "1.8.8"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"AntdUI/2.3.10": {
|
||||
"sha512": "twjNYhVIw08ydcQsBC5c7/59WBXVqba4kulN48ejxUz2i37xJU6ukYqUtxEFhiQtVzmu8cmGYAjZ4HM6BOKZwg==",
|
||||
"type": "package",
|
||||
"path": "antdui/2.3.10",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"README.md",
|
||||
"antdui.2.3.10.nupkg.sha512",
|
||||
"antdui.nuspec",
|
||||
"lib/net10.0-windows7.0/AntdUI.dll",
|
||||
"lib/net10.0-windows7.0/AntdUI.xml",
|
||||
"lib/net40/AntdUI.dll",
|
||||
"lib/net40/AntdUI.xml",
|
||||
"lib/net46/AntdUI.dll",
|
||||
"lib/net46/AntdUI.xml",
|
||||
"lib/net48/AntdUI.dll",
|
||||
"lib/net48/AntdUI.xml",
|
||||
"lib/net6.0-windows7.0/AntdUI.dll",
|
||||
"lib/net6.0-windows7.0/AntdUI.xml",
|
||||
"lib/net8.0-windows7.0/AntdUI.dll",
|
||||
"lib/net8.0-windows7.0/AntdUI.xml",
|
||||
"lib/net9.0-windows7.0/AntdUI.dll",
|
||||
"lib/net9.0-windows7.0/AntdUI.xml",
|
||||
"logo.png"
|
||||
]
|
||||
},
|
||||
"BouncyCastle.Cryptography/2.6.2": {
|
||||
"sha512": "7oWOcvnntmMKNzDLsdxAYqApt+AjpRpP2CShjMfIa3umZ42UQMvH0tl1qAliYPNYO6vTdcGMqnRrCPmsfzTI1w==",
|
||||
"type": "package",
|
||||
"path": "bouncycastle.cryptography/2.6.2",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.md",
|
||||
"README.md",
|
||||
"bouncycastle.cryptography.2.6.2.nupkg.sha512",
|
||||
"bouncycastle.cryptography.nuspec",
|
||||
"lib/net461/BouncyCastle.Cryptography.dll",
|
||||
"lib/net461/BouncyCastle.Cryptography.xml",
|
||||
"lib/net6.0/BouncyCastle.Cryptography.dll",
|
||||
"lib/net6.0/BouncyCastle.Cryptography.xml",
|
||||
"lib/netstandard2.0/BouncyCastle.Cryptography.dll",
|
||||
"lib/netstandard2.0/BouncyCastle.Cryptography.xml",
|
||||
"packageIcon.png"
|
||||
]
|
||||
},
|
||||
"BrotliSharpLib/0.3.3": {
|
||||
"sha512": "/z74VNg6etlQK/N1mSD5Tz2qQUZqc3RMiuv2F8Q/MOfvg4l7a6lDYhQQTPd9s9saSokh1GqUD7JTuunOiQid8w==",
|
||||
"type": "package",
|
||||
"path": "brotlisharplib/0.3.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"brotlisharplib.0.3.3.nupkg.sha512",
|
||||
"brotlisharplib.nuspec",
|
||||
"lib/net20/BrotliSharpLib.dll",
|
||||
"lib/net20/BrotliSharpLib.xml",
|
||||
"lib/net35/BrotliSharpLib.dll",
|
||||
"lib/net35/BrotliSharpLib.xml",
|
||||
"lib/net40/BrotliSharpLib.dll",
|
||||
"lib/net40/BrotliSharpLib.xml",
|
||||
"lib/net45/BrotliSharpLib.dll",
|
||||
"lib/net45/BrotliSharpLib.xml",
|
||||
"lib/net451/BrotliSharpLib.dll",
|
||||
"lib/net451/BrotliSharpLib.xml",
|
||||
"lib/netstandard1.1/BrotliSharpLib.dll",
|
||||
"lib/netstandard1.1/BrotliSharpLib.xml",
|
||||
"lib/netstandard1.3/BrotliSharpLib.dll",
|
||||
"lib/netstandard1.3/BrotliSharpLib.xml",
|
||||
"lib/netstandard2.0/BrotliSharpLib.dll",
|
||||
"lib/netstandard2.0/BrotliSharpLib.xml"
|
||||
]
|
||||
},
|
||||
"MailKit/4.16.0": {
|
||||
"sha512": "trJ82DOpAmo8i1jO1vNE+dGn4mPRyeYfy4swRcAGgMJhPoI1Kohf4OFJJf0+YIj4iUxgxPn8W+ht7e7KiYzSjg==",
|
||||
"type": "package",
|
||||
"path": "mailkit/4.16.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"docs/ExchangeOAuth2.md",
|
||||
"docs/FAQ.md",
|
||||
"docs/GMailOAuth2.md",
|
||||
"docs/README.md",
|
||||
"icons/mailkit-50.png",
|
||||
"lib/net10.0/MailKit.dll",
|
||||
"lib/net10.0/MailKit.dll.config",
|
||||
"lib/net10.0/MailKit.pdb",
|
||||
"lib/net10.0/MailKit.xml",
|
||||
"lib/net462/MailKit.dll",
|
||||
"lib/net462/MailKit.dll.config",
|
||||
"lib/net462/MailKit.pdb",
|
||||
"lib/net462/MailKit.xml",
|
||||
"lib/net47/MailKit.dll",
|
||||
"lib/net47/MailKit.dll.config",
|
||||
"lib/net47/MailKit.pdb",
|
||||
"lib/net47/MailKit.xml",
|
||||
"lib/net48/MailKit.dll",
|
||||
"lib/net48/MailKit.dll.config",
|
||||
"lib/net48/MailKit.pdb",
|
||||
"lib/net48/MailKit.xml",
|
||||
"lib/net8.0/MailKit.dll",
|
||||
"lib/net8.0/MailKit.dll.config",
|
||||
"lib/net8.0/MailKit.pdb",
|
||||
"lib/net8.0/MailKit.xml",
|
||||
"lib/netstandard2.0/MailKit.dll",
|
||||
"lib/netstandard2.0/MailKit.dll.config",
|
||||
"lib/netstandard2.0/MailKit.pdb",
|
||||
"lib/netstandard2.0/MailKit.xml",
|
||||
"lib/netstandard2.1/MailKit.dll",
|
||||
"lib/netstandard2.1/MailKit.dll.config",
|
||||
"lib/netstandard2.1/MailKit.pdb",
|
||||
"lib/netstandard2.1/MailKit.xml",
|
||||
"mailkit.4.16.0.nupkg.sha512",
|
||||
"mailkit.nuspec"
|
||||
]
|
||||
},
|
||||
"MimeKit/4.16.0": {
|
||||
"sha512": "X0LFxeM4gPRIhODyY/HYS9b+zRZ7y//v59rFzgS6wLxcPuZThnMtNZHtrr0fjLyRRkg3gqJBtvW36XfUzZ7Djw==",
|
||||
"type": "package",
|
||||
"path": "mimekit/4.16.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"docs/FAQ.md",
|
||||
"docs/README.md",
|
||||
"icons/mimekit-50.png",
|
||||
"lib/net10.0/MimeKit.dll",
|
||||
"lib/net10.0/MimeKit.dll.config",
|
||||
"lib/net10.0/MimeKit.pdb",
|
||||
"lib/net10.0/MimeKit.xml",
|
||||
"lib/net462/MimeKit.dll",
|
||||
"lib/net462/MimeKit.pdb",
|
||||
"lib/net462/MimeKit.xml",
|
||||
"lib/net47/MimeKit.dll",
|
||||
"lib/net47/MimeKit.pdb",
|
||||
"lib/net47/MimeKit.xml",
|
||||
"lib/net48/MimeKit.dll",
|
||||
"lib/net48/MimeKit.pdb",
|
||||
"lib/net48/MimeKit.xml",
|
||||
"lib/net8.0/MimeKit.dll",
|
||||
"lib/net8.0/MimeKit.dll.config",
|
||||
"lib/net8.0/MimeKit.pdb",
|
||||
"lib/net8.0/MimeKit.xml",
|
||||
"lib/netstandard2.0/MimeKit.dll",
|
||||
"lib/netstandard2.0/MimeKit.dll.config",
|
||||
"lib/netstandard2.0/MimeKit.pdb",
|
||||
"lib/netstandard2.0/MimeKit.xml",
|
||||
"lib/netstandard2.1/MimeKit.dll",
|
||||
"lib/netstandard2.1/MimeKit.dll.config",
|
||||
"lib/netstandard2.1/MimeKit.pdb",
|
||||
"lib/netstandard2.1/MimeKit.xml",
|
||||
"mimekit.4.16.0.nupkg.sha512",
|
||||
"mimekit.nuspec"
|
||||
]
|
||||
},
|
||||
"Portable.BouncyCastle/1.8.8": {
|
||||
"sha512": "1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
|
||||
"type": "package",
|
||||
"path": "portable.bouncycastle/1.8.8",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net40/BouncyCastle.Crypto.dll",
|
||||
"lib/net40/BouncyCastle.Crypto.xml",
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.dll",
|
||||
"lib/netstandard2.0/BouncyCastle.Crypto.xml",
|
||||
"portable.bouncycastle.1.8.8.nupkg.sha512",
|
||||
"portable.bouncycastle.nuspec"
|
||||
]
|
||||
},
|
||||
"Titanium.Web.Proxy/3.2.0": {
|
||||
"sha512": "XHchT17Cqr4lX+p4+T4qMPOMfBBvXgIkjy6imy4guNWxLTPKyCaLv/VTiHgk4CwXnXTHlga7KWT1agNCbjwYYg==",
|
||||
"type": "package",
|
||||
"path": "titanium.web.proxy/3.2.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net451/Titanium.Web.Proxy.dll",
|
||||
"lib/net461/Titanium.Web.Proxy.dll",
|
||||
"lib/netstandard2.0/Titanium.Web.Proxy.dll",
|
||||
"lib/netstandard2.1/Titanium.Web.Proxy.dll",
|
||||
"titanium.web.proxy.3.2.0.nupkg.sha512",
|
||||
"titanium.web.proxy.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net10.0-windows7.0": [
|
||||
"AntdUI >= 2.3.10",
|
||||
"MailKit >= 4.16.0",
|
||||
"Titanium.Web.Proxy >= 3.2.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\": {},
|
||||
"C:\\Softwares\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"projectName": "Vmianqian",
|
||||
"projectPath": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Demo\\C\\Vmianqian\\obj_proxycheck/",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Softwares\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net10.0-windows"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net10.0-windows7.0": {
|
||||
"targetAlias": "net10.0-windows",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "all"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.200"
|
||||
},
|
||||
"frameworks": {
|
||||
"net10.0-windows7.0": {
|
||||
"targetAlias": "net10.0-windows",
|
||||
"dependencies": {
|
||||
"AntdUI": {
|
||||
"target": "Package",
|
||||
"version": "[2.3.10, )"
|
||||
},
|
||||
"MailKit": {
|
||||
"target": "Package",
|
||||
"version": "[4.16.0, )"
|
||||
},
|
||||
"Titanium.Web.Proxy": {
|
||||
"target": "Package",
|
||||
"version": "[3.2.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
},
|
||||
"Microsoft.WindowsDesktop.App": {
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.202/PortableRuntimeIdentifierGraph.json",
|
||||
"packagesToPrune": {
|
||||
"Microsoft.CSharp": "(,4.7.32767]",
|
||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
||||
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
||||
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
||||
"Microsoft.Win32.Registry.AccessControl": "(,10.0.32767]",
|
||||
"Microsoft.Win32.SystemEvents": "(,10.0.32767]",
|
||||
"runtime.any.System.Collections": "(,4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
||||
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
||||
"runtime.any.System.Globalization": "(,4.3.32767]",
|
||||
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
||||
"runtime.any.System.IO": "(,4.3.32767]",
|
||||
"runtime.any.System.Reflection": "(,4.3.32767]",
|
||||
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
||||
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
||||
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
||||
"runtime.any.System.Runtime": "(,4.3.32767]",
|
||||
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
||||
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
||||
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
||||
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
||||
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
||||
"runtime.aot.System.Collections": "(,4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
||||
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
||||
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
||||
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
||||
"runtime.aot.System.IO": "(,4.3.32767]",
|
||||
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
||||
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
||||
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
||||
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
||||
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
||||
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
||||
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
||||
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
||||
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
||||
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
||||
"runtime.unix.System.Console": "(,4.3.32767]",
|
||||
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
||||
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
||||
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
||||
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
||||
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
||||
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
||||
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
||||
"runtime.win.System.Console": "(,4.3.32767]",
|
||||
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
||||
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
||||
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
||||
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
||||
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
||||
"System.AppContext": "(,4.3.32767]",
|
||||
"System.Buffers": "(,5.0.32767]",
|
||||
"System.CodeDom": "(,10.0.32767]",
|
||||
"System.Collections": "(,4.3.32767]",
|
||||
"System.Collections.Concurrent": "(,4.3.32767]",
|
||||
"System.Collections.Immutable": "(,10.0.32767]",
|
||||
"System.Collections.NonGeneric": "(,4.3.32767]",
|
||||
"System.Collections.Specialized": "(,4.3.32767]",
|
||||
"System.ComponentModel": "(,4.3.32767]",
|
||||
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
||||
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
||||
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
||||
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
||||
"System.Configuration.ConfigurationManager": "(,10.0.32767]",
|
||||
"System.Console": "(,4.3.32767]",
|
||||
"System.Data.Common": "(,4.3.32767]",
|
||||
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
||||
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
||||
"System.Diagnostics.Debug": "(,4.3.32767]",
|
||||
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
||||
"System.Diagnostics.EventLog": "(,10.0.32767]",
|
||||
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
||||
"System.Diagnostics.PerformanceCounter": "(,10.0.32767]",
|
||||
"System.Diagnostics.Process": "(,4.3.32767]",
|
||||
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
||||
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
||||
"System.Diagnostics.Tools": "(,4.3.32767]",
|
||||
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
||||
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
||||
"System.DirectoryServices": "(,10.0.32767]",
|
||||
"System.Drawing.Common": "(,10.0.32767]",
|
||||
"System.Drawing.Primitives": "(,4.3.32767]",
|
||||
"System.Dynamic.Runtime": "(,4.3.32767]",
|
||||
"System.Formats.Asn1": "(,10.0.32767]",
|
||||
"System.Formats.Nrbf": "(,10.0.32767]",
|
||||
"System.Formats.Tar": "(,10.0.32767]",
|
||||
"System.Globalization": "(,4.3.32767]",
|
||||
"System.Globalization.Calendars": "(,4.3.32767]",
|
||||
"System.Globalization.Extensions": "(,4.3.32767]",
|
||||
"System.IO": "(,4.3.32767]",
|
||||
"System.IO.Compression": "(,4.3.32767]",
|
||||
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
||||
"System.IO.FileSystem": "(,4.3.32767]",
|
||||
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
||||
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
||||
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
||||
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
||||
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
||||
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
||||
"System.IO.Packaging": "(,10.0.32767]",
|
||||
"System.IO.Pipelines": "(,10.0.32767]",
|
||||
"System.IO.Pipes": "(,4.3.32767]",
|
||||
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
||||
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
||||
"System.Linq": "(,4.3.32767]",
|
||||
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
||||
"System.Linq.Expressions": "(,4.3.32767]",
|
||||
"System.Linq.Parallel": "(,4.3.32767]",
|
||||
"System.Linq.Queryable": "(,4.3.32767]",
|
||||
"System.Memory": "(,5.0.32767]",
|
||||
"System.Net.Http": "(,4.3.32767]",
|
||||
"System.Net.Http.Json": "(,10.0.32767]",
|
||||
"System.Net.NameResolution": "(,4.3.32767]",
|
||||
"System.Net.NetworkInformation": "(,4.3.32767]",
|
||||
"System.Net.Ping": "(,4.3.32767]",
|
||||
"System.Net.Primitives": "(,4.3.32767]",
|
||||
"System.Net.Requests": "(,4.3.32767]",
|
||||
"System.Net.Security": "(,4.3.32767]",
|
||||
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
||||
"System.Net.Sockets": "(,4.3.32767]",
|
||||
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
||||
"System.Net.WebSockets": "(,4.3.32767]",
|
||||
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
||||
"System.Numerics.Vectors": "(,5.0.32767]",
|
||||
"System.ObjectModel": "(,4.3.32767]",
|
||||
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
||||
"System.Private.Uri": "(,4.3.32767]",
|
||||
"System.Reflection": "(,4.3.32767]",
|
||||
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
||||
"System.Reflection.Emit": "(,4.7.32767]",
|
||||
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
||||
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
||||
"System.Reflection.Extensions": "(,4.3.32767]",
|
||||
"System.Reflection.Metadata": "(,10.0.32767]",
|
||||
"System.Reflection.Primitives": "(,4.3.32767]",
|
||||
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
||||
"System.Resources.Extensions": "(,10.0.32767]",
|
||||
"System.Resources.Reader": "(,4.3.32767]",
|
||||
"System.Resources.ResourceManager": "(,4.3.32767]",
|
||||
"System.Resources.Writer": "(,4.3.32767]",
|
||||
"System.Runtime": "(,4.3.32767]",
|
||||
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
||||
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
||||
"System.Runtime.Extensions": "(,4.3.32767]",
|
||||
"System.Runtime.Handles": "(,4.3.32767]",
|
||||
"System.Runtime.InteropServices": "(,4.3.32767]",
|
||||
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
||||
"System.Runtime.Loader": "(,4.3.32767]",
|
||||
"System.Runtime.Numerics": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
||||
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
||||
"System.Security.AccessControl": "(,6.0.32767]",
|
||||
"System.Security.Claims": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
||||
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
||||
"System.Security.Cryptography.Pkcs": "(,10.0.32767]",
|
||||
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.ProtectedData": "(,10.0.32767]",
|
||||
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
||||
"System.Security.Cryptography.Xml": "(,10.0.32767]",
|
||||
"System.Security.Permissions": "(,10.0.32767]",
|
||||
"System.Security.Principal": "(,4.3.32767]",
|
||||
"System.Security.Principal.Windows": "(,5.0.32767]",
|
||||
"System.Security.SecureString": "(,4.3.32767]",
|
||||
"System.Text.Encoding": "(,4.3.32767]",
|
||||
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
||||
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
||||
"System.Text.Encodings.Web": "(,10.0.32767]",
|
||||
"System.Text.Json": "(,10.0.32767]",
|
||||
"System.Text.RegularExpressions": "(,4.3.32767]",
|
||||
"System.Threading": "(,4.3.32767]",
|
||||
"System.Threading.AccessControl": "(,10.0.32767]",
|
||||
"System.Threading.Channels": "(,10.0.32767]",
|
||||
"System.Threading.Overlapped": "(,4.3.32767]",
|
||||
"System.Threading.Tasks": "(,4.3.32767]",
|
||||
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
||||
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
||||
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
||||
"System.Threading.Thread": "(,4.3.32767]",
|
||||
"System.Threading.ThreadPool": "(,4.3.32767]",
|
||||
"System.Threading.Timer": "(,4.3.32767]",
|
||||
"System.ValueTuple": "(,4.5.32767]",
|
||||
"System.Windows.Extensions": "(,10.0.32767]",
|
||||
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
||||
"System.Xml.XDocument": "(,4.3.32767]",
|
||||
"System.Xml.XmlDocument": "(,4.3.32767]",
|
||||
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
||||
"System.Xml.XPath": "(,4.3.32767]",
|
||||
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
obj_proxycheck/project.nuget.cache
Normal file
16
obj_proxycheck/project.nuget.cache
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "F1p0sTlbUac=",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\antdui\\2.3.10\\antdui.2.3.10.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\bouncycastle.cryptography.2.6.2.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\brotlisharplib\\0.3.3\\brotlisharplib.0.3.3.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mailkit\\4.16.0\\mailkit.4.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\mimekit\\4.16.0\\mimekit.4.16.0.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\portable.bouncycastle\\1.8.8\\portable.bouncycastle.1.8.8.nupkg.sha512",
|
||||
"C:\\Users\\Administrator\\.nuget\\packages\\titanium.web.proxy\\3.2.0\\titanium.web.proxy.3.2.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user