master
ZR20090193-陈敬勇 2 years ago
parent 3b00e94e63
commit a91309410d

@ -41,7 +41,7 @@ export const formSchema: FormSchema[] = [
{ {
field: 'divider-selects', field: 'divider-selects',
component: 'Divider', component: 'Divider',
label: '', label: '基本信息',
}, },
{ {
label: '', label: '',
@ -73,6 +73,9 @@ export const formSchema: FormSchema[] = [
component: 'Input', component: 'Input',
required: true, required: true,
colProps: { span: 24 }, colProps: { span: 24 },
dynamicDisabled: ({ values }) => {
return !!values.id;
},
}, },
{ {
field: 'indexUrl', field: 'indexUrl',

@ -28,6 +28,7 @@
<setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/75ba526ae077407591fd5af0e465ce3456600/85/7f33f816/RegistrationBuilder`3.cs" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/75ba526ae077407591fd5af0e465ce3456600/85/7f33f816/RegistrationBuilder`3.cs" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/7ca8898b690a4181a32a9cf767cedb1ea9c28/3d/050e96e8/JsonSerializerInternalReader.cs" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/7ca8898b690a4181a32a9cf767cedb1ea9c28/3d/050e96e8/JsonSerializerInternalReader.cs" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/7ca8898b690a4181a32a9cf767cedb1ea9c28/7a/4bd40089/ValidationUtils.cs" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/7ca8898b690a4181a32a9cf767cedb1ea9c28/7a/4bd40089/ValidationUtils.cs" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/7fc0cde900d741e4b91847e179427cfc20e400/2f/ae8f60a0/QueryFilterProvider.cs" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/9c4e4632055744e38d810dc19fd740281cb880/eb/56f87c09/ActionMethodExecutor.cs" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/9c4e4632055744e38d810dc19fd740281cb880/eb/56f87c09/ActionMethodExecutor.cs" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/a40995c8c88e4033b2a8364625c8b2b81db800/45/6e13901f/IConditionalModel.cs" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/a40995c8c88e4033b2a8364625c8b2b81db800/45/6e13901f/IConditionalModel.cs" root0="SKIP_HIGHLIGHTING" />
<setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/a40995c8c88e4033b2a8364625c8b2b81db800/5d/d1170816/AdoProvider.cs" root0="SKIP_HIGHLIGHTING" /> <setting file="file://$APPLICATION_CONFIG_DIR$/resharper-host/DecompilerCache/decompiler/a40995c8c88e4033b2a8364625c8b2b81db800/5d/d1170816/AdoProvider.cs" root0="SKIP_HIGHLIGHTING" />
@ -208,7 +209,7 @@
<workItem from="1669768583796" duration="17863000" /> <workItem from="1669768583796" duration="17863000" />
<workItem from="1669856015162" duration="5529000" /> <workItem from="1669856015162" duration="5529000" />
<workItem from="1669947733174" duration="1404000" /> <workItem from="1669947733174" duration="1404000" />
<workItem from="1670201164392" duration="3429000" /> <workItem from="1670201164392" duration="10529000" />
</task> </task>
<servers /> <servers />
</component> </component>

@ -201,6 +201,7 @@ public static class ObjectExtensions
return value == null ? true : false; return value == null ? true : false;
} }
public static bool IsNotNull(this object value) public static bool IsNotNull(this object value)
{ {
return !value.IsNull(); return !value.IsNull();

@ -0,0 +1,29 @@
using Microsoft.AspNetCore.Mvc.Filters;
namespace DS.Module.Core.Filters;
/// <summary>
/// 解决跨域时的预检查204 options重复请求
/// </summary>
public class FegCrosFilter : IActionFilter
{
/// <summary>
///
/// </summary>
/// <param name="context"></param>
public void OnActionExecuted(ActionExecutedContext context)
{
}
/// <summary>
///
/// </summary>
/// <param name="context"></param>
public void OnActionExecuting(ActionExecutingContext context)
{
//简单粗暴
context.HttpContext.Request.Headers.Add("Access-Control-Allow-Headers", "*");
context.HttpContext.Request.Headers.Add("Access-Control-Allow-Methods", "*");
context.HttpContext.Request.Headers.Add("Access-Control-Max-Age", new Microsoft.Extensions.Primitives.StringValues("24*60*60"));
}
}

@ -8,7 +8,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" /> <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="SqlSugarCore" Version="5.1.0" /> <PackageReference Include="SqlSugarCore" Version="5.1.3.36" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

@ -154,12 +154,12 @@ public static class SqlsugarInstall
//从程序集拿到实体type集合 //从程序集拿到实体type集合
Type[] types = Assembly Type[] types = Assembly
.LoadFrom(servicesDllFile) //如果 .dll报错可以换成 xxx.exe 有些生成的是exe .LoadFrom(servicesDllFile) //如果 .dll报错可以换成 xxx.exe 有些生成的是exe
.GetTypes().Where(it => it.FullName.Contains("DS.WMS.Core.")) //命名空间过滤,当然你也可以写其他条件过滤 .GetTypes().Where(it => it.FullName.Contains("DS.WMS.Core.") && it.GetCustomAttributes(typeof(SugarTable), true)?.FirstOrDefault() != null) //命名空间过滤,当然你也可以写其他条件过滤
.ToArray(); //断点调试一下是不是需要的Type不是需要的在进行过滤 .ToArray(); //断点调试一下是不是需要的Type不是需要的在进行过滤
//全局过滤器 //全局过滤器
// var superAdminViewAllData = Convert.ToBoolean(App.GetOptions<SystemSettingsOptions>().SuperAdminViewAllData); // var superAdminViewAllData = Convert.ToBoolean(App.GetOptions<SystemSettingsOptions>().SuperAdminViewAllData);
foreach (var entityType in types) foreach (var entityType in types)
{ {
// 配置多租户全局过滤器 // 配置多租户全局过滤器
if (!entityType.GetProperty("TenantId").IsNull()) if (!entityType.GetProperty("TenantId").IsNull())
{ {
@ -169,7 +169,8 @@ public static class SqlsugarInstall
(new[] { Expression.Parameter(entityType, "it") }, (new[] { Expression.Parameter(entityType, "it") },
typeof(bool), $"{nameof(DBEntityTenant.TenantId)} == @0 ", typeof(bool), $"{nameof(DBEntityTenant.TenantId)} == @0 ",
user.GetTenantId()); user.GetTenantId());
dbProvider.QueryFilter.Add(new TableFilterItem<object>(entityType, lambda)); //将Lambda传入过滤器 // dbProvider.QueryFilter.Add(new TableFilterItem<object>(entityType, lambda)); //将Lambda传入过滤器
dbProvider.QueryFilter.AddTableFilter(entityType,lambda);
} }
// // 配置加删除全局过滤器 // // 配置加删除全局过滤器
if (!entityType.GetProperty("Deleted").IsNull()) if (!entityType.GetProperty("Deleted").IsNull())
@ -179,10 +180,11 @@ public static class SqlsugarInstall
(new[] { Expression.Parameter(entityType, "it") }, (new[] { Expression.Parameter(entityType, "it") },
typeof(bool), $"{nameof(EntityBase.Deleted)} == @0", typeof(bool), $"{nameof(EntityBase.Deleted)} == @0",
false); false);
db.QueryFilter.Add(new TableFilterItem<object>(entityType, lambda) dbProvider.QueryFilter.AddTableFilter(entityType,lambda);
{ // db.QueryFilter.Add(new TableFilterItem<object>(entityType, lambda)
IsJoinQuery = true // {
}); //将Lambda传入过滤器 // IsJoinQuery = true
// }); //将Lambda传入过滤器
} }
} }
} }

@ -4,6 +4,7 @@ namespace DS.WMS.Core.System.Entity;
/// <summary> /// <summary>
/// 公司信息 /// 公司信息
/// </summary> /// </summary>
[SqlSugar.SugarTable("SysCompany")]
public class SysCompany:BaseModel<string> public class SysCompany:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -5,6 +5,7 @@ namespace DS.WMS.Core.System.Entity;
/// <summary> /// <summary>
/// 系统配置 /// 系统配置
/// </summary> /// </summary>
[SqlSugar.SugarTable("SysConfig")]
public class SysConfig:BaseModel<string> public class SysConfig:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -6,6 +6,7 @@ namespace DS.WMS.Core.System.Entity;
/// <summary> /// <summary>
/// 字典值表 /// 字典值表
/// </summary> /// </summary>
[SqlSugar.SugarTable("SysDictData")]
public class SysDictData:BaseModel<string> public class SysDictData:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -6,6 +6,7 @@ namespace DS.WMS.Core.System.Entity;
/// <summary> /// <summary>
/// 字典类型表 /// 字典类型表
/// </summary> /// </summary>
[SqlSugar.SugarTable("SysDictType")]
public class SysDictType:BaseModel<string> public class SysDictType:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -5,6 +5,7 @@ namespace DS.WMS.Core.System.Entity;
/// <summary> /// <summary>
/// 权限信息 /// 权限信息
/// </summary> /// </summary>
[SqlSugar.SugarTable("SysPermission")]
public class SysPermission:BaseModel<string> public class SysPermission:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -1,6 +1,9 @@
using DS.Module.Core.Data; using DS.Module.Core.Data;
namespace DS.WMS.Core.System.Entity; namespace DS.WMS.Core.System.Entity;
/// <summary>
///
/// </summary>
[SqlSugar.SugarTable("SysRole")]
public class SysRole:BaseModel<string> public class SysRole:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -2,6 +2,10 @@
namespace DS.WMS.Core.System.Entity; namespace DS.WMS.Core.System.Entity;
/// <summary>
///
/// </summary>
[SqlSugar.SugarTable("SysRolePermission")]
public class SysRolePermission public class SysRolePermission
{ {
public SysRolePermission() public SysRolePermission()

@ -4,6 +4,7 @@ namespace DS.WMS.Core.System.Entity;
/// <summary> /// <summary>
/// 用户角色对应关系 /// 用户角色对应关系
/// </summary> /// </summary>
[SqlSugar.SugarTable("SysRoleUser")]
public class SysRoleUser public class SysRoleUser
{ {
/// <summary> /// <summary>

@ -5,6 +5,7 @@ namespace DS.WMS.Core.System.Entity;
/// <summary> /// <summary>
/// 租户实体 /// 租户实体
/// </summary> /// </summary>
[SqlSugar.SugarTable("SysTenant")]
public class SysTenant:BaseModel<string> public class SysTenant:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -1,6 +1,10 @@
using DS.Module.Core.Data; using DS.Module.Core.Data;
namespace DS.WMS.Core.System.Entity; namespace DS.WMS.Core.System.Entity;
/// <summary>
///
/// </summary>
[SqlSugar.SugarTable("SysUser")]
public class SysUser:BaseModel<string> public class SysUser:BaseModel<string>
{ {
/// <summary> /// <summary>

@ -1,16 +1,12 @@
using DS.Module.Core.Data;
using SqlSugar; using SqlSugar;
namespace DS.WMS.Core.WxModule.Entity; namespace DS.WMS.Core.WxModule.Entity;
public class WxPublicConfig [SqlSugar.SugarTable("WxPublicConfig")]
public class WxPublicConfig:BaseModel<string>
{ {
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
/// <summary> /// <summary>
/// Desc: /// Desc:
@ -45,61 +41,5 @@ public class WxPublicConfig
/// Default: /// Default:
/// Nullable:True /// Nullable:True
/// </summary> /// </summary>
public string InfoClient { get; set; } public string InfoClient { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string Note { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public DateTime AddTime { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string AddBy { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string UpdateBy { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public bool Deleted { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? DeleteTime { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string DeleteBy { get; set; }
} }

@ -1,21 +1,15 @@
using DS.Module.Core.Data;
using SqlSugar; using SqlSugar;
namespace DS.WMS.Core.WxModule.Entity; namespace DS.WMS.Core.WxModule.Entity;
[SugarTable("WxUser")] [SugarTable("WxUser")]
public partial class WxUser public partial class WxUser:BaseModel<string>
{ {
public WxUser() public WxUser()
{ {
} }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
/// <summary> /// <summary>
/// Desc: /// Desc:
@ -124,60 +118,5 @@ public partial class WxUser
/// Nullable:True /// Nullable:True
/// </summary> /// </summary>
public int? UserType { get; set; } public int? UserType { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string Note { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public DateTime AddTime { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string AddBy { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string UpdateBy { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public bool Deleted { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? DeleteTime { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string DeleteBy { get; set; }
} }

@ -24,6 +24,8 @@ public static class DsAppWebInstall
services.AddHttpClient(); services.AddHttpClient();
services.AddControllers(options => services.AddControllers(options =>
{ {
// 204预检查过滤
options.Filters.Add<FegCrosFilter>();
//全局异常过滤 //全局异常过滤
options.Filters.Add<GlobalExceptionsFilter>(); options.Filters.Add<GlobalExceptionsFilter>();
options.SuppressAsyncSuffixInActionNames = false; options.SuppressAsyncSuffixInActionNames = false;

@ -2554,3 +2554,92 @@
2022-12-05 11:43:59.6516 Info Adding target ColoredConsoleTarget(Name=console) 2022-12-05 11:43:59.6516 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 11:43:59.7366 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config 2022-12-05 11:43:59.7366 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 11:43:59.7544 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console 2022-12-05 11:43:59.7544 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 11:49:01.7999 Info AppDomain Shutting down. LogFactory closing...
2022-12-05 11:49:01.8183 Info LogFactory has been closed.
2022-12-05 11:50:03.8509 Info Message Template Auto Format enabled
2022-12-05 11:50:03.8608 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 11:50:03.9292 Info Adding target FileTarget(Name=allfile)
2022-12-05 11:50:03.9292 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 11:50:03.9452 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 11:50:03.9791 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 11:50:03.9791 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 12:02:45.0011 Info AppDomain Shutting down. LogFactory closing...
2022-12-05 12:02:45.0369 Info LogFactory has been closed.
2022-12-05 12:03:05.4319 Info Message Template Auto Format enabled
2022-12-05 12:03:05.4319 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 12:03:05.5341 Info Adding target FileTarget(Name=allfile)
2022-12-05 12:03:05.5404 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 12:03:05.5404 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 12:03:05.5883 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 12:03:05.5883 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 13:33:41.2149 Info AppDomain Shutting down. LogFactory closing...
2022-12-05 13:33:41.2448 Info LogFactory has been closed.
2022-12-05 13:33:53.9119 Info Message Template Auto Format enabled
2022-12-05 13:33:53.9119 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 13:33:54.0519 Info Adding target FileTarget(Name=allfile)
2022-12-05 13:33:54.0519 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 13:33:54.0812 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 13:33:54.1476 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 13:33:54.1659 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 13:43:17.1254 Info AppDomain Shutting down. LogFactory closing...
2022-12-05 13:43:17.1466 Info LogFactory has been closed.
2022-12-05 13:44:28.7105 Info Message Template Auto Format enabled
2022-12-05 13:44:28.7375 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 13:44:28.9635 Info Adding target FileTarget(Name=allfile)
2022-12-05 13:44:28.9635 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 13:44:28.9995 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 13:44:29.1037 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 13:44:29.1272 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 13:56:02.0256 Info AppDomain Shutting down. LogFactory closing...
2022-12-05 13:56:02.0516 Info LogFactory has been closed.
2022-12-05 13:58:08.9599 Info Message Template Auto Format enabled
2022-12-05 13:58:08.9837 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 13:58:09.1621 Info Adding target FileTarget(Name=allfile)
2022-12-05 13:58:09.1621 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 13:58:09.2107 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 13:58:09.3218 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 13:58:09.3492 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 14:03:50.1921 Info AppDomain Shutting down. LogFactory closing...
2022-12-05 14:03:50.2084 Info LogFactory has been closed.
2022-12-05 14:04:39.5681 Info Message Template Auto Format enabled
2022-12-05 14:04:39.6036 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 14:04:39.6952 Info Adding target FileTarget(Name=allfile)
2022-12-05 14:04:39.6952 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 14:04:39.7199 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 14:04:39.7652 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 14:04:39.7757 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 14:11:56.5618 Info Message Template Auto Format enabled
2022-12-05 14:11:56.5828 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 14:11:56.6708 Info Adding target FileTarget(Name=allfile)
2022-12-05 14:11:56.6708 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 14:11:56.6875 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 14:11:56.7206 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 14:11:56.7281 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 14:13:53.9211 Info Message Template Auto Format enabled
2022-12-05 14:13:53.9356 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 14:13:53.9861 Info Adding target FileTarget(Name=allfile)
2022-12-05 14:13:53.9903 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 14:13:53.9903 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 14:13:54.0250 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 14:13:54.0250 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 14:17:30.3137 Info Message Template Auto Format enabled
2022-12-05 14:17:30.3343 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 14:17:30.3983 Info Adding target FileTarget(Name=allfile)
2022-12-05 14:17:30.3983 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 14:17:30.4169 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 14:17:30.4497 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 14:17:30.4594 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 14:37:17.3592 Info Message Template Auto Format enabled
2022-12-05 14:37:17.3889 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 14:37:17.5101 Info Adding target FileTarget(Name=allfile)
2022-12-05 14:37:17.5101 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 14:37:17.5412 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 14:37:17.6078 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 14:37:17.6260 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console
2022-12-05 14:43:45.5015 Info Message Template Auto Format enabled
2022-12-05 14:43:45.5147 Info Loading assembly: NLog.Web.AspNetCore
2022-12-05 14:43:45.5604 Info Adding target FileTarget(Name=allfile)
2022-12-05 14:43:45.5604 Info Adding target FileTarget(Name=ownFile-web)
2022-12-05 14:43:45.5710 Info Adding target ColoredConsoleTarget(Name=console)
2022-12-05 14:43:45.5922 Info Validating config: TargetNames=allfile, ownFile-web, ConfigItems=54, FilePath=D:\Code\DS\WmsSolution\wmsapi-service\DS.WMS.WebApi\bin\Debug\net6.0\nlog.config
2022-12-05 14:43:45.5922 Warn Unused target detected. Add a rule for this target to the configuration. TargetName: console

Loading…
Cancel
Save