Compare commits

...

12 Commits

Author SHA1 Message Date
“wanyongkang”
c7c3c038a8 修改水滴密码验证规则 2026-04-22 14:01:33 +08:00
“wanyongkang”
d1e4fb05b8 修改验证码访问接口 2026-03-12 15:24:10 +08:00
2f14f45621 调整软路由购买页付款二维码位置 2025-10-22 15:52:51 +08:00
a71bb476b1 优化本地开发配置,移除仓库开发环境配置文件 2025-10-22 15:50:35 +08:00
16a690a3b4 修复接口路径拼接问题 2025-10-21 09:57:32 +08:00
wmp
2b7a4996e6 新增短效无限量白名单处理 2025-10-18 20:15:59 +08:00
wmp
aada71df8a 格式化代码
Co-authored-by: luorijun <luorijun@outlook.com>
2025-10-18 20:12:15 +08:00
wmp
aeec6dbab6 完善本地环境变量配置 2025-10-17 15:49:57 +08:00
d51b2319dc 添加统一开发环境配置 2025-10-16 18:37:11 +08:00
18fd62568c 排除 web 服务的 appsettings.json 文件,解决error NETSDK1152 问题 2025-10-13 10:33:19 +08:00
4bdcfbf04e 移除不可用 qrcode 包并切换为 jquery qrcode 2025-10-13 10:18:53 +08:00
5d1bf20bcf 更新 .gitignore 并删除需要忽略的文件 2025-09-15 12:18:05 +08:00
144 changed files with 3186 additions and 133754 deletions

2
.env.example Normal file
View File

@@ -0,0 +1,2 @@
DATABASE_PORT=3306
REDIS_PORT=6379

74
.gitignore vendored
View File

@@ -1,14 +1,60 @@
/Host/bin/
/Host/obj/
/Services/Hncore.Pass.BaseInfo/bin/
/Services/Hncore.Pass.BaseInfo/obj/
/Services/Hncore.Pass.Manage/obj/
/Services/Hncore.Pass.OSS/obj/
/Services/Hncore.Pass.PaymentCenter/obj/
/Services/Hncore.Pass.Sells/obj/
/Services/Hncore.Pass.Vpn/bin/
/Services/Hncore.Pass.Vpn/obj/
*.dll
*.pdb
*.cache
*.log
## A streamlined .gitignore for modern .NET projects
## including temporary files, build results, and
## files generated by popular .NET tools. If you are
## developing with Visual Studio, the VS .gitignore
## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
## has more thorough IDE-specific entries.
##
## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/
# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/
# ASP.NET Scaffolding
ScaffoldingReadMe.txt
# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# Others
~$*
*~
CodeCoverage/
# MSBuild Binary and Structured Log
*.binlog
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml
.idea/
.vscode/
.volumes/
appsettings.Development.json
.env

File diff suppressed because it is too large Load Diff

View File

@@ -39,7 +39,7 @@ namespace Home.Controllers
{
[Controller]
[Route("[Controller]/[Action]")]
public class UserController:Controller
public class UserController : Controller
{
UserService m_UserService;
ProductAccountService m_ProductAccountService;
@@ -68,7 +68,7 @@ namespace Home.Controllers
, Hncore.Pass.BaseInfo.Service.UserScoreService _UserScoreService
, AgentService _AgentService
, ProductPackageService _PackageService
,ProductService _ProductService
, ProductService _ProductService
, CouponService _CouponService
, SellerTaoBaoService _TaoBaoService
, TaoBaoRefundService _TaoBaoRefundService
@@ -76,7 +76,7 @@ namespace Home.Controllers
, WxAppUserService _WxAppUserService
, UserChargeOrderService _ChargeService
, IConfiguration _Configuration
,WxPayClient _WxPayClient
, WxPayClient _WxPayClient
, AgentService _agentService
, CouponUserOrginService _CouponUserOrginService)
{
@@ -107,28 +107,28 @@ namespace Home.Controllers
var model = new UserHomeModel();
model.UserModel = await m_UserService.GetById(userId);
var accountQuery = m_ProductAccountService.Query(m => m.UserId == userId && m.DeleteTag==0);
var accountQuery = m_ProductAccountService.Query(m => m.UserId == userId && m.DeleteTag == 0);
model.AccountModel.TotalCount = await accountQuery.CountAsync();
model.AccountModel.ExpriedCount = await accountQuery.Where(m => m.EndTime < DateTime.Now).CountAsync();
var orderQuery= m_OrderService.Query(m => m.UserId == userId);
var orderQuery = m_OrderService.Query(m => m.UserId == userId);
var todayOrderQuery = orderQuery.Where(m => (m.CreateTime - DateTime.Now).Days == 0);
model.Statistic.TodayExpend = todayOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount);
model.Statistic.TodayRefund = todayOrderQuery.Where(m =>(m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount);
model.Statistic.TodayRefund = todayOrderQuery.Where(m => (m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount);
var monthOrderQuery = orderQuery.Where(m =>m.CreateTime.Month== DateTime.Now.Month);
var monthOrderQuery = orderQuery.Where(m => m.CreateTime.Month == DateTime.Now.Month);
model.Statistic.MonthExpend = monthOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount);
model.Statistic.MonthRefund = monthOrderQuery.Where(m =>(m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount);
model.Statistic.MonthRefund = monthOrderQuery.Where(m => (m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver)).Sum(m => m.RefundAmount);
var yearOrderQuery = orderQuery.Where(m => (m.CreateTime - DateTime.Now).Days == 0);
model.Statistic.YearExpend= yearOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount);
model.Statistic.YearExpend = yearOrderQuery.Where(m => (m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete)).Sum(m => m.PaymentAmount);
var chargeQuery = m_UserScoreService.Query(m => m.UserId == userId);
model.Statistic.TodayCharege = chargeQuery.Where(m =>(m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && (m.CreateTime - DateTime.Now).Days == 0).Sum(m => m.ScoreValue);
model.Statistic.MonthCharege = chargeQuery.Where(m => (m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && m.CreateTime.Month==DateTime.Now.Year).Sum(m => m.ScoreValue);
model.Statistic.TodayCharege = chargeQuery.Where(m => (m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && (m.CreateTime - DateTime.Now).Days == 0).Sum(m => m.ScoreValue);
model.Statistic.MonthCharege = chargeQuery.Where(m => (m.ScoreType == ScoreType.ManagerAdd || m.ScoreType == ScoreType.TaoBaoAdd) && m.CreateTime.Month == DateTime.Now.Year).Sum(m => m.ScoreValue);
model.TopNewsModel = await m_ArticleService.GetTop(6, Hncore.Pass.Vpn.Domain.ArticleCatalog.Top);
@@ -269,9 +269,9 @@ namespace Home.Controllers
LoginCode = request.Phone,
Password = request.Pwd,
Phone = request.Phone,
Wx=request.Wx,
QQ=request.QQ,
id_code=""
Wx = request.Wx,
QQ = request.QQ,
id_code = ""
};
var ret = await m_UserService.Regist(userEntity);
@@ -319,7 +319,7 @@ namespace Home.Controllers
return new ApiResult(ResultCode.C_Access_Forbidden, "验证码不正确或者过期");
}
var user = await m_UserService.GetByPhone(request.Phone);
if (user==null) return new ApiResult(ResultCode.C_Access_Forbidden, "手机号不存在");
if (user == null) return new ApiResult(ResultCode.C_Access_Forbidden, "手机号不存在");
return await m_UserService.UpdatePwd(user, request.Pwd);
}
@@ -336,7 +336,7 @@ namespace Home.Controllers
// return new ApiResult(ResultCode.C_SUCCESS, "验证码已发送到您的手机");
// }
/// <summary>
/// 发送手机验证码
@@ -344,11 +344,23 @@ namespace Home.Controllers
/// <param name="request"></param>
/// <returns></returns>
[HttpPost, AllowAnonymous]
public async Task<ApiResult> SendPhoneCodevefy(string phone,string key)
public async Task<ApiResult> SendPhoneCodevefy(string phone, string key)
{
key = $"{key}:{phone}";
if (key.StartsWith("User_Code:") &&m_UserService.Exist(m => m.LoginCode == phone || m.Phone == phone))
return new ApiResult(ResultCode.C_SUCCESS, "验证码已发送到您的手机");
}
/// <summary>
/// 发送手机验证码
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
[HttpPost, AllowAnonymous]
public async Task<ApiResult> SendPhonesCodevefy(string phone, string key)
{
key = $"{key}:{phone}";
if (key.StartsWith("User_Code:") && m_UserService.Exist(m => m.LoginCode == phone || m.Phone == phone))
{
return new ApiResult(ResultCode.C_ALREADY_EXISTS_ERROR, "该手机号已经被注册了");
}
@@ -361,7 +373,7 @@ namespace Home.Controllers
}
code = ValidateCodeHelper.MakeNumCode(4);
await RedisHelper.SetAsync(key, code, 60);
var ret = AliSmsService.Send( "SMS_186355045", new { code }, "河南华连网络科技", phone);
var ret = AliSmsService.Send("SMS_186355045", new { code }, "河南华连网络科技", phone);
if (ret)
{
return new ApiResult(ResultCode.C_SUCCESS, "验证码已发送到您的手机");
@@ -370,7 +382,7 @@ namespace Home.Controllers
}
[HttpPost, UserAuth]
public async Task<ApiResult> OrginAccountAuth([FromBody]OriginAccountAuthRequest request)
public async Task<ApiResult> OrginAccountAuth([FromBody] OriginAccountAuthRequest request)
{
var user = this.Request.GetUserInfo();
@@ -381,9 +393,9 @@ namespace Home.Controllers
var end = request.StartNum + request.Count;
for (var i = request.StartNum; i < end; i++)
{
var account = $"{ request.Account}{i}";
// if (!m_ProductAccountService.Exist(m => m.Account == account))//m.ProductId == request.ProductId &&
accounts.Add(account);
var account = $"{request.Account}{i}";
// if (!m_ProductAccountService.Exist(m => m.Account == account))//m.ProductId == request.ProductId &&
accounts.Add(account);
}
}
else
@@ -397,12 +409,12 @@ namespace Home.Controllers
List<string> error = new List<string>();
foreach (var accountItem in accounts)
{
if (m_ProductAccountService.Exist(m =>m.ProductId== request.ProductId&& m.Account == accountItem))
if (m_ProductAccountService.Exist(m => m.ProductId == request.ProductId && m.Account == accountItem))
{
error.Add($"[{accountItem}]已存在");
continue;
}
var originModel = await m_AgentService.GetOriginAccountInfo(request.ProductId, accountItem, request.Pwd);
var originModel = await m_AgentService.GetOriginAccountInfo(request.ProductId, accountItem, request.Pwd);
if (originModel.Code != ResultCode.C_SUCCESS)
{
@@ -438,9 +450,9 @@ namespace Home.Controllers
[HttpGet]
[UserAuth]
public async Task<IActionResult> MyOrders([FromQuery]OrderSearchModel request)
public async Task<IActionResult> MyOrders([FromQuery] OrderSearchModel request)
{
var userId = this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
var orderQuery = m_OrderService.Query(m => m.UserId == userId && m.DeleteTag == 0);
orderQuery = orderQuery.Where(m => m.OrderState == OrderStatus.PayOk || m.OrderState == OrderStatus.Complete);
@@ -453,7 +465,7 @@ namespace Home.Controllers
orderQuery = orderQuery.Where(m => m.ProductId == request.ProductId);
}
if (request.PackageId !="0")
if (request.PackageId != "0")
{
orderQuery = orderQuery.Where(m => m.PackageName == request.PackageId);
}
@@ -465,20 +477,20 @@ namespace Home.Controllers
if (request.KeyWord.Has())
{
orderQuery = orderQuery.Where(m =>m.OrderNo.Contains(request.KeyWord)||m.Accounts.Contains(request.KeyWord));
orderQuery = orderQuery.Where(m => m.OrderNo.Contains(request.KeyWord) || m.Accounts.Contains(request.KeyWord));
}
var data =await orderQuery.OrderByDescending(m => m.Id).ListPagerAsync(request.PageSize, request.PageIndex, true);
var data = await orderQuery.OrderByDescending(m => m.Id).ListPagerAsync(request.PageSize, request.PageIndex, true);
return View(data);
}
[HttpGet]
[UserAuth]
public async Task<IActionResult> MyRefundOrders([FromQuery]OrderSearchModel request)
public async Task<IActionResult> MyRefundOrders([FromQuery] OrderSearchModel request)
{
var userId = this.Request.GetUserInfo().UserId;
var orderQuery = m_OrderService.Query(m => m.UserId == userId);
orderQuery = orderQuery.Where(m => m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver || m.OrderState == OrderStatus.RequestRefund);
orderQuery = orderQuery.Where(m => m.OrderState == OrderStatus.AutoRefundOver || m.OrderState == OrderStatus.UserRefundOver || m.OrderState == OrderStatus.RequestRefund);
if (request.OrderType > 0)
{
orderQuery = orderQuery.Where(m => (int)m.OrderType == request.OrderType);
@@ -509,7 +521,7 @@ namespace Home.Controllers
[HttpGet]
[UserAuth]
public async Task<IActionResult> MyAccounts([FromQuery]AccountSearchModel request=null )
public async Task<IActionResult> MyAccounts([FromQuery] AccountSearchModel request = null)
{
request = request ?? new AccountSearchModel();
var userId = this.Request.GetUserInfo().UserId;
@@ -528,15 +540,24 @@ namespace Home.Controllers
if (request.ExpiredDay > -100)
{
if (request.ExpiredDay > 0){
if (request.ExpiredDay > 0)
{
exp = exp.And(m => Math.Ceiling((m.EndTime - DateTime.Now).Value.TotalDays) <= request.ExpiredDay && m.EndTime > DateTime.Now);
} else if (request.ExpiredDay < 0 && request.ExpiredDay>-4) {
}
else if (request.ExpiredDay < 0 && request.ExpiredDay > -4)
{
exp = exp.And(m => Math.Ceiling((DateTime.Now - m.EndTime).Value.TotalDays) <= Math.Abs(request.ExpiredDay) && m.EndTime < DateTime.Now);
} else if (request.ExpiredDay==-4) {
}
else if (request.ExpiredDay == -4)
{
exp = exp.And(m => Math.Ceiling((m.EndTime - DateTime.Now).Value.TotalDays) <= -4);
} else if (request.ExpiredDay==-5) {
}
else if (request.ExpiredDay == -5)
{
exp = exp.And(m => m.EndTime > DateTime.Now);
} else if (request.ExpiredDay==-6) {
}
else if (request.ExpiredDay == -6)
{
exp = exp.And(m => m.EndTime < DateTime.Now);
}
exp = exp.And(m => m.PackageName != "测试卡");
@@ -553,14 +574,14 @@ namespace Home.Controllers
}
//var ret = await m_ProductAccountService.PageDesc(request.PageIndex,request.PageSize, exp,true,m=>m.Id);
var ret = await m_ProductAccountService.Query(exp, true).OrderByDescending(m=>m.Id).QueryPager(1000,1).ToListAsync();
var ret = await m_ProductAccountService.Query(exp, true).OrderByDescending(m => m.Id).QueryPager(1000, 1).ToListAsync();
return View(ret);
}
[HttpGet]
[UserAuth]
public async Task<IActionResult> AssignAddress([FromQuery]AccountSearchModel request=null )
public async Task<IActionResult> AssignAddress([FromQuery] AccountSearchModel request = null)
{
return View();
}
@@ -568,8 +589,8 @@ namespace Home.Controllers
[UserAuth]
public async Task<IActionResult> MyCoupons()
{
var userId =this.Request.GetUserInfo().UserId;
var model = await m_CouponService.GetUserCoupon(userId);
var userId = this.Request.GetUserInfo().UserId;
var model = await m_CouponService.GetUserCoupon(userId);
return View(model);
}
@@ -577,16 +598,16 @@ namespace Home.Controllers
[UserAuth]
public IActionResult CashOut()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult RosOrder()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
@@ -594,21 +615,21 @@ namespace Home.Controllers
[UserAuth]
public IActionResult jinqiao()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult api()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult upload()
{
{
return View();
}
@@ -616,45 +637,53 @@ namespace Home.Controllers
[UserAuth]
public IActionResult MyMoney()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult HttpRecharge()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult HttpPackageList()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
ViewData["BaseUrl"] = m_Configuration["BackendUrl"];
return View();
}
[HttpGet]
[UserAuth]
public IActionResult HttpLongterm()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult HttpUseHistory()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult HttpWhiteIp()
{
var userId =this.Request.GetUserInfo().UserId;
var userId = this.Request.GetUserInfo().UserId;
return View();
}
[HttpGet]
[UserAuth]
public IActionResult HttpWhiteIpSU()
{
ViewData["BaseUrl"] = m_Configuration["BackendUrl"];
return View();
}
/// <summary>
/// 发送手机验证码
@@ -662,7 +691,7 @@ namespace Home.Controllers
/// <param name="request"></param>
/// <returns></returns>
[HttpGet, AllowAnonymous]
public IActionResult WebLogin(string redirect="")
public IActionResult WebLogin(string redirect = "")
{
ViewBag.redirect = redirect;
return View("Login");
@@ -680,9 +709,10 @@ namespace Home.Controllers
{
var notifyOrder = data.FromJsonTo<TaoBaoNotifyModel>();
var taobaoEntity = notifyOrder.MapTo<TaoBaoOrderEntity>();
if((notifyOrder.SellerNick == "聚ip商城动态ip代理" || notifyOrder.SellerNick == "老鹰动态pptp")||notifyOrder.SellerNick == "强子pptp动态"||notifyOrder.SellerNick == "可乐开发商"){
if ((notifyOrder.SellerNick == "聚ip商城动态ip代理" || notifyOrder.SellerNick == "老鹰动态pptp") || notifyOrder.SellerNick == "强子pptp动态" || notifyOrder.SellerNick == "可乐开发商")
{
taobaoEntity.Phone = "none";
taobaoEntity.SkuPropertiesName = notifyOrder.Orders.FirstOrDefault()?.SkuPropertiesName;
@@ -709,7 +739,7 @@ namespace Home.Controllers
}
// Console.WriteLine("==================================================================");
string msg = "";
if (userEntity == null)
@@ -720,27 +750,30 @@ namespace Home.Controllers
LoginCode = phone,
Password = pas_result,
Phone = phone,
TaoBao= notifyOrder.BuyerNick,
id_code=""
TaoBao = notifyOrder.BuyerNick,
id_code = ""
};
var ret = await m_UserService.Regist(userEntity);
msg = "您好打开网址juip.com登录会员名"+phone+""+notifyOrder.Payment+"元已充值到此账户),密码:"+pas_result+"。这个会员名和密码不能直接使用,是用来登录官网的。登录后点击网站上方的-产品购买即可完成开通或续费。在官网购买的账号密码可以直接使用。恭喜您本次获得优惠券满4元减1元满20元减3元满54元减5元满130元减15元满490元减30元各一张。欢迎您多来淘宝下单(人工客服在线时间:上午八点到晚上十一点半)";
msg = "您好打开网址juip.com登录会员名" + phone + "" + notifyOrder.Payment + "元已充值到此账户),密码:" + pas_result + "。这个会员名和密码不能直接使用,是用来登录官网的。登录后点击网站上方的-产品购买即可完成开通或续费。在官网购买的账号密码可以直接使用。恭喜您本次获得优惠券满4元减1元满20元减3元满54元减5元满130元减15元满490元减30元各一张。欢迎您多来淘宝下单(人工客服在线时间:上午八点到晚上十一点半)";
if (ret.Code != ResultCode.C_SUCCESS) return msg;
} else {
}
else
{
phone = userEntity.Phone;
if(userEntity.TaoBao == null){
userEntity.TaoBao= notifyOrder.BuyerNick;
if (userEntity.TaoBao == null)
{
userEntity.TaoBao = notifyOrder.BuyerNick;
await m_UserService.Update(userEntity);
}
msg = "您好,"+notifyOrder.Payment+"元已充值到充值到您的会员中,会员号为:"+userEntity.LoginCode+"打开网址www.juip.com登录后点击网站上方的-产品购买即可完成开通或续费。恭喜您本次获得优惠券满4元减1元满20元减3元满54元减5元满130元减15元满490元减30元各一张。欢迎您多来淘宝下单(人工客服在线时间:上午八点到晚上十一点半)";
msg = "您好," + notifyOrder.Payment + "元已充值到充值到您的会员中,会员号为:" + userEntity.LoginCode + "打开网址www.juip.com登录后点击网站上方的-产品购买即可完成开通或续费。恭喜您本次获得优惠券满4元减1元满20元减3元满54元减5元满130元减15元满490元减30元各一张。欢迎您多来淘宝下单(人工客服在线时间:上午八点到晚上十一点半)";
}
var amountInfo = new UpdateAmountRequest()
{
OperateUserName= phone,
OperateUserName = phone,
Amount = decimal.Parse(notifyOrder.Payment),
OpAmountType = ScoreType.TaoBaoAdd,
UserId = userEntity.Id,
@@ -759,7 +792,7 @@ namespace Home.Controllers
await m_TaoBaoService.Add(taobaoEntity);
// await Task.Delay(3000);
// Console.WriteLine("===================================================================");
// var send_msg_info = await m_TaoBaoService.SengMsg(notifyOrder.Tid,msg);
@@ -777,55 +810,67 @@ namespace Home.Controllers
if (refundInfo == null || refundInfo.RefundId.NotHas())
return false;
var his_order= m_TaoBaoService.Query(m => m.Tid == refundInfo.Tid).FirstOrDefault();
var his_order = m_TaoBaoService.Query(m => m.Tid == refundInfo.Tid).FirstOrDefault();
refundInfo.Phone = his_order.Phone;
var taobaoEntity = refundInfo.MapTo<TaoBaoRefundEntity>();
await m_TaoBaoRefundService.Add(taobaoEntity);
return true;
};
long aopic = long.Parse(this.Request.Query["aopic"]);
string datainfo = this.Request.Form["json"];
var refundInfos = datainfo.FromJsonTo<TaoBaoRefundModel>();
LogHelper.Info("淘宝参数回调", $"json={datainfo.ToJson()}");
var info = "";
if (aopic == 2){
if (aopic == 2)
{
info = await m_TaoBaoService.ReceivedMsg(this.Request, process);
} else if(aopic == 256){//退款
var his_order= m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
if (his_order == null){
}
else if (aopic == 256)
{//退款
var his_order = m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
if (his_order == null)
{
info = await m_TaoBaoRefundService.ReceivedRefundMsg(this.Request, refunds);
} else {
}
else
{
his_order.status = 0;
his_order.RefundFee = refundInfos.RefundFee;
his_order.Modified = refundInfos.Modified;
await m_TaoBaoRefundService.Update(his_order);
}
}else if(aopic == 65536){//卖家同意退款
var his_order= m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
}
else if (aopic == 65536)
{//卖家同意退款
var his_order = m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
his_order.status = 1;
await m_TaoBaoRefundService.Update(his_order);
}else if(aopic == 262144){//拒绝退款
var his_order= m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
}
else if (aopic == 262144)
{//拒绝退款
var his_order = m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
his_order.status = 2;
await m_TaoBaoRefundService.Update(his_order);
}else if(aopic == 32768){//关闭
var his_order= m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
}
else if (aopic == 32768)
{//关闭
var his_order = m_TaoBaoRefundService.Query(m => m.Tid == refundInfos.Tid).FirstOrDefault();
his_order.status = 3;
await m_TaoBaoRefundService.Update(his_order);
}
return Content(info);
}
@@ -847,23 +892,23 @@ namespace Home.Controllers
}
[HttpPost, UserAuth]
public async Task<ApiResult> UpdatePwd([FromBody]UpdatePwdModel request)
public async Task<ApiResult> UpdatePwd([FromBody] UpdatePwdModel request)
{
if (request.NewPwd != request.ConfirmPwd)
{
return new ApiResult(ResultCode.C_INVALID_ERROR,"密码不一致");
return new ApiResult(ResultCode.C_INVALID_ERROR, "密码不一致");
}
var ret = await this.m_UserService.UpdatePwd(this.Request.GetUserInfo().UserId, request.OldPwd, request.NewPwd);
return ret;
}
[HttpPost, UserAuth]
public async Task<ApiResult> UpdateAccountPwd([FromBody]UpdateAccountPwdRequest request)
public async Task<ApiResult> UpdateAccountPwd([FromBody] UpdateAccountPwdRequest request)
{
return await m_ProductAccountService.UpdateAccountPwd(request);
return await m_ProductAccountService.UpdateAccountPwd(request);
}
[HttpPost, AllowAnonymous]
public async Task<ApiResult> ApiUpdateAccountPwd([FromBody]UpdateAccountPwdRequest request)
public async Task<ApiResult> ApiUpdateAccountPwd([FromBody] UpdateAccountPwdRequest request)
{
//通过apikey获取用户信息
var userEntity = m_UserService.Query(m => m.apikey == request.apikey).FirstOrDefault();
@@ -871,7 +916,7 @@ namespace Home.Controllers
{
return new ApiResult(ResultCode.C_INVALID_ERROR, "apikey不正确");
}
return await m_ProductAccountService.ApiUpdateAccountPwd(request,userEntity.Id);
return await m_ProductAccountService.ApiUpdateAccountPwd(request, userEntity.Id);
}
@@ -927,9 +972,9 @@ namespace Home.Controllers
var userInfo = await WxOpenApi.GetUserinfoByWebAccessToken(access_token, openid);
if (userInfo==null)
if (userInfo == null)
{
LogHelper.Error("GetUserinfoByWebAccessToken",$"access_token={access_token},openid={openid}");
LogHelper.Error("GetUserinfoByWebAccessToken", $"access_token={access_token},openid={openid}");
return;
}
if (userInfo.errcode > 0)
@@ -955,7 +1000,7 @@ namespace Home.Controllers
}
var wxUserInfo = await m_WxAppUserService.GetWxUser(appid, userInfo.openid);
if (wxUserInfo != null)
{
{
var userEntity = await m_UserService.GetById(wxUserInfo.UserId);
var loginRet = m_UserService.LoginInternal(userEntity, wxUserInfo);
this.HttpContext.Response.Cookies.Append("token", loginRet.Token);
@@ -968,7 +1013,7 @@ namespace Home.Controllers
var loginUrl = $"{baseUrl}User/WebLogin?redirect={returnUrl}";
// returnUrl = UrlHelper.SetUrlParam(returnUrl, "act", "login");
this.Response.Redirect(loginUrl);
}
}
}
@@ -979,7 +1024,7 @@ namespace Home.Controllers
/// <returns></returns>
[HttpPost, UserAuth]
public async Task<ApiResult> CreateOrder([FromBody]CreateOrderRequest request)
public async Task<ApiResult> CreateOrder([FromBody] CreateOrderRequest request)
{
var userId = this.Request.GetUserInfo().UserId;
var ret = await m_ChargeService.CreateOrder(request, userId);
@@ -993,7 +1038,7 @@ namespace Home.Controllers
{
OrderInfo = ret.Data,
};
if (ret.Data.PayChannel == UPayChannel.WxH5|| ret.Data.PayChannel == UPayChannel.WxPc||ret.Data.PayChannel == UPayChannel.WxMp)
if (ret.Data.PayChannel == UPayChannel.WxH5 || ret.Data.PayChannel == UPayChannel.WxPc || ret.Data.PayChannel == UPayChannel.WxMp)
{
var url = await CreateWxPayOrder(ret.Data);
data.PayData = url;
@@ -1006,7 +1051,7 @@ namespace Home.Controllers
}
return new ApiResult(data);
}
[HttpGet,AllowAnonymous]
[HttpGet, AllowAnonymous]
public async Task<ApiResult> IsPay(string orderNo)
{
var orderInfo = await m_ChargeService.GetOrderByNo(orderNo);
@@ -1168,12 +1213,12 @@ namespace Home.Controllers
#region
private async Task<string> CreateAliPayOrder(UserChargeOrderEntity request)
{
{
if (request.PayChannel == UPayChannel.AliPc)
{
var Ali_APP_ID = m_Configuration["Aliyun:Pay:AppId"];
var Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:Pay:PrivateKey"];
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:Pay:PublicKey"];//支付宝的公钥,而不是应用的公钥
var Ali_APP_ID = m_Configuration["Aliyun:Pay:AppId"];
var Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:Pay:PrivateKey"];
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:Pay:PublicKey"];//支付宝的公钥,而不是应用的公钥
string callBackUrl = m_Configuration["Aliyun:Pay:UNotifyUrl"];
string ReturnUrl = m_Configuration["Aliyun:Pay:UReturnUrl"];
@@ -1206,11 +1251,11 @@ namespace Home.Controllers
}
else if (request.PayChannel == UPayChannel.AliH5)
{
var Ali_APP_ID = m_Configuration["Aliyun:PayH5:AppId"];
var Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:PayH5:PrivateKey"];
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"];
var callBackUrl = m_Configuration["Aliyun:PayH5:UNotifyUrl"];
var ReturnUrl = m_Configuration["Aliyun:PayH5:UReturnUrl"];
var Ali_APP_ID = m_Configuration["Aliyun:PayH5:AppId"];
var Ali_APP_PRIVATE_KEY = m_Configuration["Aliyun:PayH5:PrivateKey"];
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"];
var callBackUrl = m_Configuration["Aliyun:PayH5:UNotifyUrl"];
var ReturnUrl = m_Configuration["Aliyun:PayH5:UReturnUrl"];
// 组装业务参数model
AlipayTradeWapPayModel model = new AlipayTradeWapPayModel
@@ -1306,7 +1351,8 @@ namespace Home.Controllers
{
var ordereNo = sArray["out_trade_no"];
var trade_status = sArray["trade_status"];
if (trade_status == "TRADE_SUCCESS") {
if (trade_status == "TRADE_SUCCESS")
{
var order = await m_ChargeService.GetOrderByNo(ordereNo);
if (order.OrderState == UOrderStatus.Complete || order.OrderState == UOrderStatus.PayOk)
{
@@ -1353,7 +1399,7 @@ namespace Home.Controllers
3、校验通知中的seller_id或者seller_email) 是否为out_trade_no这笔单据的对应的操作方有的时候一个商户可能有多个seller_id/seller_email
4、验证app_id是否为该商户本身。
*/
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"];
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"];
Dictionary<string, string> sArray = GetRequestGet();
@@ -1385,7 +1431,7 @@ namespace Home.Controllers
3、校验通知中的seller_id或者seller_email) 是否为out_trade_no这笔单据的对应的操作方有的时候一个商户可能有多个seller_id/seller_email
4、验证app_id是否为该商户本身。
*/
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"];
var ALIPAY_PUBLIC_KEY = m_Configuration["Aliyun:PayH5:PublicKey"];
Dictionary<string, string> sArray = GetRequestPost();
LogHelper.Info("AliNotify", AlipaySignature.GetSignContent(sArray));
if (sArray.Count != 0)
@@ -1406,7 +1452,8 @@ namespace Home.Controllers
{
var ordereNo = sArray["out_trade_no"];
var trade_status = sArray["trade_status"];
if (trade_status == "TRADE_SUCCESS") {
if (trade_status == "TRADE_SUCCESS")
{
var order = await m_ChargeService.GetOrderByNo(ordereNo);
if (order.OrderState == UOrderStatus.Complete || order.OrderState == UOrderStatus.PayOk)
{
@@ -1478,9 +1525,9 @@ namespace Home.Controllers
[HttpGet, UserAuth]
public async Task<IActionResult> OnLine(int productId,string account)
public async Task<IActionResult> OnLine(int productId, string account)
{
var data= await m_agentService.OnLine(productId, account);
var data = await m_agentService.OnLine(productId, account);
return View(data.Data);
}
}

View File

@@ -21,7 +21,7 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5000"
"applicationUrl": "http://0.0.0.0:5000"
},
"Docker": {
"commandName": "Docker",

View File

@@ -38,7 +38,7 @@
<div role="tabpanel" class="tab-pane active" id="home">
@if (type == 4) {
<div style="font-size:0.7em">
<p style="padding:0;margin:0;">*请优先选择客户端连接 <a style="color:#0777ff;" href="/product/soft"><<<下载客户端>>></a></p>
<p style="padding:0;margin:0;">*请优先选择客户端连接 <a style="color:#0777ff;" href="/product/soft">&lt;&lt;&lt;下载客户端&gt;&gt;&gt;</a></p>
<p style="padding:0;margin:0;">*无对应客户端时,可通过线路表直连支持所有设备</p>
</div>
}

View File

@@ -711,7 +711,6 @@
<script src="/http/js/jquery.slicknav.min.js"></script>
<script src="/http/js/jquery.parallax-1.1.3.js"></script>
<script src="/http/js/jquery-ui.js"></script>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<script src="~/js/vue.js"></script>
@@ -1149,7 +1148,7 @@ $(document).on("ready", function(e) {
$('#pay').modal('hide');
} else if (res.code == 3) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300

View File

@@ -845,7 +845,7 @@
},
created: function () {
this.order_info.account = this.randomString(2) + (Math.floor(Math.random() * 10000) + 1);
this.order_info.password = (Math.floor(Math.random() * 1000) + 1);
this.order_info.password = (Math.floor(Math.random() * 1000000) + 1);
},
methods: {
randomString(len) {
@@ -1077,8 +1077,8 @@
alert('账号长度至少5位');
return;
}
if (this.order_info.password.length < 3 && this.hasNumAndChar(this.order_info.password)) {
alert('密码长度至少3位!');
if (this.order_info.password.length < 6 && this.hasNumAndChar(this.order_info.password)) {
alert('密码长度至少6位!');
return;
}
@@ -1120,7 +1120,7 @@
$('#pay_qilin').modal('hide');
} else if (res.code == 3) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300

View File

@@ -522,7 +522,7 @@ p{
$('#buy').modal('hide');
} else if (res.code == 3) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300

View File

@@ -195,7 +195,6 @@
<script src="~/js/vue.js"></script>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<script type="text/javascript">
var app = new Vue({
@@ -376,7 +375,7 @@
if (res.code == 1) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300

View File

@@ -27,7 +27,7 @@
var name = $("#username").val()
if(name == '') { alert('手机号不能为空'); return; }
if (!timing(_self)) return;
var url = '/User/SendPhoneCodevefy?key=FindUser_Code&phone=' + name;
var url = '/User/SendPhonesCodevefy?key=FindUser_Code&phone=' + name;
$.ajax({
type: 'POST',
url: url,

View File

@@ -459,7 +459,6 @@
<!-- 支付弹窗 -->
<div id="aliPayBox" style="display:none"></div>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<script>
$(function () {
if (@Model.UserModel.is_verify == 0) {

View File

@@ -37,7 +37,7 @@
var name = $("#username").val()
if(name == '') { alert('手机号不能为空'); return; }
if (!timing(_self)) return;
var url = '/user/SendPhoneCodevefy?key=User_Code&phone=' + name;
var url = '/user/SendPhonesCodevefy?key=User_Code&phone=' + name;
$.ajax({
type: 'POST',
url: url,

View File

@@ -45,7 +45,7 @@
</div>
@if (type == 4) {
<div>
<p style="padding:0;margin:0;">*请优先选择客户端连接 <a style="color:#0777ff;" href="/product/soft"><<<下载客户端>>></a></p>
<p style="padding:0;margin:0;">*请优先选择客户端连接 <a style="color:#0777ff;" href="/product/soft">&lt;&lt;&lt;下载客户端&gt;&gt;&gt;</a></p>
<p style="padding:0;margin:0;">*无对应客户端时,可通过线路表直连支持所有设备</p>
</div>
}

View File

@@ -610,7 +610,7 @@
function getCode(_self) {
if (!timing(_self)) return;
var name = $("#username").val()
var url = '/user/SendPhoneCodevefy?key=User_Code&phone=' + name;
var url = '/user/SendPhonesCodevefy?key=User_Code&phone=' + name;
var timerHandler;
$.ajax({
type: 'POST',
@@ -624,7 +624,7 @@
function getFindCode(_self) {
if (!timing(_self)) return;
var name = $("#fusername").val()
var url = '/user/SendPhoneCodevefy?key=FindUser_Code&phone=' + name;
var url = '/user/SendPhonesCodevefy?key=FindUser_Code&phone=' + name;
$.ajax({
type: 'POST',
url: url,

View File

@@ -221,6 +221,26 @@
</div>
</div>
</div>
<div class="col-sm-12 ">
<div class="boxes boxes-border-top text-left margin-top-30 clearfix">
<div class="col-sm-12">
<h5 class="margin-top-0">白名单数量:</h5>
<div class="d-flex align-items-center" style="gap: 15px;">
<div class="btn-group" role="group">
<button type="button" v-on:click="dxwxl_whitelist_reduce()" :disabled="dxwxl_data.maxWhitelist <= 1" class="btn btn-new">-</button>
<button type="button" class="btn btn-default">{{ dxwxl_data.maxWhitelist }}</button>
<button type="button" v-on:click="dxwxl_whitelist_add()" :disabled="dxwxl_data.maxWhitelist >= 20" class="btn btn-new">+</button>
</div>
<span style="margin-left: 20px;">
您的白名单上限{{ dxwxl_data.maxWhitelist }}个,
<span v-if="dxwxl_data.maxWhitelist === 1">价格<span class="text-danger">无折扣</span></span>
<span v-else-if="dxwxl_data.maxWhitelist <= 5" class="text-danger">{{11 - dxwxl_data.maxWhitelist}}折</span>
<span v-else class="text-danger">6折</span>
</span>
</div>
</div>
</div>
</div>
<div class="col-sm-12 ">
<div class="boxes boxes-border-top text-left margin-top-30 clearfix">
<div class="col-sm-12">
@@ -696,12 +716,11 @@
<script src="/http/js/jquery.slicknav.min.js"></script>
<script src="/http/js/jquery.parallax-1.1.3.js"></script>
<script src="/http/js/jquery-ui.js"></script>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<script src="~/js/vue.js"></script>
<script type="text/javascript">
var baseUrl = '@ViewData["BaseUrl"]';
var select_ip_num = 0;
$(document).on("ready", function(e) {
@@ -807,6 +826,7 @@ $(document).on("ready", function(e) {
durationType:5,
periodType:1060,//必填周期类型1060-小时1-按天7-按周30-按月90-按季度
periodAmount:1,//必填购买周期根据periodType来例如按天就是N天按周就是N周
maxWhitelist:1,//选填,变更无限量白名单数量,不填写会默认使用当前白名单数量
},
dxbt_data:{//短效包天
durationType:5,//必填有效时长5-1至5分钟25-5至25分钟180-25至180分钟360-3至6小时
@@ -928,7 +948,7 @@ $(document).on("ready", function(e) {
var that = this
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/product/city',
url: `${baseUrl}/http/product/city`,
dataType: "json",
async:false,
data:this.game,
@@ -942,7 +962,7 @@ $(document).on("ready", function(e) {
var that = this
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/product/game',
url: `${baseUrl}/http/product/game`,
dataType: "json",
async:false,
data:this.game,
@@ -977,7 +997,7 @@ $(document).on("ready", function(e) {
var that = this
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/product/linecount',
url: `${baseUrl}/http/product/linecount`,
dataType: "json",
async:false,
data:this.game,
@@ -1027,6 +1047,18 @@ $(document).on("ready", function(e) {
this.dxwxl_data.periodAmount++;
this.calc_price();
},
//短效无限量购买白名单修改
dxwxl_whitelist_reduce(){
if (this.dxwxl_data.maxWhitelist > 1) {
this.dxwxl_data.maxWhitelist--;
this.calc_price();
}
},
//短效无限量购买白名单修改
dxwxl_whitelist_add(){
this.dxwxl_data.maxWhitelist++;
this.calc_price();
},
//短效包天购买时长修改
dxbt_gmsc_reduce(){
if (this.dxbt_data.periodAmount > 1) {
@@ -1116,7 +1148,7 @@ $(document).on("ready", function(e) {
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/order/create_order',
url: `${baseUrl}/http/order/create_order`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
@@ -1134,7 +1166,7 @@ $(document).on("ready", function(e) {
$('#pay').modal('hide');
} else if (res.code == 3) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300
@@ -1160,7 +1192,7 @@ $(document).on("ready", function(e) {
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/user/get_balance',
url: `${baseUrl}/http/user/get_balance`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
@@ -1200,7 +1232,7 @@ $(document).on("ready", function(e) {
};
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/product/calc_price',
url: `${baseUrl}/http/product/calc_price`,
dataType: "json",
async:false,
data: this.order_info,
@@ -1210,7 +1242,9 @@ $(document).on("ready", function(e) {
});
switch(this.order_info.order_type) {
case 2:
this.order_info.money = this.order_info.data.periodAmount * price_info.price;
const whitelist = this.order_info.data.maxWhitelist
const discount = Math.max(.6, 1 - .1 * (whitelist - 1))
this.order_info.money = this.order_info.data.periodAmount * whitelist * discount * price_info.price;
break;
case 3:
this.order_info.money = this.order_info.data.periodAmount * price_info.price * this.order_info.data.ipAmount;

View File

@@ -1167,7 +1167,6 @@
<script src="~/js/vue.js"></script>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.18/css/bootstrap-select.min.css">
<!-- (Optional) Latest compiled and minified JavaScript translation files -->
@@ -1216,7 +1215,7 @@
},
created: function () {
this.order_info.account = this.randomString(2) + (Math.floor(Math.random() * 10000) + 1);
this.order_info.password = (Math.floor(Math.random() * 1000) + 1);
this.order_info.password = (Math.floor(Math.random() * 1000000) + 1);
},
methods: {
randomString(len) {
@@ -1447,8 +1446,8 @@
alert('账号长度至少5位');
return;
}
if (this.order_info.password.length < 3 && this.hasNumAndChar(this.order_info.password)) {
alert('密码长度至少3位!');
if (this.order_info.password.length < 6 && this.hasNumAndChar(this.order_info.password)) {
alert('密码长度至少6位!');
return;
}
@@ -1489,7 +1488,7 @@
$('#pay_qilin').modal('hide');
} else if (res.code == 3) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300

View File

@@ -514,7 +514,7 @@ p{
$('#buy').modal('hide');
} else if (res.code == 3) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300

View File

@@ -187,7 +187,7 @@
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">微信扫码支付</h5>
</div>
<div class="modal-body" id="qrcode_s" style="margin: 0 auto;">
<div class="modal-body" id="qrcode_s" style="display:flex;justify-content:center;align-items:center;">
</div>
<div class="modal-footer">
@@ -204,7 +204,6 @@
<script src="~/js/vue.js"></script>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<script type="text/javascript">
var app = new Vue({
@@ -379,7 +378,7 @@
if (res.code == 1) {
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: res.data,
width : 300,
height : 300

View File

@@ -225,14 +225,11 @@
</div>
</div>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<script>
$("#ios_cc").hover(function(){
$("#qrcode_s").html('');
new QRCode(document.getElementById("qrcode_s"), {
$("#qrcode_s").qrcode({
text: 'https://apps.apple.com/cn/app/jie-zou-da-shi/id1448657437',
width : 500,
height : 500

View File

@@ -431,7 +431,7 @@
function getCode(_self) {
if (!timing(_self)) return;
var name = $("#username").val()
var url = '/user/SendPhoneCodevefy?key=User_Code&phone=' + name;
var url = '/user/SendPhonesCodevefy?key=User_Code&phone=' + name;
$.ajax({
type: 'POST',
url: url,
@@ -444,7 +444,7 @@
function getFindCode(_self) {
if (!timing(_self)) return;
var name = $("#fusername").val()
var url = '/user/SendPhoneCodevefy?key=FindUser_Code&phone=' + name;
var url = '/user/SendPhonesCodevefy?key=FindUser_Code&phone=' + name;
$.ajax({
type: 'POST',
url: url,

View File

@@ -234,6 +234,11 @@
白名单设置
</a>
</li>
<li>
<a href="/user/httpwhiteipsu">
白名单设置(短效无限量)
</a>
</li>
</ul>
</li>

View File

@@ -1,4 +1,3 @@
@{
Layout = "_UserLayout";
}
@@ -447,9 +446,17 @@
<div class="col-sm-12 ">
<div class="boxes boxes-border-top text-left margin-top-30 clearfix">
<div class="col-sm-12">
<h5 class=" text-left">价格:¥{{order_info.money}} <span style="float:right;">
<button class="btn btn-new" v-on:click="pay()" data-backdrop="static" >实付¥{{order_info.money}}</button>
</span></h5>
<h5 class=" text-left">
<span style="margin-right:4px">价格:¥{{order_info.money}}</span>
<span style="font-size: 13px;font-weight: 400;color: #666666;">
无限量白名单上限:{{whitelist}}
</span>
<span style="float:right;">
<button class="btn btn-new" v-on:click="pay()"
data-backdrop="static">实付¥{{order_info.money}}
</button>
</span>
</h5>
</div>
</div>
</div>
@@ -462,50 +469,53 @@
</div><!-- /.modal -->
</div>
<script>
var vm = new Vue({
el:'#app',
data:{
pakage_list:[],
order_list:[],
rebuy_data:{
title:'',
packId:'',
packType:'',
periodType:1,
periodAmount:1,
durationType:5,
var baseUrl = '@ViewData["BaseUrl"]';
var vm = new Vue({
el: '#app',
data: {
pakage_list: [],
order_list: [],
rebuy_data: {
title: '',
packId: '',
packType: '',
periodType: 1,
periodAmount: 1,
durationType: 5,
},
order_time_type:'天',
order_info:{
order_type:2,//1:预储值、2短效无限量、3短效包天、4短效包量、5长效游戏
money:1,
data:{}
order_time_type: '天',
order_info: {
order_type: 2,//1:预储值、2短效无限量、3短效包天、4短效包量、5长效游戏
money: 1,
data: {}
},
api_link:'',
api_link_item:{
num:1
api_link: '',
api_link_item: {
num: 1
},
regions:[],
user_detail:{},
},
created:function(){
this.get_package_list();
regions: [],
user_detail: {},
whitelist: 1,
},
methods:{
get_package_list(){
created: function () {
this.get_package_list();
this.get_whitelist_max();
},
methods: {
get_package_list() {
let data = {
cookie:document.cookie,
cookie: document.cookie,
}
var that = this;
var that = this;
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/user/dx_package',
url: `${baseUrl}/http/user/dx_package`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
beforeSend: function(xhr) {
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
@@ -516,17 +526,17 @@
},
get_ip() {
let data = {
cookie:document.cookie,
cookie: document.cookie,
}
var that = this;
var that = this;
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/user/get_user_token',
url: `${baseUrl}/http/user/get_user_token`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
beforeSend: function(xhr) {
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
@@ -536,23 +546,23 @@
}
});
},
autowhiteip(){
autowhiteip() {
this.api_link_item.u = this.user_detail.u
this.api_link_item.t = this.user_detail.t
},
get_order_list() {
let data = {
cookie:document.cookie,
cookie: document.cookie,
}
var that = this;
var that = this;
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/user/dx_order',
url: `${baseUrl}/http/user/dx_order`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
beforeSend: function(xhr) {
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
@@ -562,6 +572,8 @@
});
},
rebuy(r) {
console.log(r);
this.rebuy_data.title = r.name;
this.rebuy_data.packId = r.id;
this.rebuy_data.packType = r.planType;
@@ -577,52 +589,53 @@
this.calc_price();
},
set_btn_checked(id_f,id,text){
set_btn_checked(id_f, id, text) {
var i = 0;
if (text.length > 0) {
this.order_time_type = text
}
for (i=0;i<100;i++) {
$("#"+id_f+i).removeClass("btn-new");
$("#"+id_f+i).addClass("btn-default");
for (i = 0; i < 100; i++) {
$("#" + id_f + i).removeClass("btn-new");
$("#" + id_f + i).addClass("btn-default");
}
$("#"+id_f+id).removeClass("btn-default");
$("#"+id_f+id).addClass("btn-new");
let _this=this
setTimeout(function() {
$("#" + id_f + id).removeClass("btn-default");
$("#" + id_f + id).addClass("btn-new");
let _this = this
setTimeout(function () {
_this.calc_price()
}, 500);
},
gmsc_add(){
gmsc_add() {
this.rebuy_data.periodAmount++;
this.calc_price();
},
//短效包天购买时长修改
gmsc_reduce(){
gmsc_reduce() {
if (this.rebuy_data.periodAmount > 1) {
this.rebuy_data.periodAmount--;
this.calc_price();
}
},
pay(){
pay() {
let that = this;
this.order_info.data = this.rebuy_data;
this.order_info.renew = 1;
let data = {
cookie:document.cookie,
cookie: document.cookie,
order_info: this.order_info
}
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/order/rebuy_order',
url: `${baseUrl}/http/order/rebuy_order`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
beforeSend: function(xhr) {
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
@@ -631,19 +644,19 @@
$('#myModal').modal('hide');
alert(res.msg);
that.get_package_list();
}
}
}
});
},
chaneg_type(r){
chaneg_type(r) {
var that = this;
this.pakage_list.forEach(function(item,index,arr){
this.pakage_list.forEach(function (item, index, arr) {
if (that.api_link_item.pack == item.id) {
that.api_link_item.pt = item.planType;
that.api_link_item.time = item.durationType2;
}
})
@@ -658,25 +671,25 @@
$("#qc").show();
$("#at").hide();
that.api_link_item.distinct = 0;
}
}
if (that.api_link_item.pt == 21) {
$("#gt").show();
}
},
qqms(i){
qqms(i) {
if (i == 1) {
$("#sp").hide();
} else {
$("#sp").show();
}
},
create_api_link(){
create_api_link() {
this.api_link = 'http://get.ip.juip.com/get/ip?';
var regions_list = this.regions.join(",");
for (let key in this.api_link_item) {
if (this.api_link_item.hasOwnProperty(key)) {
this.api_link += key + "=" + this.api_link_item[key]+'&';
this.api_link += key + "=" + this.api_link_item[key] + '&';
}
}
this.api_link += 'regions=' + regions_list;
@@ -684,18 +697,18 @@
// 全选按钮点击事件处理程序
selectAll() {
var checkboxes = document.querySelectorAll('input[name="regions"]'); // 获取所有复选框元素
for (var i = 0; i < checkboxes.length; i++) {
checkboxes[i].checked=true; // 将每个复选框的 checked 属性设置为 true
checkboxes[i].checked = true; // 将每个复选框的 checked 属性设置为 true
this.regions[i] = checkboxes[i].value;
}
},
// 取消全选按钮点击事件处理程序
deselectAll() {
var checkboxes = document.querySelectorAll('input[name="regions"]'); // 获取所有复选框元素
for (var i = 0; i < checkboxes.length; i++) {
checkboxes[i].checked=false; // 移除每个复选框的 checked 属性
checkboxes[i].checked = false; // 移除每个复选框的 checked 属性
}
this.regions = [];
},
@@ -716,30 +729,49 @@
this.order_info.data = this.rebuy_data;
var price_info = {
'ipAmount':0,
'price':0,
'ipAmount': 0,
'price': 0,
};
$.ajax({
type: 'POST',
url: 'https://php-api.juip.com/http/product/calc_price',
url: `${baseUrl}/http/product/calc_price`,
dataType: "json",
async:false,
async: false,
data: this.order_info,
success: function (res) {
price_info = res
}
});
switch(this.order_info.order_type) {
switch (this.order_info.order_type) {
case 2:
this.order_info.money = this.order_info.data.periodAmount * price_info.price;
break;
const whitelist = this.whitelist
const discount = Math.max(.6, 1 - .1 * (whitelist - 1))
this.order_info.money = this.order_info.data.periodAmount * whitelist * discount * price_info.price;
break;
case 3:
this.order_info.money = this.order_info.data.periodAmount * price_info.price * this.order_info.data.ipAmount;
break;
break;
}
this.order_info.money = this.order_info.money.toFixed(2);
},
// 查询短效无限量白名单数量
get_whitelist_max() {
const data = {
cookie: document.cookie,
}
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/white_limit_get_su`,
data: data,
dataType: "json",
success: (res) => {
this.whitelist = res.data;
}
});
}
}
});
}
});
</script>

View File

@@ -0,0 +1,312 @@
@{
Layout = "_UserLayout";
}
<div id="app">
<div class="boxes margin-top-5 clearfix">
<div style="display: flex; align-items: center;">
<input v-model="ip" type="text" style="width: 350px; margin-right: 20px;" placeholder="请输入ip地址并点击保存白名单" />
<button v-on:click="set_ip()" type="button" class="btn btn-primary"
style="outline: none; box-shadow: none;">保存</button>
</div>
<div class="margin-top-30">
<h5>当前白名单列表
<span class="text-warning">当前白名单数量:{{ whiteLimit }} 个</span>
<button type="button" class="btn btn-new btn-xs" data-toggle="modal" data-target="#whitelistModal"
style="outline: none; box-shadow: none; margin-left: 60px;" v-on:click="get_package_details()">
调整白名单上限
</button>
</h5>
<div class="modal fade" id="whitelistModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">调整白名单上限</h5>
<button type="button" class="close" data-dismiss="modal">
<span>&times;</span>
</button>
</div>
<div class="d-flex align-items-center" style="gap: 15px;">
<div class="modal-body btn-group" role="group">
<button type="button" class="btn btn-new btn-xs" v-on:click="decreaseLimit"
style=" outline: none; box-shadow: none;" :disabled="tempWhiteLimit <= 1">-</button>
<span class="btn btn-default btn-xs">{{ tempWhiteLimit }}</span>
<button type="button" class="btn btn-new btn-xs" v-on:click="increaseLimit"
style="outline: none; box-shadow: none;" :disabled="tempWhiteLimit >= 20">+</button>
</div>
<div style="margin-left: 2rem; margin-bottom: 1rem">
<span v-if="tempDiscount === 10">价格<span class="text-danger">无折扣</span></span>
<span v-else class="text-danger">
当前已应用 {{ tempDiscount*10 }}% 折扣
</span>
</div>
<div style="margin-left: 2rem; margin-bottom: 1rem">
调整后到期时间:{{ new Date(newExpre).toLocaleString() }}
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
<button type="button" class="btn btn-primary" v-on:click="set_white_limit()">确定</button>
</div>
</div>
</div>
</div>
<div class="col-sm-12">
<table class="products-table responsive tablesaw tablesaw-stack" data-tablesaw-mode="stack">
<thead>
<tr>
<th>IP地址</th>
<th>设置时间</th>
<th>锁定状态</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr v-for="item in ip_list">
<td style="display:none;">{{item.id}}</td>
<td>{{item.ip}}</td>
<td>{{item.createTime}}</td>
<td>{{item.isLocked}}</td>
<td>
<a v-if="item.isLocked=='未锁定'" v-on:click="lock_ip(item.id,1)"
class="btn btn-new">锁定</a>
<a v-if="item.isLocked=='已锁定'" v-on:click="lock_ip(item.id,0)"
class="btn btn-new">解锁</a>
<a class="btn btn-danger" v-on:click="delete_ip(item.id)">删除</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script>
var baseUrl = '@ViewData["BaseUrl"]';
var vm = new Vue({
el: '#app',
data: {
ip_list: [],
ip: '',
whiteLimit: 1, //获取当前白名单的数量
tempWhiteLimit: 1, //模态框中白名单的数量
tempDiscount: 10,
detail: {},
newExpre: 0,
},
created: function () {
this.get_list()
this.get_white_limit()
this.get_package_details()
},
methods: {
get_list() {
let data = {
cookie: document.cookie,
}
var that = this;
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/white_list_su`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
success: function (res) {
that.ip_list = res.data
}
});
},
set_ip() {
let data = {
cookie: document.cookie,
data: { ip: this.ip }
}
var that = this;
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/create_white_ip_su`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
success: function (res) {
that.get_list()
}
});
},
lock_ip(id, status) {
var lock_ip = {};
lock_ip.id = id;
lock_ip.lock = status;
let dataa = {
cookie: document.cookie,
data: lock_ip
}
var that = this;
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/lock_ip_su`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(dataa),
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
success: function (res) {
that.get_list()
}
});
},
delete_ip(id) {
var dalete_ip = {};
dalete_ip.id = id;
let dataa = {
cookie: document.cookie,
data: dalete_ip
}
var that = this;
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/delete_ip_su`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(dataa),
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
success: function (res) {
that.get_list()
}
});
},
// 添加白名单数量
setTempWhiteLimit(value) {
this.tempWhiteLimit = Math.min(20, value)
this.tempWhiteLimit = Math.max(1, value)
this.tempDiscount = Math.max(6, 11 - value)
this.newExpre = this.calc_remain(this.detail.expireTime, this.whiteLimit, this.tempWhiteLimit)
},
increaseLimit() {
this.setTempWhiteLimit(this.tempWhiteLimit + 1)
},
// 减少白名单数量
decreaseLimit() {
this.setTempWhiteLimit(this.tempWhiteLimit - 1)
},
//确定后把最新白名单数量调接口给后端
set_white_limit() {
let data = {
cookie: document.cookie,
data: { maxAmount: this.tempWhiteLimit }
}
var that = this;
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/white_limit_set_su`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify(data),
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
success: function (res) {
if (res.code > 0) {
$('#whitelistModal').modal('hide');
alert('白名单上限设置成功!');
} else {
alert('设置失败:' + (res.message || '未知错误'));
}
},
error: function () {
alert('设置失败,请重试!');
}
});
},
// 获取白名单当前的数量
get_white_limit() {
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/white_limit_get_su`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify({
cookie: document.cookie,
}),
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
success: (res) => {
if (res.code > 0) {
this.whiteLimit = res.data
this.setTempWhiteLimit(res.data)
}
}
});
},
// 获取最新套餐详情
get_package_details() {
$.ajax({
type: 'POST',
url: `${baseUrl}/http/user/get_unlimited_available`,
dataType: "json",
contentType: "application/json",
data: JSON.stringify({
cookie: document.cookie,
}),
beforeSend: function (xhr) {
xhr.withCredentials = true;
},
crossDomain: true,
success: (res) => {
if (res.code < 0) alert('获取套餐信息失败')
this.detail = res.data
this.setTempWhiteLimit(this.tempWhiteLimit)
}
});
},
// 计算修改白名单上限后的剩余时间
calc_remain(expire, maxWhitelist, newMaxWhitelist) {
// 套餐剩余秒数
const now = Math.floor(Date.now() / 1000)
const prev = expire ?? now
const remain = prev - now
// 白名单比值,时间份数
const multiple = maxWhitelist / newMaxWhitelist
// 折扣比值,新折扣作为基准
const oldDiscount = Math.max(.6, 1 - .1 * (maxWhitelist - 1))
const newDiscount = Math.max(.6, 1 - .1 * (newMaxWhitelist - 1))
const offset = oldDiscount / newDiscount
// 手续费,固定 1%
const fee = 99 / 100
// 返回新到期时间
return Math.floor(remain * multiple * offset * fee + now) * 1000
}
}
});
</script>

View File

@@ -40,17 +40,18 @@
default:
myManagerUrl = '';
}
new QRCode(document.getElementById("myManager"), {
$('#myManager').qrcode({
text: myManagerUrl,
width : 70,
height : 70
});
})
new QRCode(document.getElementById("myManagerimg"), {
$('#myManagerimg').qrcode({
text: myManagerUrl,
width : 200,
height : 200
});
})
$("#myManager").hover(function(){
$("#myManagerimgbg").show();
@@ -357,7 +358,7 @@
</p>
</form>
<h3 id="verify-info" style="display:none;text-align: center;">请打开 微信 扫码进行认证,若扫脸后仍未认证成功,请联系客服</h3>
<div id="qrcode_s" style="text-align: center;padding-left:323px;"></div>
<div id="qrcode_s" style="text-align: center"></div>
<div id="yes" style="padding-top:10px" class="text-center"><a type="button" class="btn btn-primary" href="javascript:location.reload();" ">实名扫脸结束后请点击</a></div>
<script>
@@ -414,11 +415,11 @@
$('#id-cert').hide();
$('#verify-info').show();
$('#yes').show();
new QRCode(document.getElementById("qrcode_s"), {
$('#qrcode_s').qrcode({
text: res.url,
width : 300,
height : 300
});
})
// t1 = window.setInterval(get_verify_res,1500);
} else {
@@ -675,7 +676,6 @@
<!-- 支付弹窗结束 -->
<div id="aliPayBox" style="display:none"></div>
<script type="text/javascript" src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/qrcodejs/1.0.0/qrcode.min.js"></script>
<script>
$('#yes').hide();

View File

@@ -38,7 +38,7 @@
"VirtualHost": "/"
},
"WxApps": {
"AppID": "wx18e5b4f42773c3ec", //<2F><><EFBFBD><EFBFBD><EFBFBD>ں<EFBFBD>
"AppID": "wx18e5b4f42773c3ec",
"AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758",
"MchId": "1571608411",
"MchKey": "846b9b0ea4aa4d5ca701e2c9f0aa6dae"

View File

@@ -1,52 +0,0 @@
{
"TestCountLimit": 3,
"Service_BaseUrl": "http://hapi.hncore.net/",
"BaseInfoUrl": "http://www.ipkd.com/",
"NotifyUrl": "http://hapi.hncore.net/product/WxOrderCallBack",
//"MySql": "Server=101.200.84.129;Database=hualian_test;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306",
"MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=123456789;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306",
"Redis": "127.0.0.1:6379,password=123456,defaultDatabase=1,poolsize=1",
"Aliyun": {
"Oss": {
"AliEndpoint": "oss-cn-qingdao.aliyuncs.com",
"AliAccessId": "dpisQKVqzAYffodY",
"AliAccessKey": "ZG3uAkwPR4UpfsTJzG9DW1WeKIskHz"
},
"Pay": {
"NotifyUrl": "http://www.juip.com/product/AliNotify",
"ReturnUrl": "http://www.juip.com/product/AliReturn",
"UNotifyUrl": "http://www.juip.com/user/AliNotify",
"UReturnUrl": "http://www.juip.com/user/AliReturn",
"AppId": "2021005115644614",
"PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgu0+q0O98pTQev1dNQdYfrsIx/vt19HQMKHvyetTBaL3w3xr/pJywUdsSBXyVk7roDjOWbXXoQzOkMLf6e0XJzBOh8pl+ZIfXJMh4a4pdL1FGzumueNzjtV7Y8AefTvfxsxaQFfPWN+xRp2c7EBVcT8olka0A1HhrLb3C7c+iPZLw3YR+0LiKFrMbLEXsi6RdmehAGqt6Kt8ouHPwUaQ9tV600XliyySZNDEG2UifXCX7GE1zj7iAeO23Y2lCb+gtKCmadoETnB12YCFTbSckGW/xYhOM+BqcTYXBN/TYG8hSwvwf2GSYUcx97XaHHfh6TgoygD6EzE/U5sOfVisGwIDAQAB",
"PrivateKey": "MIIEogIBAAKCAQEApD5xBCfOL2aiayoPbXSp6TS8D24O8UXHCN6bnm8jqGtFwRA7kKcu9szoolaRvyyJQUKfzksU1/TEytMThO7f3J7eWy0ePI/6Fh1YZGf3SmM89zK7twBW41eY1T9nzolPpAyiUC860PM8ZL8nMNmJZFdNNYGaEX4cVwHjXAmvfe2w0H8U9fBimH6vRUXrmkFTTughnAjUgv3Oi2U8YH4AFSBkGTaQVHzlSDbEbi2wOju/zN61Nze3MnVrsIJRszZ0uUsEOxQt3alO9YrlVfmRK+/RSePeerrG+XnoSatBV41htNtijNujPuZR52+cqGC20w+KLDTW1E83k9pR72ic7wIDAQABAoIBAGmkA/tBQxw37pXxGrUzSapHEgL2rkO/ttJcpEmWgJ/uR5JzR2y2K73wdF0eQ2ZsVegU20bMAh8ZP46Zjz98iZ6UzL5mWcFoddnNjDIgsO02wVraVeTSIhDeId5fhvxQU1pYCfp7NmB5YsoGLUX9VaKliHK25osDy2SnQT7MuATNVwzqpfGDkZEWKnnjsrR726rcWIzOjH+FlBqFsVU4POpIKxTQ89VOJkQOUlfLwHUGck+DYR5AhgFSmrToqhUwiiG9W7S6RM1KyzYDaB3OExB0rErS48q3s4/EJSbTFVfhMB6rAmH3oR3pec2gDuTU9jIk/Vv2eBwZzdF6rnfYh/ECgYEA8ZLmOX06m1xZBTKM69OOgjBCX+G7BhTFAldjxLoZHFN6+Hxy5gD3bl7FwUsEoF4vVo7XFbEHVH4mGIFfEQrJ6y2UpXRlkIURK1j2w8NvjinAWxtVb/bfF+CSjEOTOyhoA4t+qOTxbhluS1KxbN9tiWtwnDaK/BN13pSLec9ba6kCgYEArg1ZGLY6RNKu29FTiDB6Ag7/Or1dOvA/LT0fai+400uNz9yB7Q5a0Mx+UOciFqaRuFIRHh7YUVkqu/duzujLktFU41CzKQGOjwpGB7SrOfX/jWiT6wW6jCAdQ9KXp9zjc0KslhwwzprHlEQkMZCnLBL4/aJ2fmVgVEVMLz2m4tcCgYAJSBGcZ9lWmse40WZksS4qhlwmfu/Gngmru1vT9Sp90h9JaM6pU6QuE2oZsR4uYzACbV6KMNENSAOCsYXLi9SSOqAZc01rrhEozzQ79UhV9/iyB2zS7nNH4ZL/3KDNhxHoAPYO2y0Dg+qe7kBu5G669uvOtLHGWaEPujlZpsPmcQKBgAvp8f1VC+wGF94IGBWsa82URTg6GhWcuFZaZroYBijAdTaTO3mEkAbW2JalG5o9UKAzTeSn69q1pc00BKu5F6Y3Gf5tWbYm2yFDbMO+RDI1eoatb+KYg8pvsFEiKytcXV1YZQPpbhXWVm75sxiJdEf6DH0gD8hbHBrom2xoZfIFAoGAXPDKBpuEw2+cwZNi6SkZn7J3xJ0XQL6yEFRTWVXIbdk6R4iRL2AbdnoiwKaMmvYQd2HTN34raGW39DzCRzgWzrKUoOTXwj3F/aSfpcuGPeZrBh/f419GoDZtWhibAjxqrn9h6uEKclAWOGj82uC6oof9nCqQIp5WqPaixAa4ceE="
},
"PayH5": {
"NotifyUrl": "http://www.juip.com/product/AliNotifyH5",
"ReturnUrl": "http://www.juip.com/product/AliReturnH5",
"UNotifyUrl": "http://www.juip.com/user/AliNotifyH5",
"UReturnUrl": "http://www.juip.com/user/AliReturnH5",
"AppId": "2021005115644614",
"PublicKey": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgu0+q0O98pTQev1dNQdYfrsIx/vt19HQMKHvyetTBaL3w3xr/pJywUdsSBXyVk7roDjOWbXXoQzOkMLf6e0XJzBOh8pl+ZIfXJMh4a4pdL1FGzumueNzjtV7Y8AefTvfxsxaQFfPWN+xRp2c7EBVcT8olka0A1HhrLb3C7c+iPZLw3YR+0LiKFrMbLEXsi6RdmehAGqt6Kt8ouHPwUaQ9tV600XliyySZNDEG2UifXCX7GE1zj7iAeO23Y2lCb+gtKCmadoETnB12YCFTbSckGW/xYhOM+BqcTYXBN/TYG8hSwvwf2GSYUcx97XaHHfh6TgoygD6EzE/U5sOfVisGwIDAQAB",
"PrivateKey": "MIIEogIBAAKCAQEApD5xBCfOL2aiayoPbXSp6TS8D24O8UXHCN6bnm8jqGtFwRA7kKcu9szoolaRvyyJQUKfzksU1/TEytMThO7f3J7eWy0ePI/6Fh1YZGf3SmM89zK7twBW41eY1T9nzolPpAyiUC860PM8ZL8nMNmJZFdNNYGaEX4cVwHjXAmvfe2w0H8U9fBimH6vRUXrmkFTTughnAjUgv3Oi2U8YH4AFSBkGTaQVHzlSDbEbi2wOju/zN61Nze3MnVrsIJRszZ0uUsEOxQt3alO9YrlVfmRK+/RSePeerrG+XnoSatBV41htNtijNujPuZR52+cqGC20w+KLDTW1E83k9pR72ic7wIDAQABAoIBAGmkA/tBQxw37pXxGrUzSapHEgL2rkO/ttJcpEmWgJ/uR5JzR2y2K73wdF0eQ2ZsVegU20bMAh8ZP46Zjz98iZ6UzL5mWcFoddnNjDIgsO02wVraVeTSIhDeId5fhvxQU1pYCfp7NmB5YsoGLUX9VaKliHK25osDy2SnQT7MuATNVwzqpfGDkZEWKnnjsrR726rcWIzOjH+FlBqFsVU4POpIKxTQ89VOJkQOUlfLwHUGck+DYR5AhgFSmrToqhUwiiG9W7S6RM1KyzYDaB3OExB0rErS48q3s4/EJSbTFVfhMB6rAmH3oR3pec2gDuTU9jIk/Vv2eBwZzdF6rnfYh/ECgYEA8ZLmOX06m1xZBTKM69OOgjBCX+G7BhTFAldjxLoZHFN6+Hxy5gD3bl7FwUsEoF4vVo7XFbEHVH4mGIFfEQrJ6y2UpXRlkIURK1j2w8NvjinAWxtVb/bfF+CSjEOTOyhoA4t+qOTxbhluS1KxbN9tiWtwnDaK/BN13pSLec9ba6kCgYEArg1ZGLY6RNKu29FTiDB6Ag7/Or1dOvA/LT0fai+400uNz9yB7Q5a0Mx+UOciFqaRuFIRHh7YUVkqu/duzujLktFU41CzKQGOjwpGB7SrOfX/jWiT6wW6jCAdQ9KXp9zjc0KslhwwzprHlEQkMZCnLBL4/aJ2fmVgVEVMLz2m4tcCgYAJSBGcZ9lWmse40WZksS4qhlwmfu/Gngmru1vT9Sp90h9JaM6pU6QuE2oZsR4uYzACbV6KMNENSAOCsYXLi9SSOqAZc01rrhEozzQ79UhV9/iyB2zS7nNH4ZL/3KDNhxHoAPYO2y0Dg+qe7kBu5G669uvOtLHGWaEPujlZpsPmcQKBgAvp8f1VC+wGF94IGBWsa82URTg6GhWcuFZaZroYBijAdTaTO3mEkAbW2JalG5o9UKAzTeSn69q1pc00BKu5F6Y3Gf5tWbYm2yFDbMO+RDI1eoatb+KYg8pvsFEiKytcXV1YZQPpbhXWVm75sxiJdEf6DH0gD8hbHBrom2xoZfIFAoGAXPDKBpuEw2+cwZNi6SkZn7J3xJ0XQL6yEFRTWVXIbdk6R4iRL2AbdnoiwKaMmvYQd2HTN34raGW39DzCRzgWzrKUoOTXwj3F/aSfpcuGPeZrBh/f419GoDZtWhibAjxqrn9h6uEKclAWOGj82uC6oof9nCqQIp5WqPaixAa4ceE="
}
},
"RabbitMqConfig": {
"HostName": "127.0.0.1",
"Port": 5672,
"UserName": "guest",
"Password": "123456",
"VirtualHost": "/"
},
"WxApps": {
"AppID": "wx18e5b4f42773c3ec", //<2F><><EFBFBD><EFBFBD><EFBFBD>ں<EFBFBD>
"AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758",
"EncodingAESKey": "XKBeQXngKx4Ijr2QbJo2cR6ydk0uhQCXyKVJzuXgdjH",
"MchId": "1571608411",
"MchKey": "846b9b0ea4aa4d5ca701e2c9f0aa6dae"
}
}

View File

@@ -2,6 +2,7 @@
"TestCountLimit": 3,
"Service_BaseUrl": "https://www.juip.com/",
"BaseInfoUrl": "https://www.juip.com/",
"BackendUrl": "https://php-api.juip.com/",
"NotifyUrl": "https://www.juip.com/product/WxOrderCallBack",
"UNotifyUrl": "https://www.juip.com/user/WxOrderCallBack",
"MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306",

View File

@@ -1,5 +0,0 @@
{
"sdk": {
"version": "2.2.100"
}
}

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
throwConfigExceptions="true"
internalLogLevel="Info"
internalLogToTrace="true">
<targets>
<target xsi:type="Null" name="blackhole" />
<target name="LOG_FILE"
xsi:type="File"
layout="[${longdate}] ${pad:padding=-5:inner=${level:uppercase=true}}${newline}${message}${newline}"
encoding="utf-8"
fileName="Logs/${date:format=yyyyMMdd}/${filesystem-normalize:inner=${level}}.log" />
</targets>
<rules>
<logger name="UserLog" minlevel="Trace" writeTo="LOG_FILE" />
</rules>
</nlog>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
throwConfigExceptions="true"
internalLogLevel="Info"
internalLogToTrace="true">
<targets>
<target xsi:type="Null" name="blackhole" />
<target name="LOG_FILE"
xsi:type="File"
layout="[${longdate}] ${pad:padding=-5:inner=${level:uppercase=true}}${newline}${message}${newline}"
encoding="utf-8"
fileName="Logs/${date:format=yyyyMMdd}/${filesystem-normalize:inner=${level}}.log" />
</targets>
<rules>
<logger name="UserLog" minlevel="Trace" writeTo="LOG_FILE" />
</rules>
</nlog>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]

View File

@@ -1,16 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Hncore.Infrastructure")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Hncore.Infrastructure")]
[assembly: System.Reflection.AssemblyTitleAttribute("Hncore.Infrastructure")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1,5 +0,0 @@
is_global = true
build_property.RootNamespace = Hncore.Infrastructure
build_property.ProjectDir = d:\www\juipnet\Infrastructure\Hncore.Infrastructure\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -1,20 +0,0 @@
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\nlog.config
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\Hncore.Infrastructure.deps.json
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\Hncore.Infrastructure.pdb
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.csprojAssemblyReference.cache
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\nlog.config
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\Hncore.Infrastructure.deps.json
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Debug\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Debug\netstandard2.0\Hncore.Infrastructure.csprojAssemblyReference.cache

View File

@@ -1,200 +0,0 @@
{
"format": 1,
"restore": {
"d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {}
},
"projects": {
"d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"projectName": "Hncore.Infrastructure",
"projectPath": "d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"AngleSharp": {
"target": "Package",
"version": "[0.12.1, )"
},
"Autofac": {
"target": "Package",
"version": "[4.9.1, )"
},
"Autofac.Extensions.DependencyInjection": {
"target": "Package",
"version": "[4.4.0, )"
},
"Bogus": {
"target": "Package",
"version": "[26.0.1, )"
},
"CSRedisCore": {
"target": "Package",
"version": "[3.0.60, )"
},
"Dapper": {
"target": "Package",
"version": "[1.60.6, )"
},
"DotNetCore.NPOI": {
"target": "Package",
"version": "[1.2.1, )"
},
"JWT": {
"target": "Package",
"version": "[5.0.1, )"
},
"MQTTnet": {
"target": "Package",
"version": "[2.8.5, )"
},
"MQiniu.Core": {
"target": "Package",
"version": "[1.0.1, )"
},
"Microsoft.AspNetCore.Mvc": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.AspNetCore.Mvc.Versioning": {
"target": "Package",
"version": "[3.1.2, )"
},
"Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer": {
"target": "Package",
"version": "[3.2.0, )"
},
"Microsoft.AspNetCore.TestHost": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore.Relational": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.EnvironmentVariables": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.Json": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Http": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Options.ConfigurationExtensions": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.NET.Test.Sdk": {
"target": "Package",
"version": "[16.0.1, )"
},
"MySqlConnector": {
"target": "Package",
"version": "[0.56.0, )"
},
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"NLog.Extensions.Logging": {
"target": "Package",
"version": "[1.4.0, )"
},
"Polly": {
"target": "Package",
"version": "[7.1.0, )"
},
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[4.0.1, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[4.5.1, )"
},
"System.Text.Encoding.CodePages": {
"target": "Package",
"version": "[4.5.1, )"
},
"TinyMapper": {
"target": "Package",
"version": "[3.0.2-beta, )"
},
"TinyPinyin.Core.Standard": {
"target": "Package",
"version": "[1.0.0, )"
},
"aliyun-net-sdk-core": {
"target": "Package",
"version": "[1.5.3, )"
},
"xunit": {
"target": "Package",
"version": "[2.4.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -1,25 +0,0 @@
<?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)' == '' ">D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.9.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)xunit.core\2.4.1\build\xunit.core.props" Condition="Exists('$(NuGetPackageRoot)xunit.core\2.4.1\build\xunit.core.props')" />
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props')" />
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">C:\Users\Administrator\.nuget\packages\xunit.analyzers\0.10.0</Pkgxunit_analyzers>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers>
<PkgMicrosoft_AspNetCore_Razor_Design Condition=" '$(PkgMicrosoft_AspNetCore_Razor_Design)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0</PkgMicrosoft_AspNetCore_Razor_Design>
</PropertyGroup>
</Project>

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
<Import Project="$(NuGetPackageRoot)xunit.core\2.4.1\build\xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)xunit.core\2.4.1\build\xunit.core.targets')" />
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets')" />
</ImportGroup>
</Project>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = "")]

View File

@@ -1,16 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Hncore.Infrastructure")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Hncore.Infrastructure")]
[assembly: System.Reflection.AssemblyTitleAttribute("Hncore.Infrastructure")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1,20 +0,0 @@
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\nlog.config
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\Hncore.Infrastructure.deps.json
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\Hncore.Infrastructure.pdb
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.csprojAssemblyReference.cache
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\nlog.config
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\Hncore.Infrastructure.deps.json
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\bin\Release\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\Hncore.Infrastructure\obj\Release\netstandard2.0\Hncore.Infrastructure.csprojAssemblyReference.cache

File diff suppressed because it is too large Load Diff

View File

@@ -1,239 +0,0 @@
{
"runtimeTarget": {
"name": ".NETStandard,Version=v2.0/",
"signature": "63543f12545b706204b095bee5bf9a18242b1182"
},
"compilationOptions": {},
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"Alipay.AopSdk.Core/2.5.0.1": {
"dependencies": {
"NETStandard.Library": "2.0.3",
"Newtonsoft.Json": "12.0.3",
"Nito.AsyncEx": "5.0.0"
},
"runtime": {
"Alipay.AopSdk.Core.dll": {}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"NETStandard.Library/2.0.3": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Newtonsoft.Json/12.0.3": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.0.3.23909"
}
}
},
"Nito.AsyncEx/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Context": "5.0.0",
"Nito.AsyncEx.Coordination": "5.0.0",
"Nito.AsyncEx.Interop.WaitHandles": "5.0.0",
"Nito.AsyncEx.Oop": "5.0.0",
"Nito.AsyncEx.Tasks": "5.0.0",
"Nito.Cancellation": "1.0.5"
}
},
"Nito.AsyncEx.Context/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Coordination/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0",
"Nito.Collections.Deque": "1.0.4",
"Nito.Disposables": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Interop.WaitHandles/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Oop/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Coordination": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Oop.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Tasks/5.0.0": {
"dependencies": {
"Nito.Disposables": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.Cancellation/1.0.5": {
"dependencies": {
"Nito.Disposables": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.Cancellation.dll": {
"assemblyVersion": "1.0.5.0",
"fileVersion": "1.0.5.0"
}
}
},
"Nito.Collections.Deque/1.0.4": {
"runtime": {
"lib/netstandard2.0/Nito.Collections.Deque.dll": {
"assemblyVersion": "1.0.4.0",
"fileVersion": "1.0.4.0"
}
}
},
"Nito.Disposables/2.0.0": {
"dependencies": {
"System.Collections.Immutable": "1.4.0"
},
"runtime": {
"lib/netstandard2.0/Nito.Disposables.dll": {
"assemblyVersion": "2.0.0.0",
"fileVersion": "2.0.0.0"
}
}
},
"System.Collections.Immutable/1.4.0": {
"runtime": {
"lib/netstandard2.0/System.Collections.Immutable.dll": {
"assemblyVersion": "1.2.2.0",
"fileVersion": "4.6.25519.3"
}
}
}
}
},
"libraries": {
"Alipay.AopSdk.Core/2.5.0.1": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bLpT1f/SFlO1CzqXG12KnJzpZs6lv24uX2Rzi4Fmm0noJpNlnWRVryuO3yK18Ca04t/YHcO1e1Z0WDfjseqNzw==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"NETStandard.Library/2.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"path": "netstandard.library/2.0.3",
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
},
"Newtonsoft.Json/12.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aTRmXwR5xYu+mWxE8r8W1DWnL02SeV8LwdQMsLwTWP8OZgrCCyTqvOAe5hRb1VNQYXjln7qr0PKpSyO/pcc19Q==",
"path": "newtonsoft.json/12.0.3",
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
},
"Nito.AsyncEx/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rp1fyiUQalO1Xth2AhLmK6BMMfNkdIVJGlwmFW+jcioyCUlcBA9QZgnR1q6e5hqVdQi/29NQZCzo1Qr9nJ2NrQ==",
"path": "nito.asyncex/5.0.0",
"hashPath": "nito.asyncex.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Context/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2KLVqSNkrLEJPKwKfJ7Vze5dB4knty9DuB8Nt6VDoHeuqXmYAYfUwzsH5We+0dqqTSVdll9ShyKnFLoEXsgooA==",
"path": "nito.asyncex.context/5.0.0",
"hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Coordination/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tl+sOQCgm0F4+bIh3+I0OT2v6jeyiGqU4iEmBqU5jfYa3RUUHO19Yjrl8eUwmtOpufXhAnZfJOWCzR9xWTSJNA==",
"path": "nito.asyncex.coordination/5.0.0",
"hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Interop.WaitHandles/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VrO6BlotDW+BZcfPXoPT5uqp4VQMdomCIRp4gxADbUZVfYf4sv8oo3M8mUmPSTDn088cbEhNCEoTr5JgA6QNug==",
"path": "nito.asyncex.interop.waithandles/5.0.0",
"hashPath": "nito.asyncex.interop.waithandles.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Oop/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+ahHT9sLHfn2xHFAMB71aIbs3YcTwsk5ERkx4DfaGPGc6bAA/dlTXAQbFAEqxVF3A94qPUreR1BOgZNZ1r8cRw==",
"path": "nito.asyncex.oop/5.0.0",
"hashPath": "nito.asyncex.oop.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Tasks/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YhiadlnOLZ41Yloz6G3V5JRSJwwYN8drkM9U1BlaU9BbgZ0Wom6avgy5AMu+1xJfmHh/FMldacbY6ECrbJd2dQ==",
"path": "nito.asyncex.tasks/5.0.0",
"hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
},
"Nito.Cancellation/1.0.5": {
"type": "package",
"serviceable": true,
"sha512": "sha512-H1UUiC8+LhjrHuWXuNfMijYeXp6bf1pa7HBxQlrzGfBv0Bjpu7e2VoIYvU9+j3kjtlCAv+VOdGj/kDROkwlzjQ==",
"path": "nito.cancellation/1.0.5",
"hashPath": "nito.cancellation.1.0.5.nupkg.sha512"
},
"Nito.Collections.Deque/1.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9Ek7LWxWuM1l6DRchMqeoJXMOz+6lHu8OTDO0yMGIYfiN2kvoPjfXHDTxJTd2B+HOUay0yQVUVAwPgoHMO72vQ==",
"path": "nito.collections.deque/1.0.4",
"hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
},
"Nito.Disposables/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1ATeAx0Sip8rjlRz+HFq7XUvH4ZqLqNBnCVv/a4byC8EUiXXOM35mx70CCUWuqknnlj0faGCTWIqD8lJlaMKGQ==",
"path": "nito.disposables/2.0.0",
"hashPath": "nito.disposables.2.0.0.nupkg.sha512"
},
"System.Collections.Immutable/1.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1aNA04B7wZWbZ8FgVg+Rg9vkzfQkmTwE1N6Lj3h14Gl8VupDS8j/mrfvv/FlQJL0ts8sMMKRgwnKntfQ1gQ3kQ==",
"path": "system.collections.immutable/1.4.0",
"hashPath": "system.collections.immutable.1.4.0.nupkg.sha512"
}
}
}

View File

@@ -1,239 +0,0 @@
{
"runtimeTarget": {
"name": ".NETStandard,Version=v2.0/",
"signature": "63543f12545b706204b095bee5bf9a18242b1182"
},
"compilationOptions": {},
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"Alipay.AopSdk.Core/2.5.0.1": {
"dependencies": {
"NETStandard.Library": "2.0.3",
"Newtonsoft.Json": "12.0.3",
"Nito.AsyncEx": "5.0.0"
},
"runtime": {
"Alipay.AopSdk.Core.dll": {}
}
},
"Microsoft.NETCore.Platforms/1.1.0": {},
"NETStandard.Library/2.0.3": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
}
},
"Newtonsoft.Json/12.0.3": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.0.3.23909"
}
}
},
"Nito.AsyncEx/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Context": "5.0.0",
"Nito.AsyncEx.Coordination": "5.0.0",
"Nito.AsyncEx.Interop.WaitHandles": "5.0.0",
"Nito.AsyncEx.Oop": "5.0.0",
"Nito.AsyncEx.Tasks": "5.0.0",
"Nito.Cancellation": "1.0.5"
}
},
"Nito.AsyncEx.Context/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Coordination/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0",
"Nito.Collections.Deque": "1.0.4",
"Nito.Disposables": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Interop.WaitHandles/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Oop/5.0.0": {
"dependencies": {
"Nito.AsyncEx.Coordination": "5.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Oop.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.AsyncEx.Tasks/5.0.0": {
"dependencies": {
"Nito.Disposables": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
"assemblyVersion": "5.0.0.0",
"fileVersion": "5.0.0.0"
}
}
},
"Nito.Cancellation/1.0.5": {
"dependencies": {
"Nito.Disposables": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Nito.Cancellation.dll": {
"assemblyVersion": "1.0.5.0",
"fileVersion": "1.0.5.0"
}
}
},
"Nito.Collections.Deque/1.0.4": {
"runtime": {
"lib/netstandard2.0/Nito.Collections.Deque.dll": {
"assemblyVersion": "1.0.4.0",
"fileVersion": "1.0.4.0"
}
}
},
"Nito.Disposables/2.0.0": {
"dependencies": {
"System.Collections.Immutable": "1.4.0"
},
"runtime": {
"lib/netstandard2.0/Nito.Disposables.dll": {
"assemblyVersion": "2.0.0.0",
"fileVersion": "2.0.0.0"
}
}
},
"System.Collections.Immutable/1.4.0": {
"runtime": {
"lib/netstandard2.0/System.Collections.Immutable.dll": {
"assemblyVersion": "1.2.2.0",
"fileVersion": "4.6.25519.3"
}
}
}
}
},
"libraries": {
"Alipay.AopSdk.Core/2.5.0.1": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bLpT1f/SFlO1CzqXG12KnJzpZs6lv24uX2Rzi4Fmm0noJpNlnWRVryuO3yK18Ca04t/YHcO1e1Z0WDfjseqNzw==",
"path": "microsoft.netcore.platforms/1.1.0",
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
},
"NETStandard.Library/2.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"path": "netstandard.library/2.0.3",
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
},
"Newtonsoft.Json/12.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aTRmXwR5xYu+mWxE8r8W1DWnL02SeV8LwdQMsLwTWP8OZgrCCyTqvOAe5hRb1VNQYXjln7qr0PKpSyO/pcc19Q==",
"path": "newtonsoft.json/12.0.3",
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
},
"Nito.AsyncEx/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rp1fyiUQalO1Xth2AhLmK6BMMfNkdIVJGlwmFW+jcioyCUlcBA9QZgnR1q6e5hqVdQi/29NQZCzo1Qr9nJ2NrQ==",
"path": "nito.asyncex/5.0.0",
"hashPath": "nito.asyncex.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Context/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2KLVqSNkrLEJPKwKfJ7Vze5dB4knty9DuB8Nt6VDoHeuqXmYAYfUwzsH5We+0dqqTSVdll9ShyKnFLoEXsgooA==",
"path": "nito.asyncex.context/5.0.0",
"hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Coordination/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tl+sOQCgm0F4+bIh3+I0OT2v6jeyiGqU4iEmBqU5jfYa3RUUHO19Yjrl8eUwmtOpufXhAnZfJOWCzR9xWTSJNA==",
"path": "nito.asyncex.coordination/5.0.0",
"hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Interop.WaitHandles/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VrO6BlotDW+BZcfPXoPT5uqp4VQMdomCIRp4gxADbUZVfYf4sv8oo3M8mUmPSTDn088cbEhNCEoTr5JgA6QNug==",
"path": "nito.asyncex.interop.waithandles/5.0.0",
"hashPath": "nito.asyncex.interop.waithandles.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Oop/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+ahHT9sLHfn2xHFAMB71aIbs3YcTwsk5ERkx4DfaGPGc6bAA/dlTXAQbFAEqxVF3A94qPUreR1BOgZNZ1r8cRw==",
"path": "nito.asyncex.oop/5.0.0",
"hashPath": "nito.asyncex.oop.5.0.0.nupkg.sha512"
},
"Nito.AsyncEx.Tasks/5.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YhiadlnOLZ41Yloz6G3V5JRSJwwYN8drkM9U1BlaU9BbgZ0Wom6avgy5AMu+1xJfmHh/FMldacbY6ECrbJd2dQ==",
"path": "nito.asyncex.tasks/5.0.0",
"hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512"
},
"Nito.Cancellation/1.0.5": {
"type": "package",
"serviceable": true,
"sha512": "sha512-H1UUiC8+LhjrHuWXuNfMijYeXp6bf1pa7HBxQlrzGfBv0Bjpu7e2VoIYvU9+j3kjtlCAv+VOdGj/kDROkwlzjQ==",
"path": "nito.cancellation/1.0.5",
"hashPath": "nito.cancellation.1.0.5.nupkg.sha512"
},
"Nito.Collections.Deque/1.0.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9Ek7LWxWuM1l6DRchMqeoJXMOz+6lHu8OTDO0yMGIYfiN2kvoPjfXHDTxJTd2B+HOUay0yQVUVAwPgoHMO72vQ==",
"path": "nito.collections.deque/1.0.4",
"hashPath": "nito.collections.deque.1.0.4.nupkg.sha512"
},
"Nito.Disposables/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1ATeAx0Sip8rjlRz+HFq7XUvH4ZqLqNBnCVv/a4byC8EUiXXOM35mx70CCUWuqknnlj0faGCTWIqD8lJlaMKGQ==",
"path": "nito.disposables/2.0.0",
"hashPath": "nito.disposables.2.0.0.nupkg.sha512"
},
"System.Collections.Immutable/1.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1aNA04B7wZWbZ8FgVg+Rg9vkzfQkmTwE1N6Lj3h14Gl8VupDS8j/mrfvv/FlQJL0ts8sMMKRgwnKntfQ1gQ3kQ==",
"path": "system.collections.immutable/1.4.0",
"hashPath": "system.collections.immutable.1.4.0.nupkg.sha512"
}
}
}

View File

@@ -1,78 +0,0 @@
{
"format": 1,
"restore": {
"D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\Alipay.AopSdk.Core.csproj": {}
},
"projects": {
"D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\Alipay.AopSdk.Core.csproj": {
"version": "2.5.0.1",
"restore": {
"projectUniqueName": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\Alipay.AopSdk.Core.csproj",
"projectName": "Alipay.AopSdk.Core",
"projectPath": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\Alipay.AopSdk.Core.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[12.0.3, )"
},
"Nito.AsyncEx": {
"target": "Package",
"version": "[5.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -1,15 +0,0 @@
<?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)' == '' ">D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.9.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
</ImportGroup>
</Project>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]

View File

@@ -1,20 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("stulzq")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright 2017-2019 stulzq")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("支付宝Alipay服务端SDK与官方SDK接口完全相同。完全可以按照官方文档进行开发。除了支持支付以外官方SDK支持的功能本SDK全部支持且用法几乎一样" +
"代码都可参考官方文档代码。github:https://github.com/stulzq/Alipay.AopSdk.Core访问github获取demo" +
"以及使用文档。")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.5.0.1")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.5.0.1")]
[assembly: System.Reflection.AssemblyProductAttribute("Alipay.AopSdk.Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("Alipay.AopSdk.Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("2.5.0.1")]

View File

@@ -1,5 +0,0 @@
is_global = true
build_property.RootNamespace = Alipay.AopSdk.Core
build_property.ProjectDir = d:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -1,18 +0,0 @@
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Debug\netstandard2.0\Alipay.AopSdk.Core.deps.json
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Debug\netstandard2.0\Alipay.AopSdk.Core.dll
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Debug\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.csprojAssemblyReference.cache
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.dll
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Debug\netstandard2.0\Alipay.AopSdk.Core.deps.json
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Debug\netstandard2.0\Alipay.AopSdk.Core.dll
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Debug\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.dll
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Debug\netstandard2.0\Alipay.AopSdk.Core.csprojAssemblyReference.cache

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = "")]

View File

@@ -1,20 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("stulzq")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright 2017-2019 stulzq")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("支付宝Alipay服务端SDK与官方SDK接口完全相同。完全可以按照官方文档进行开发。除了支持支付以外官方SDK支持的功能本SDK全部支持且用法几乎一样" +
"代码都可参考官方文档代码。github:https://github.com/stulzq/Alipay.AopSdk.Core访问github获取demo" +
"以及使用文档。")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.5.0.1")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.5.0.1")]
[assembly: System.Reflection.AssemblyProductAttribute("Alipay.AopSdk.Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("Alipay.AopSdk.Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("2.5.0.1")]

View File

@@ -1,18 +0,0 @@
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Release\netstandard2.0\Alipay.AopSdk.Core.deps.json
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Release\netstandard2.0\Alipay.AopSdk.Core.dll
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Release\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.csprojAssemblyReference.cache
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.dll
D:\test\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Release\netstandard2.0\Alipay.AopSdk.Core.deps.json
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Release\netstandard2.0\Alipay.AopSdk.Core.dll
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\bin\Release\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.dll
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.pdb
D:\www\juipnet\Infrastructure\ServiceClient\Alipay.AopSdk.Core\obj\Release\netstandard2.0\Alipay.AopSdk.Core.csprojAssemblyReference.cache

View File

@@ -1,558 +0,0 @@
{
"version": 3,
"targets": {
".NETStandard,Version=v2.0": {
"Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"NETStandard.Library/2.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
},
"build": {
"build/netstandard2.0/NETStandard.Library.targets": {}
}
},
"Newtonsoft.Json/12.0.3": {
"type": "package",
"compile": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
}
},
"Nito.AsyncEx/5.0.0": {
"type": "package",
"dependencies": {
"Nito.AsyncEx.Context": "5.0.0",
"Nito.AsyncEx.Coordination": "5.0.0",
"Nito.AsyncEx.Interop.WaitHandles": "5.0.0",
"Nito.AsyncEx.Oop": "5.0.0",
"Nito.AsyncEx.Tasks": "5.0.0",
"Nito.Cancellation": "1.0.5"
}
},
"Nito.AsyncEx.Context/5.0.0": {
"type": "package",
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0"
},
"compile": {
"lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Context.dll": {}
}
},
"Nito.AsyncEx.Coordination/5.0.0": {
"type": "package",
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0",
"Nito.Collections.Deque": "1.0.4",
"Nito.Disposables": "2.0.0"
},
"compile": {
"lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {}
}
},
"Nito.AsyncEx.Interop.WaitHandles/5.0.0": {
"type": "package",
"dependencies": {
"Nito.AsyncEx.Tasks": "5.0.0"
},
"compile": {
"lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.dll": {}
}
},
"Nito.AsyncEx.Oop/5.0.0": {
"type": "package",
"dependencies": {
"Nito.AsyncEx.Coordination": "5.0.0"
},
"compile": {
"lib/netstandard2.0/Nito.AsyncEx.Oop.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Oop.dll": {}
}
},
"Nito.AsyncEx.Tasks/5.0.0": {
"type": "package",
"dependencies": {
"Nito.Disposables": "2.0.0"
},
"compile": {
"lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {}
}
},
"Nito.Cancellation/1.0.5": {
"type": "package",
"dependencies": {
"Nito.Disposables": "1.2.3"
},
"compile": {
"lib/netstandard2.0/Nito.Cancellation.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.Cancellation.dll": {}
}
},
"Nito.Collections.Deque/1.0.4": {
"type": "package",
"compile": {
"lib/netstandard2.0/Nito.Collections.Deque.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.Collections.Deque.dll": {}
}
},
"Nito.Disposables/2.0.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.4.0"
},
"compile": {
"lib/netstandard2.0/Nito.Disposables.dll": {}
},
"runtime": {
"lib/netstandard2.0/Nito.Disposables.dll": {}
}
},
"System.Collections.Immutable/1.4.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/netstandard2.0/System.Collections.Immutable.dll": {}
}
}
}
},
"libraries": {
"Microsoft.NETCore.Platforms/1.1.0": {
"sha512": "bLpT1f/SFlO1CzqXG12KnJzpZs6lv24uX2Rzi4Fmm0noJpNlnWRVryuO3yK18Ca04t/YHcO1e1Z0WDfjseqNzw==",
"type": "package",
"path": "microsoft.netcore.platforms/1.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"microsoft.netcore.platforms.1.1.0.nupkg.sha512",
"microsoft.netcore.platforms.nuspec",
"runtime.json"
]
},
"NETStandard.Library/2.0.3": {
"sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
"type": "package",
"path": "netstandard.library/2.0.3",
"files": [
".nupkg.metadata",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"build/netstandard2.0/NETStandard.Library.targets",
"build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
"build/netstandard2.0/ref/System.AppContext.dll",
"build/netstandard2.0/ref/System.Collections.Concurrent.dll",
"build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
"build/netstandard2.0/ref/System.Collections.Specialized.dll",
"build/netstandard2.0/ref/System.Collections.dll",
"build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
"build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
"build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
"build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
"build/netstandard2.0/ref/System.ComponentModel.dll",
"build/netstandard2.0/ref/System.Console.dll",
"build/netstandard2.0/ref/System.Core.dll",
"build/netstandard2.0/ref/System.Data.Common.dll",
"build/netstandard2.0/ref/System.Data.dll",
"build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
"build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
"build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
"build/netstandard2.0/ref/System.Diagnostics.Process.dll",
"build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
"build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
"build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
"build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
"build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
"build/netstandard2.0/ref/System.Drawing.Primitives.dll",
"build/netstandard2.0/ref/System.Drawing.dll",
"build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
"build/netstandard2.0/ref/System.Globalization.Calendars.dll",
"build/netstandard2.0/ref/System.Globalization.Extensions.dll",
"build/netstandard2.0/ref/System.Globalization.dll",
"build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
"build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
"build/netstandard2.0/ref/System.IO.Compression.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
"build/netstandard2.0/ref/System.IO.FileSystem.dll",
"build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
"build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
"build/netstandard2.0/ref/System.IO.Pipes.dll",
"build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
"build/netstandard2.0/ref/System.IO.dll",
"build/netstandard2.0/ref/System.Linq.Expressions.dll",
"build/netstandard2.0/ref/System.Linq.Parallel.dll",
"build/netstandard2.0/ref/System.Linq.Queryable.dll",
"build/netstandard2.0/ref/System.Linq.dll",
"build/netstandard2.0/ref/System.Net.Http.dll",
"build/netstandard2.0/ref/System.Net.NameResolution.dll",
"build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
"build/netstandard2.0/ref/System.Net.Ping.dll",
"build/netstandard2.0/ref/System.Net.Primitives.dll",
"build/netstandard2.0/ref/System.Net.Requests.dll",
"build/netstandard2.0/ref/System.Net.Security.dll",
"build/netstandard2.0/ref/System.Net.Sockets.dll",
"build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
"build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
"build/netstandard2.0/ref/System.Net.WebSockets.dll",
"build/netstandard2.0/ref/System.Net.dll",
"build/netstandard2.0/ref/System.Numerics.dll",
"build/netstandard2.0/ref/System.ObjectModel.dll",
"build/netstandard2.0/ref/System.Reflection.Extensions.dll",
"build/netstandard2.0/ref/System.Reflection.Primitives.dll",
"build/netstandard2.0/ref/System.Reflection.dll",
"build/netstandard2.0/ref/System.Resources.Reader.dll",
"build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
"build/netstandard2.0/ref/System.Resources.Writer.dll",
"build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
"build/netstandard2.0/ref/System.Runtime.Extensions.dll",
"build/netstandard2.0/ref/System.Runtime.Handles.dll",
"build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
"build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
"build/netstandard2.0/ref/System.Runtime.Numerics.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
"build/netstandard2.0/ref/System.Runtime.Serialization.dll",
"build/netstandard2.0/ref/System.Runtime.dll",
"build/netstandard2.0/ref/System.Security.Claims.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
"build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
"build/netstandard2.0/ref/System.Security.Principal.dll",
"build/netstandard2.0/ref/System.Security.SecureString.dll",
"build/netstandard2.0/ref/System.ServiceModel.Web.dll",
"build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
"build/netstandard2.0/ref/System.Text.Encoding.dll",
"build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
"build/netstandard2.0/ref/System.Threading.Overlapped.dll",
"build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
"build/netstandard2.0/ref/System.Threading.Tasks.dll",
"build/netstandard2.0/ref/System.Threading.Thread.dll",
"build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
"build/netstandard2.0/ref/System.Threading.Timer.dll",
"build/netstandard2.0/ref/System.Threading.dll",
"build/netstandard2.0/ref/System.Transactions.dll",
"build/netstandard2.0/ref/System.ValueTuple.dll",
"build/netstandard2.0/ref/System.Web.dll",
"build/netstandard2.0/ref/System.Windows.dll",
"build/netstandard2.0/ref/System.Xml.Linq.dll",
"build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
"build/netstandard2.0/ref/System.Xml.Serialization.dll",
"build/netstandard2.0/ref/System.Xml.XDocument.dll",
"build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
"build/netstandard2.0/ref/System.Xml.XPath.dll",
"build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
"build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
"build/netstandard2.0/ref/System.Xml.dll",
"build/netstandard2.0/ref/System.dll",
"build/netstandard2.0/ref/mscorlib.dll",
"build/netstandard2.0/ref/netstandard.dll",
"build/netstandard2.0/ref/netstandard.xml",
"lib/netstandard1.0/_._",
"netstandard.library.2.0.3.nupkg.sha512",
"netstandard.library.nuspec"
]
},
"Newtonsoft.Json/12.0.3": {
"sha512": "aTRmXwR5xYu+mWxE8r8W1DWnL02SeV8LwdQMsLwTWP8OZgrCCyTqvOAe5hRb1VNQYXjln7qr0PKpSyO/pcc19Q==",
"type": "package",
"path": "newtonsoft.json/12.0.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.md",
"lib/net20/Newtonsoft.Json.dll",
"lib/net20/Newtonsoft.Json.xml",
"lib/net35/Newtonsoft.Json.dll",
"lib/net35/Newtonsoft.Json.xml",
"lib/net40/Newtonsoft.Json.dll",
"lib/net40/Newtonsoft.Json.xml",
"lib/net45/Newtonsoft.Json.dll",
"lib/net45/Newtonsoft.Json.xml",
"lib/netstandard1.0/Newtonsoft.Json.dll",
"lib/netstandard1.0/Newtonsoft.Json.xml",
"lib/netstandard1.3/Newtonsoft.Json.dll",
"lib/netstandard1.3/Newtonsoft.Json.xml",
"lib/netstandard2.0/Newtonsoft.Json.dll",
"lib/netstandard2.0/Newtonsoft.Json.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
"lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
"lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
"lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
"newtonsoft.json.12.0.3.nupkg.sha512",
"newtonsoft.json.nuspec",
"packageIcon.png"
]
},
"Nito.AsyncEx/5.0.0": {
"sha512": "rp1fyiUQalO1Xth2AhLmK6BMMfNkdIVJGlwmFW+jcioyCUlcBA9QZgnR1q6e5hqVdQi/29NQZCzo1Qr9nJ2NrQ==",
"type": "package",
"path": "nito.asyncex/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"nito.asyncex.5.0.0.nupkg.sha512",
"nito.asyncex.nuspec"
]
},
"Nito.AsyncEx.Context/5.0.0": {
"sha512": "2KLVqSNkrLEJPKwKfJ7Vze5dB4knty9DuB8Nt6VDoHeuqXmYAYfUwzsH5We+0dqqTSVdll9ShyKnFLoEXsgooA==",
"type": "package",
"path": "nito.asyncex.context/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.3/Nito.AsyncEx.Context.dll",
"lib/netstandard1.3/Nito.AsyncEx.Context.xml",
"lib/netstandard2.0/Nito.AsyncEx.Context.dll",
"lib/netstandard2.0/Nito.AsyncEx.Context.xml",
"nito.asyncex.context.5.0.0.nupkg.sha512",
"nito.asyncex.context.nuspec"
]
},
"Nito.AsyncEx.Coordination/5.0.0": {
"sha512": "tl+sOQCgm0F4+bIh3+I0OT2v6jeyiGqU4iEmBqU5jfYa3RUUHO19Yjrl8eUwmtOpufXhAnZfJOWCzR9xWTSJNA==",
"type": "package",
"path": "nito.asyncex.coordination/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
"lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
"lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
"lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
"nito.asyncex.coordination.5.0.0.nupkg.sha512",
"nito.asyncex.coordination.nuspec"
]
},
"Nito.AsyncEx.Interop.WaitHandles/5.0.0": {
"sha512": "VrO6BlotDW+BZcfPXoPT5uqp4VQMdomCIRp4gxADbUZVfYf4sv8oo3M8mUmPSTDn088cbEhNCEoTr5JgA6QNug==",
"type": "package",
"path": "nito.asyncex.interop.waithandles/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.3/Nito.AsyncEx.Interop.WaitHandles.dll",
"lib/netstandard1.3/Nito.AsyncEx.Interop.WaitHandles.xml",
"lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.dll",
"lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.xml",
"nito.asyncex.interop.waithandles.5.0.0.nupkg.sha512",
"nito.asyncex.interop.waithandles.nuspec"
]
},
"Nito.AsyncEx.Oop/5.0.0": {
"sha512": "+ahHT9sLHfn2xHFAMB71aIbs3YcTwsk5ERkx4DfaGPGc6bAA/dlTXAQbFAEqxVF3A94qPUreR1BOgZNZ1r8cRw==",
"type": "package",
"path": "nito.asyncex.oop/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.3/Nito.AsyncEx.Oop.dll",
"lib/netstandard1.3/Nito.AsyncEx.Oop.xml",
"lib/netstandard2.0/Nito.AsyncEx.Oop.dll",
"lib/netstandard2.0/Nito.AsyncEx.Oop.xml",
"nito.asyncex.oop.5.0.0.nupkg.sha512",
"nito.asyncex.oop.nuspec"
]
},
"Nito.AsyncEx.Tasks/5.0.0": {
"sha512": "YhiadlnOLZ41Yloz6G3V5JRSJwwYN8drkM9U1BlaU9BbgZ0Wom6avgy5AMu+1xJfmHh/FMldacbY6ECrbJd2dQ==",
"type": "package",
"path": "nito.asyncex.tasks/5.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
"lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
"lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
"lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
"nito.asyncex.tasks.5.0.0.nupkg.sha512",
"nito.asyncex.tasks.nuspec"
]
},
"Nito.Cancellation/1.0.5": {
"sha512": "H1UUiC8+LhjrHuWXuNfMijYeXp6bf1pa7HBxQlrzGfBv0Bjpu7e2VoIYvU9+j3kjtlCAv+VOdGj/kDROkwlzjQ==",
"type": "package",
"path": "nito.cancellation/1.0.5",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.0/Nito.Cancellation.dll",
"lib/netstandard1.0/Nito.Cancellation.xml",
"lib/netstandard2.0/Nito.Cancellation.dll",
"lib/netstandard2.0/Nito.Cancellation.xml",
"nito.cancellation.1.0.5.nupkg.sha512",
"nito.cancellation.nuspec"
]
},
"Nito.Collections.Deque/1.0.4": {
"sha512": "9Ek7LWxWuM1l6DRchMqeoJXMOz+6lHu8OTDO0yMGIYfiN2kvoPjfXHDTxJTd2B+HOUay0yQVUVAwPgoHMO72vQ==",
"type": "package",
"path": "nito.collections.deque/1.0.4",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.0/Nito.Collections.Deque.dll",
"lib/netstandard1.0/Nito.Collections.Deque.xml",
"lib/netstandard2.0/Nito.Collections.Deque.dll",
"lib/netstandard2.0/Nito.Collections.Deque.xml",
"nito.collections.deque.1.0.4.nupkg.sha512",
"nito.collections.deque.nuspec"
]
},
"Nito.Disposables/2.0.0": {
"sha512": "1ATeAx0Sip8rjlRz+HFq7XUvH4ZqLqNBnCVv/a4byC8EUiXXOM35mx70CCUWuqknnlj0faGCTWIqD8lJlaMKGQ==",
"type": "package",
"path": "nito.disposables/2.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.0/Nito.Disposables.dll",
"lib/netstandard1.0/Nito.Disposables.pdb",
"lib/netstandard1.0/Nito.Disposables.xml",
"lib/netstandard2.0/Nito.Disposables.dll",
"lib/netstandard2.0/Nito.Disposables.pdb",
"lib/netstandard2.0/Nito.Disposables.xml",
"nito.disposables.2.0.0.nupkg.sha512",
"nito.disposables.nuspec"
]
},
"System.Collections.Immutable/1.4.0": {
"sha512": "1aNA04B7wZWbZ8FgVg+Rg9vkzfQkmTwE1N6Lj3h14Gl8VupDS8j/mrfvv/FlQJL0ts8sMMKRgwnKntfQ1gQ3kQ==",
"type": "package",
"path": "system.collections.immutable/1.4.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.0/System.Collections.Immutable.dll",
"lib/netstandard1.0/System.Collections.Immutable.xml",
"lib/netstandard2.0/System.Collections.Immutable.dll",
"lib/netstandard2.0/System.Collections.Immutable.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
"ref/netcoreapp2.0/_._",
"system.collections.immutable.1.4.0.nupkg.sha512",
"system.collections.immutable.nuspec",
"useSharedDesignerContext.txt",
"version.txt"
]
}
},
"projectFileDependencyGroups": {
".NETStandard,Version=v2.0": [
"NETStandard.Library >= 2.0.3",
"Newtonsoft.Json >= 12.0.3",
"Nito.AsyncEx >= 5.0.0"
]
},
"packageFolders": {
"C:\\Users\\Administrator\\.nuget\\packages\\": {},
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
"version": "2.5.0.1",
"restore": {
"projectUniqueName": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\Alipay.AopSdk.Core.csproj",
"projectName": "Alipay.AopSdk.Core",
"projectPath": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\Alipay.AopSdk.Core.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\Alipay.AopSdk.Core\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"netstandard2.0": {
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[12.0.3, )"
},
"Nito.AsyncEx": {
"target": "Package",
"version": "[5.0.0, )"
}
},
"imports": [
"net461"
],
"assetTargetFallback": true,
"warn": true
}
}
}
}

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.2", FrameworkDisplayName = ".NET Core 2.2")]

View File

@@ -1,22 +0,0 @@
//------------------------------------------------------------------------------
// <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("MsgCenterClient")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1aeaa5e7ed06596a797db53f57700c78add1ae6f")]
[assembly: System.Reflection.AssemblyProductAttribute("MsgCenterClient")]
[assembly: System.Reflection.AssemblyTitleAttribute("MsgCenterClient")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// 由 MSBuild WriteCodeFragment 类生成。

View File

@@ -1,5 +0,0 @@
is_global = true
build_property.RootNamespace = MsgCenterClient
build_property.ProjectDir = d:\www\juipnet\Infrastructure\ServiceClient\MsgCenterClient\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -1,276 +0,0 @@
{
"format": 1,
"restore": {
"d:\\www\\juipnet\\Infrastructure\\ServiceClient\\MsgCenterClient\\MsgCenterClient.csproj": {}
},
"projects": {
"d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"projectName": "Hncore.Infrastructure",
"projectPath": "d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"AngleSharp": {
"target": "Package",
"version": "[0.12.1, )"
},
"Autofac": {
"target": "Package",
"version": "[4.9.1, )"
},
"Autofac.Extensions.DependencyInjection": {
"target": "Package",
"version": "[4.4.0, )"
},
"Bogus": {
"target": "Package",
"version": "[26.0.1, )"
},
"CSRedisCore": {
"target": "Package",
"version": "[3.0.60, )"
},
"Dapper": {
"target": "Package",
"version": "[1.60.6, )"
},
"DotNetCore.NPOI": {
"target": "Package",
"version": "[1.2.1, )"
},
"JWT": {
"target": "Package",
"version": "[5.0.1, )"
},
"MQTTnet": {
"target": "Package",
"version": "[2.8.5, )"
},
"MQiniu.Core": {
"target": "Package",
"version": "[1.0.1, )"
},
"Microsoft.AspNetCore.Mvc": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.AspNetCore.Mvc.Versioning": {
"target": "Package",
"version": "[3.1.2, )"
},
"Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer": {
"target": "Package",
"version": "[3.2.0, )"
},
"Microsoft.AspNetCore.TestHost": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore.Relational": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.EnvironmentVariables": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.Json": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Http": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Options.ConfigurationExtensions": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.NET.Test.Sdk": {
"target": "Package",
"version": "[16.0.1, )"
},
"MySqlConnector": {
"target": "Package",
"version": "[0.56.0, )"
},
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"NLog.Extensions.Logging": {
"target": "Package",
"version": "[1.4.0, )"
},
"Polly": {
"target": "Package",
"version": "[7.1.0, )"
},
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[4.0.1, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[4.5.1, )"
},
"System.Text.Encoding.CodePages": {
"target": "Package",
"version": "[4.5.1, )"
},
"TinyMapper": {
"target": "Package",
"version": "[3.0.2-beta, )"
},
"TinyPinyin.Core.Standard": {
"target": "Package",
"version": "[1.0.0, )"
},
"aliyun-net-sdk-core": {
"target": "Package",
"version": "[1.5.3, )"
},
"xunit": {
"target": "Package",
"version": "[2.4.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202\\RuntimeIdentifierGraph.json"
}
}
},
"d:\\www\\juipnet\\Infrastructure\\ServiceClient\\MsgCenterClient\\MsgCenterClient.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "d:\\www\\juipnet\\Infrastructure\\ServiceClient\\MsgCenterClient\\MsgCenterClient.csproj",
"projectName": "MsgCenterClient",
"projectPath": "d:\\www\\juipnet\\Infrastructure\\ServiceClient\\MsgCenterClient\\MsgCenterClient.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "d:\\www\\juipnet\\Infrastructure\\ServiceClient\\MsgCenterClient\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netcoreapp2.2"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netcoreapp2.2": {
"targetAlias": "netcoreapp2.2",
"projectReferences": {
"d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {
"projectPath": "d:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"netcoreapp2.2": {
"targetAlias": "netcoreapp2.2",
"dependencies": {
"Microsoft.Extensions.Http": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.NETCore.App": {
"suppressParent": "All",
"target": "Package",
"version": "[2.2.0, )",
"autoReferenced": true
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -1,25 +0,0 @@
<?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:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">C:\Users\Administrator\.nuget\packages\xunit.analyzers\0.10.0</Pkgxunit_analyzers>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers>
<PkgMicrosoft_AspNetCore_Razor_Design Condition=" '$(PkgMicrosoft_AspNetCore_Razor_Design)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0</PkgMicrosoft_AspNetCore_Razor_Design>
</PropertyGroup>
</Project>

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.targets')" />
</ImportGroup>
</Project>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
throwConfigExceptions="true"
internalLogLevel="Info"
internalLogToTrace="true">
<targets>
<target xsi:type="Null" name="blackhole" />
<target name="LOG_FILE"
xsi:type="File"
layout="[${longdate}] ${pad:padding=-5:inner=${level:uppercase=true}}${newline}${message}${newline}"
encoding="utf-8"
fileName="Logs/${date:format=yyyyMMdd}/${filesystem-normalize:inner=${level}}.log" />
</targets>
<rules>
<logger name="UserLog" minlevel="Trace" writeTo="LOG_FILE" />
</rules>
</nlog>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
throwConfigExceptions="true"
internalLogLevel="Info"
internalLogToTrace="true">
<targets>
<target xsi:type="Null" name="blackhole" />
<target name="LOG_FILE"
xsi:type="File"
layout="[${longdate}] ${pad:padding=-5:inner=${level:uppercase=true}}${newline}${message}${newline}"
encoding="utf-8"
fileName="Logs/${date:format=yyyyMMdd}/${filesystem-normalize:inner=${level}}.log" />
</targets>
<rules>
<logger name="UserLog" minlevel="Trace" writeTo="LOG_FILE" />
</rules>
</nlog>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.2", FrameworkDisplayName = ".NET Core 2.2")]

View File

@@ -1,16 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("PaymentCenterClient")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("PaymentCenterClient")]
[assembly: System.Reflection.AssemblyTitleAttribute("PaymentCenterClient")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1,5 +0,0 @@
is_global = true
build_property.RootNamespace = PaymentCenterClient
build_property.ProjectDir = d:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -1,26 +0,0 @@
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\nlog.config
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\PaymentCenterClient.deps.json
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\PaymentCenterClient.dll
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\PaymentCenterClient.pdb
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\Hncore.Infrastructure.pdb
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.csproj.CopyComplete
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.dll
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.pdb
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.csprojAssemblyReference.cache
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\nlog.config
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\PaymentCenterClient.deps.json
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\PaymentCenterClient.dll
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\PaymentCenterClient.pdb
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Debug\netcoreapp2.2\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.csproj.CopyComplete
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.dll
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.pdb
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Debug\netcoreapp2.2\PaymentCenterClient.csprojAssemblyReference.cache

View File

@@ -1,260 +0,0 @@
{
"format": 1,
"restore": {
"D:\\www\\juipnet\\Infrastructure\\ServiceClient\\PaymentCenterClient\\PaymentCenterClient.csproj": {}
},
"projects": {
"D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"projectName": "Hncore.Infrastructure",
"projectPath": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"AngleSharp": {
"target": "Package",
"version": "[0.12.1, )"
},
"Autofac": {
"target": "Package",
"version": "[4.9.1, )"
},
"Autofac.Extensions.DependencyInjection": {
"target": "Package",
"version": "[4.4.0, )"
},
"Bogus": {
"target": "Package",
"version": "[26.0.1, )"
},
"CSRedisCore": {
"target": "Package",
"version": "[3.0.60, )"
},
"Dapper": {
"target": "Package",
"version": "[1.60.6, )"
},
"DotNetCore.NPOI": {
"target": "Package",
"version": "[1.2.1, )"
},
"JWT": {
"target": "Package",
"version": "[5.0.1, )"
},
"MQTTnet": {
"target": "Package",
"version": "[2.8.5, )"
},
"MQiniu.Core": {
"target": "Package",
"version": "[1.0.1, )"
},
"Microsoft.AspNetCore.Mvc": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.AspNetCore.Mvc.Versioning": {
"target": "Package",
"version": "[3.1.2, )"
},
"Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer": {
"target": "Package",
"version": "[3.2.0, )"
},
"Microsoft.AspNetCore.TestHost": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore.Relational": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.EnvironmentVariables": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.Json": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Http": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Options.ConfigurationExtensions": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.NET.Test.Sdk": {
"target": "Package",
"version": "[16.0.1, )"
},
"MySqlConnector": {
"target": "Package",
"version": "[0.56.0, )"
},
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"NLog.Extensions.Logging": {
"target": "Package",
"version": "[1.4.0, )"
},
"Polly": {
"target": "Package",
"version": "[7.1.0, )"
},
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[4.0.1, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[4.5.1, )"
},
"System.Text.Encoding.CodePages": {
"target": "Package",
"version": "[4.5.1, )"
},
"TinyMapper": {
"target": "Package",
"version": "[3.0.2-beta, )"
},
"TinyPinyin.Core.Standard": {
"target": "Package",
"version": "[1.0.0, )"
},
"aliyun-net-sdk-core": {
"target": "Package",
"version": "[1.5.3, )"
},
"xunit": {
"target": "Package",
"version": "[2.4.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\www\\juipnet\\Infrastructure\\ServiceClient\\PaymentCenterClient\\PaymentCenterClient.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\PaymentCenterClient\\PaymentCenterClient.csproj",
"projectName": "PaymentCenterClient",
"projectPath": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\PaymentCenterClient\\PaymentCenterClient.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "D:\\www\\juipnet\\Infrastructure\\ServiceClient\\PaymentCenterClient\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netcoreapp2.2"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netcoreapp2.2": {
"targetAlias": "netcoreapp2.2",
"projectReferences": {
"D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {
"projectPath": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"netcoreapp2.2": {
"targetAlias": "netcoreapp2.2",
"dependencies": {
"Microsoft.NETCore.App": {
"suppressParent": "All",
"target": "Package",
"version": "[2.2.0, )",
"autoReferenced": true
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -1,23 +0,0 @@
<?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)' == '' ">D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.9.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">C:\Users\Administrator\.nuget\packages\xunit.analyzers\0.10.0</Pkgxunit_analyzers>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers>
<PkgMicrosoft_AspNetCore_Razor_Design Condition=" '$(PkgMicrosoft_AspNetCore_Razor_Design)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0</PkgMicrosoft_AspNetCore_Razor_Design>
</PropertyGroup>
</Project>

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.targets')" />
</ImportGroup>
</Project>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.2", FrameworkDisplayName = "")]

View File

@@ -1,16 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("PaymentCenterClient")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("PaymentCenterClient")]
[assembly: System.Reflection.AssemblyTitleAttribute("PaymentCenterClient")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1,26 +0,0 @@
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\nlog.config
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\PaymentCenterClient.deps.json
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\PaymentCenterClient.dll
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\PaymentCenterClient.pdb
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\Hncore.Infrastructure.pdb
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.csprojAssemblyReference.cache
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.csproj.CopyComplete
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.dll
D:\test\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.pdb
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\nlog.config
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\PaymentCenterClient.deps.json
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\PaymentCenterClient.dll
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\PaymentCenterClient.pdb
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\bin\Release\netcoreapp2.2\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.csproj.CopyComplete
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.dll
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.pdb
D:\www\juipnet\Infrastructure\ServiceClient\PaymentCenterClient\obj\Release\netcoreapp2.2\PaymentCenterClient.csprojAssemblyReference.cache

File diff suppressed because it is too large Load Diff

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
throwConfigExceptions="true"
internalLogLevel="Info"
internalLogToTrace="true">
<targets>
<target xsi:type="Null" name="blackhole" />
<target name="LOG_FILE"
xsi:type="File"
layout="[${longdate}] ${pad:padding=-5:inner=${level:uppercase=true}}${newline}${message}${newline}"
encoding="utf-8"
fileName="Logs/${date:format=yyyyMMdd}/${filesystem-normalize:inner=${level}}.log" />
</targets>
<rules>
<logger name="UserLog" minlevel="Trace" writeTo="LOG_FILE" />
</rules>
</nlog>

File diff suppressed because it is too large Load Diff

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
autoReload="true"
throwConfigExceptions="true"
internalLogLevel="Info"
internalLogToTrace="true">
<targets>
<target xsi:type="Null" name="blackhole" />
<target name="LOG_FILE"
xsi:type="File"
layout="[${longdate}] ${pad:padding=-5:inner=${level:uppercase=true}}${newline}${message}${newline}"
encoding="utf-8"
fileName="Logs/${date:format=yyyyMMdd}/${filesystem-normalize:inner=${level}}.log" />
</targets>
<rules>
<logger name="UserLog" minlevel="Trace" writeTo="LOG_FILE" />
</rules>
</nlog>

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]

View File

@@ -1,16 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WxApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WxApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("WxApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1,5 +0,0 @@
is_global = true
build_property.RootNamespace = WxApi
build_property.ProjectDir = d:\www\juipnet\Infrastructure\WxApi\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -1,26 +0,0 @@
D:\test\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\nlog.config
D:\test\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\WxApi.deps.json
D:\test\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\WxApi.dll
D:\test\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\WxApi.pdb
D:\test\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\Hncore.Infrastructure.pdb
D:\test\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.csprojAssemblyReference.cache
D:\test\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.csproj.CopyComplete
D:\test\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.dll
D:\test\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.pdb
D:\www\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\nlog.config
D:\www\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\WxApi.deps.json
D:\www\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\WxApi.dll
D:\www\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\WxApi.pdb
D:\www\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\WxApi\bin\Debug\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.csproj.CopyComplete
D:\www\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.dll
D:\www\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.pdb
D:\www\juipnet\Infrastructure\WxApi\obj\Debug\netstandard2.0\WxApi.csprojAssemblyReference.cache

View File

@@ -1,4 +0,0 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = "")]

View File

@@ -1,16 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 由 MSBuild WriteCodeFragment 类生成。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("WxApi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("WxApi")]
[assembly: System.Reflection.AssemblyTitleAttribute("WxApi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@@ -1,26 +0,0 @@
D:\test\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\nlog.config
D:\test\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\WxApi.deps.json
D:\test\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\WxApi.dll
D:\test\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\WxApi.pdb
D:\test\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\Hncore.Infrastructure.dll
D:\test\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\Hncore.Infrastructure.pdb
D:\test\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.csprojAssemblyReference.cache
D:\test\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.csproj.CoreCompileInputs.cache
D:\test\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.AssemblyInfoInputs.cache
D:\test\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.AssemblyInfo.cs
D:\test\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.csproj.CopyComplete
D:\test\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.dll
D:\test\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.pdb
D:\www\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\nlog.config
D:\www\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\WxApi.deps.json
D:\www\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\WxApi.dll
D:\www\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\WxApi.pdb
D:\www\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\Hncore.Infrastructure.dll
D:\www\juipnet\Infrastructure\WxApi\bin\Release\netstandard2.0\Hncore.Infrastructure.pdb
D:\www\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.csproj.CoreCompileInputs.cache
D:\www\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.AssemblyInfoInputs.cache
D:\www\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.AssemblyInfo.cs
D:\www\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.csproj.CopyComplete
D:\www\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.dll
D:\www\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.pdb
D:\www\juipnet\Infrastructure\WxApi\obj\Release\netstandard2.0\WxApi.csprojAssemblyReference.cache

View File

@@ -1,264 +0,0 @@
{
"format": 1,
"restore": {
"D:\\www\\juipnet\\Infrastructure\\WxApi\\WxApi.csproj": {}
},
"projects": {
"D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"projectName": "Hncore.Infrastructure",
"projectPath": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"AngleSharp": {
"target": "Package",
"version": "[0.12.1, )"
},
"Autofac": {
"target": "Package",
"version": "[4.9.1, )"
},
"Autofac.Extensions.DependencyInjection": {
"target": "Package",
"version": "[4.4.0, )"
},
"Bogus": {
"target": "Package",
"version": "[26.0.1, )"
},
"CSRedisCore": {
"target": "Package",
"version": "[3.0.60, )"
},
"Dapper": {
"target": "Package",
"version": "[1.60.6, )"
},
"DotNetCore.NPOI": {
"target": "Package",
"version": "[1.2.1, )"
},
"JWT": {
"target": "Package",
"version": "[5.0.1, )"
},
"MQTTnet": {
"target": "Package",
"version": "[2.8.5, )"
},
"MQiniu.Core": {
"target": "Package",
"version": "[1.0.1, )"
},
"Microsoft.AspNetCore.Mvc": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.AspNetCore.Mvc.Versioning": {
"target": "Package",
"version": "[3.1.2, )"
},
"Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer": {
"target": "Package",
"version": "[3.2.0, )"
},
"Microsoft.AspNetCore.TestHost": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.EntityFrameworkCore.Relational": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.EnvironmentVariables": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Configuration.Json": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Http": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.Extensions.Options.ConfigurationExtensions": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.NET.Test.Sdk": {
"target": "Package",
"version": "[16.0.1, )"
},
"MySqlConnector": {
"target": "Package",
"version": "[0.56.0, )"
},
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"NLog.Extensions.Logging": {
"target": "Package",
"version": "[1.4.0, )"
},
"Polly": {
"target": "Package",
"version": "[7.1.0, )"
},
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[4.0.1, )"
},
"System.Drawing.Common": {
"target": "Package",
"version": "[4.5.1, )"
},
"System.Text.Encoding.CodePages": {
"target": "Package",
"version": "[4.5.1, )"
},
"TinyMapper": {
"target": "Package",
"version": "[3.0.2-beta, )"
},
"TinyPinyin.Core.Standard": {
"target": "Package",
"version": "[1.0.0, )"
},
"aliyun-net-sdk-core": {
"target": "Package",
"version": "[1.5.3, )"
},
"xunit": {
"target": "Package",
"version": "[2.4.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\www\\juipnet\\Infrastructure\\WxApi\\WxApi.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\www\\juipnet\\Infrastructure\\WxApi\\WxApi.csproj",
"projectName": "WxApi",
"projectPath": "D:\\www\\juipnet\\Infrastructure\\WxApi\\WxApi.csproj",
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
"outputPath": "D:\\www\\juipnet\\Infrastructure\\WxApi\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"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": [
"netstandard2.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {
"D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj": {
"projectPath": "D:\\www\\juipnet\\Infrastructure\\Hncore.Infrastructure\\Hncore.Infrastructure.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
"target": "Package",
"version": "[2.0.3, )",
"autoReferenced": true
},
"Nito.AsyncEx": {
"target": "Package",
"version": "[5.0.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -1,20 +0,0 @@
<?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)' == '' ">D:\www\juipnet\Infrastructure\WxApi\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.9.0</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">C:\Users\Administrator\.nuget\packages\xunit.analyzers\0.10.0</Pkgxunit_analyzers>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers>
<PkgMicrosoft_AspNetCore_Razor_Design Condition=" '$(PkgMicrosoft_AspNetCore_Razor_Design)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0</PkgMicrosoft_AspNetCore_Razor_Design>
</PropertyGroup>
</Project>

View File

@@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
</ImportGroup>
</Project>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,11 @@
<Project>
<ItemGroup>
<Content Update="appsettings.json" CopyToPublishDirectory="Never" />
<Content Update="appsettings.Local.json" CopyToPublishDirectory="Never" />
<Content Update="appsettings.Development.json" CopyToPublishDirectory="Never" />
<Content Update="appsettings.Production.json" CopyToPublishDirectory="Never" />
<Content Update="ueditor.json" CopyToPublishDirectory="Never" />
<Content Update="ueditor.gqc.json" CopyToPublishDirectory="Never" />
</ItemGroup>
</Project>

View File

@@ -1,10 +0,0 @@
//{
// "MySql": "Server=rm-bp12e1533udh1827azo.mysql.rds.aliyuncs.com;Database=etor_property_test;User=etor_test;Password=etor_test!QAZ2wsx;Convert Zero Datetime=True;TreatTinyAsBoolean=false;",
// "Redis": "47.92.85.90:6379,password=etor0070x01,defaultDatabase=7,poolsize=1"
//}
{
"Host_BaseUrl": "http://ipistest.etor.top11",
"Wx_Mp_Appid": "wxd6b150a17c252fec",
"MySql": "Server=47.92.244.89;Database=property;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=5000;",
"Redis": "47.92.244.89:8088,password=123456,defaultDatabase=7,poolsize=1"
}

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