commit
7c97ed9ad2
58 changed files with 10642 additions and 0 deletions
Binary file not shown.
@ -0,0 +1,15 @@ |
|||||||
|
using System; |
||||||
|
|
||||||
|
namespace QualityControlPlatform.Models |
||||||
|
{ |
||||||
|
public class WeatherForecast |
||||||
|
{ |
||||||
|
public DateTime Date { get; set; } |
||||||
|
|
||||||
|
public int TemperatureC { get; set; } |
||||||
|
|
||||||
|
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); |
||||||
|
|
||||||
|
public string Summary { get; set; } |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,38 @@ |
|||||||
|
using Microsoft.AspNetCore.Hosting; |
||||||
|
using Microsoft.Extensions.Configuration; |
||||||
|
using Microsoft.Extensions.Hosting; |
||||||
|
using Microsoft.Extensions.Logging; |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace QualityControlPlatform |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// ÏîÄ¿Èë¿Ú |
||||||
|
/// </summary> |
||||||
|
public class Program |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// Ö÷³ÌÐòÈë¿Ú |
||||||
|
/// </summary> |
||||||
|
/// <param name="args"></param> |
||||||
|
public static void Main(string[] args) |
||||||
|
{ |
||||||
|
CreateHostBuilder(args).Build().Run(); |
||||||
|
} |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// Ö÷·ÓÉ |
||||||
|
/// </summary> |
||||||
|
/// <param name="args"></param> |
||||||
|
/// <returns></returns> |
||||||
|
public static IHostBuilder CreateHostBuilder(string[] args) => |
||||||
|
Host.CreateDefaultBuilder(args) |
||||||
|
.ConfigureWebHostDefaults(webBuilder => |
||||||
|
{ |
||||||
|
webBuilder.UseStartup<Startup>(); |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,14 @@ |
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web"> |
||||||
|
|
||||||
|
<PropertyGroup> |
||||||
|
<TargetFramework>netcoreapp3.1</TargetFramework> |
||||||
|
<GenerateDocumentationFile>True</GenerateDocumentationFile> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<ItemGroup> |
||||||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.6" /> |
||||||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.0" /> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
|
||||||
|
</Project> |
@ -0,0 +1,161 @@ |
|||||||
|
using Microsoft.AspNetCore.Builder; |
||||||
|
using Microsoft.AspNetCore.Hosting; |
||||||
|
using Microsoft.Extensions.Configuration; |
||||||
|
using Microsoft.Extensions.DependencyInjection; |
||||||
|
using Microsoft.Extensions.Hosting; |
||||||
|
using System; |
||||||
|
using System.IO; |
||||||
|
using System.Reflection; |
||||||
|
using System.Text; |
||||||
|
using Microsoft.AspNetCore.Authentication.JwtBearer; |
||||||
|
using Microsoft.IdentityModel.Tokens; |
||||||
|
using Microsoft.OpenApi.Models; |
||||||
|
using System.Collections.Generic; |
||||||
|
using QualityControlPlatform.Middleware; |
||||||
|
namespace QualityControlPlatform |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 主配置 |
||||||
|
/// </summary> |
||||||
|
public class Startup |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 私有化 |
||||||
|
/// </summary> |
||||||
|
/// <param name="configuration"></param> |
||||||
|
public Startup(IConfiguration configuration) |
||||||
|
{ |
||||||
|
Configuration = configuration; |
||||||
|
} |
||||||
|
/// <summary> |
||||||
|
/// 私有化继承变量 |
||||||
|
/// </summary> |
||||||
|
public IConfiguration Configuration { get; } |
||||||
|
|
||||||
|
// This method gets called by the runtime. Use this method to add services to the container. |
||||||
|
/// <summary> |
||||||
|
/// 服务设置 |
||||||
|
/// </summary> |
||||||
|
/// <param name="services"></param> |
||||||
|
public void ConfigureServices(IServiceCollection services) |
||||||
|
{ |
||||||
|
services.AddControllers(); |
||||||
|
// swagger 配置 |
||||||
|
services.AddSwaggerGen(c => |
||||||
|
{ |
||||||
|
c.SwaggerDoc("v1", new OpenApiInfo { Title = "QualityControlPlatform", Version = "v1" }); |
||||||
|
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml"; |
||||||
|
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile); |
||||||
|
c.IncludeXmlComments(xmlPath, true); |
||||||
|
|
||||||
|
|
||||||
|
//添加Authorization |
||||||
|
c.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme |
||||||
|
{ |
||||||
|
Description = "JWT Authorization header using the Bearer scheme.", |
||||||
|
Name = "Authorization", |
||||||
|
In = ParameterLocation.Header, |
||||||
|
Scheme = "bearer", |
||||||
|
Type = SecuritySchemeType.Http, |
||||||
|
BearerFormat = "JWT" |
||||||
|
}); |
||||||
|
//把所有方法配置为增加bearer头部信息; |
||||||
|
c.AddSecurityRequirement(new OpenApiSecurityRequirement |
||||||
|
{ |
||||||
|
{ |
||||||
|
new OpenApiSecurityScheme |
||||||
|
{ |
||||||
|
Reference = new OpenApiReference |
||||||
|
{ |
||||||
|
Type = ReferenceType.SecurityScheme, |
||||||
|
Id = "bearerAuth" |
||||||
|
} |
||||||
|
}, |
||||||
|
new string[] {} |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
c.AddSecurityRequirement(new OpenApiSecurityRequirement |
||||||
|
{ |
||||||
|
{ |
||||||
|
new OpenApiSecurityScheme |
||||||
|
{ |
||||||
|
Reference = new OpenApiReference { Type = ReferenceType.SecurityScheme, Id = "Bearer" } |
||||||
|
}, |
||||||
|
new List<string>() |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
// jwt 配置 |
||||||
|
services.AddAuthentication(options => |
||||||
|
{ |
||||||
|
// 设置默认使用jwt验证方式 |
||||||
|
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme; |
||||||
|
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme; |
||||||
|
}).AddJwtBearer(options => |
||||||
|
{ |
||||||
|
var confSection = Configuration.GetSection("Authentication"); |
||||||
|
options.TokenValidationParameters = new TokenValidationParameters() |
||||||
|
{ |
||||||
|
// 验证接收者 |
||||||
|
ValidateAudience = true, |
||||||
|
// 验证发布者 //是否验证发行人,就是验证载荷中的Iss是否对应ValidIssuer参数 |
||||||
|
ValidateIssuer = true, |
||||||
|
// 验证过期时间//是否验证过期时间,过期了就拒绝访问 |
||||||
|
ValidateLifetime = true, |
||||||
|
// 验证秘钥 //是否验证签名,不验证的画可以篡改数据,不安全 |
||||||
|
ValidateIssuerSigningKey = true, |
||||||
|
// 读配置Issuer//发行人 |
||||||
|
ValidIssuer = confSection["IsSure"], |
||||||
|
// 读配置Audience//订阅人 |
||||||
|
ValidAudience = confSection["Audience"], |
||||||
|
// 设置生成token的秘钥 //解密的密钥 |
||||||
|
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(confSection["SecurityKey"])) |
||||||
|
}; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. |
||||||
|
/// <summary> |
||||||
|
/// 项目设置 |
||||||
|
/// </summary> |
||||||
|
/// <param name="app"></param> |
||||||
|
/// <param name="env"></param> |
||||||
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) |
||||||
|
{ |
||||||
|
if (env.IsDevelopment()) |
||||||
|
{ |
||||||
|
app.UseDeveloperExceptionPage(); |
||||||
|
} |
||||||
|
else |
||||||
|
{ |
||||||
|
app.UseExceptionHandler("/error"); |
||||||
|
} |
||||||
|
|
||||||
|
app.UseSwagger(); |
||||||
|
// Enable middleware to serve generated Swagger as a JSON endpoint. |
||||||
|
app.UseSwagger(c => |
||||||
|
{ |
||||||
|
c.SerializeAsV2 = true; |
||||||
|
}); |
||||||
|
app.UseSwaggerUI(c => |
||||||
|
{ |
||||||
|
c.SwaggerEndpoint("/swagger/v1/swagger.json", "debug NetFL v1"); |
||||||
|
}); |
||||||
|
|
||||||
|
app.UseHttpsRedirection(); |
||||||
|
app.UseRouting(); |
||||||
|
|
||||||
|
// custom jwt auth middleware |
||||||
|
app.UseMiddleware<JwtMiddleware>(); |
||||||
|
// jwt |
||||||
|
app.UseAuthentication(); |
||||||
|
app.UseAuthorization(); |
||||||
|
|
||||||
|
app.UseEndpoints(endpoints => |
||||||
|
{ |
||||||
|
endpoints.MapControllers(); |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,9 @@ |
|||||||
|
{ |
||||||
|
"Logging": { |
||||||
|
"LogLevel": { |
||||||
|
"Default": "Information", |
||||||
|
"Microsoft": "Warning", |
||||||
|
"Microsoft.Hosting.Lifetime": "Information" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
{ |
||||||
|
"Logging": { |
||||||
|
"LogLevel": { |
||||||
|
"Default": "Information", |
||||||
|
"Microsoft": "Warning", |
||||||
|
"Microsoft.Hosting.Lifetime": "Information" |
||||||
|
} |
||||||
|
}, |
||||||
|
"AllowedHosts": "*", |
||||||
|
"Authentication": { |
||||||
|
"IsSure": "QualityControlPlatform", |
||||||
|
"Audience": "QualityControlPlatformClient", |
||||||
|
"SecurityKey": "5FCF92D6F90D9DB42071E822533007B9" |
||||||
|
} |
||||||
|
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"runtimeOptions": { |
||||||
|
"additionalProbingPaths": [ |
||||||
|
"C:\\Users\\14491\\.dotnet\\store\\|arch|\\|tfm|", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages", |
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" |
||||||
|
] |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
{ |
||||||
|
"runtimeOptions": { |
||||||
|
"tfm": "netcoreapp3.1", |
||||||
|
"framework": { |
||||||
|
"name": "Microsoft.AspNetCore.App", |
||||||
|
"version": "3.1.0" |
||||||
|
}, |
||||||
|
"configProperties": { |
||||||
|
"System.GC.Server": true, |
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,190 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<doc> |
||||||
|
<assembly> |
||||||
|
<name>QualityControlPlatform</name> |
||||||
|
</assembly> |
||||||
|
<members> |
||||||
|
<member name="T:QualityControlPlatform.Controllers.WeatherForecastController"> |
||||||
|
<summary> |
||||||
|
测试 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Controllers.WeatherForecastController.#ctor(Microsoft.Extensions.Logging.ILogger{QualityControlPlatform.Controllers.WeatherForecastController})"> |
||||||
|
<summary> |
||||||
|
测试 |
||||||
|
</summary> |
||||||
|
<param name="logger"></param> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Controllers.WeatherForecastController.Get"> |
||||||
|
<summary> |
||||||
|
初始框架测试接口 |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurUserCode(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的用户编号 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurUserName(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的姓名 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurDeptCode(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的科室编号 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurDeptName(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的科室 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="T:QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum"> |
||||||
|
<summary> |
||||||
|
首位:5:error; |
||||||
|
3:warning |
||||||
|
6:后端校验,前端不报错 |
||||||
|
4:info(提示信息) |
||||||
|
倒数第二位: 4: notFind |
||||||
|
5: 权限 |
||||||
|
1:业务流程里面的错误 |
||||||
|
0:代码校验出的错 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="F:QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum.TokenError"> |
||||||
|
<summary> |
||||||
|
Token错误 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="F:QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum.NotFindData"> |
||||||
|
<summary> |
||||||
|
未找到数据 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.GetDescription(System.Enum)"> |
||||||
|
<summary> |
||||||
|
获取枚举对应的Description |
||||||
|
</summary> |
||||||
|
<param name="val"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Fail(QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum)"> |
||||||
|
<summary> |
||||||
|
返回需单独处理错误的信息 |
||||||
|
</summary> |
||||||
|
<param name="enums"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Fail(QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum,System.String)"> |
||||||
|
<summary> |
||||||
|
返回需单独处理错误的信息,自定义message |
||||||
|
</summary> |
||||||
|
<param name="enums"></param> |
||||||
|
<param name="message"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Success"> |
||||||
|
<summary> |
||||||
|
成功(200,无返回) |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Success(System.Object)"> |
||||||
|
<summary> |
||||||
|
成功(200,返回数据) |
||||||
|
</summary> |
||||||
|
<param name="data"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.CustomizeFail(System.String,System.Int32)"> |
||||||
|
<summary> |
||||||
|
返回自定义错误 |
||||||
|
</summary> |
||||||
|
<param name="message"></param> |
||||||
|
<param name="code"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.ServerError"> |
||||||
|
<summary> |
||||||
|
失败(500) |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Fail(System.Exception)"> |
||||||
|
<summary> |
||||||
|
失败(500) |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Middleware.JwtMiddleware.IsCanReadToken(System.String@)"> |
||||||
|
<summary> |
||||||
|
Token是否是符合要求的标准 Json Web 令牌 |
||||||
|
</summary> |
||||||
|
<param name="tokenStr"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Middleware.JwtMiddleware.GetJwtSecurityToken(System.String)"> |
||||||
|
<summary> |
||||||
|
从Token解密出JwtSecurityToken,JwtSecurityToken : SecurityToken |
||||||
|
</summary> |
||||||
|
<param name="tokenStr"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Middleware.JwtMiddleware.IsExp(System.String)"> |
||||||
|
<summary> |
||||||
|
判断token是否过期 |
||||||
|
</summary> |
||||||
|
<param name="token"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="T:QualityControlPlatform.Program"> |
||||||
|
<summary> |
||||||
|
项目入口 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Program.Main(System.String[])"> |
||||||
|
<summary> |
||||||
|
主程序入口 |
||||||
|
</summary> |
||||||
|
<param name="args"></param> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Program.CreateHostBuilder(System.String[])"> |
||||||
|
<summary> |
||||||
|
主路由 |
||||||
|
</summary> |
||||||
|
<param name="args"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="T:QualityControlPlatform.Startup"> |
||||||
|
<summary> |
||||||
|
主配置 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Startup.#ctor(Microsoft.Extensions.Configuration.IConfiguration)"> |
||||||
|
<summary> |
||||||
|
私有化 |
||||||
|
</summary> |
||||||
|
<param name="configuration"></param> |
||||||
|
</member> |
||||||
|
<member name="P:QualityControlPlatform.Startup.Configuration"> |
||||||
|
<summary> |
||||||
|
私有化继承变量 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Startup.ConfigureServices(Microsoft.Extensions.DependencyInjection.IServiceCollection)"> |
||||||
|
<summary> |
||||||
|
服务设置 |
||||||
|
</summary> |
||||||
|
<param name="services"></param> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Startup.Configure(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Hosting.IWebHostEnvironment)"> |
||||||
|
<summary> |
||||||
|
项目设置 |
||||||
|
</summary> |
||||||
|
<param name="app"></param> |
||||||
|
<param name="env"></param> |
||||||
|
</member> |
||||||
|
</members> |
||||||
|
</doc> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,9 @@ |
|||||||
|
{ |
||||||
|
"Logging": { |
||||||
|
"LogLevel": { |
||||||
|
"Default": "Information", |
||||||
|
"Microsoft": "Warning", |
||||||
|
"Microsoft.Hosting.Lifetime": "Information" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
{ |
||||||
|
"Logging": { |
||||||
|
"LogLevel": { |
||||||
|
"Default": "Information", |
||||||
|
"Microsoft": "Warning", |
||||||
|
"Microsoft.Hosting.Lifetime": "Information" |
||||||
|
} |
||||||
|
}, |
||||||
|
"AllowedHosts": "*", |
||||||
|
"Authentication": { |
||||||
|
"IsSure": "QualityControlPlatform", |
||||||
|
"Audience": "QualityControlPlatformClient", |
||||||
|
"SecurityKey": "5FCF92D6F90D9DB42071E822533007B9" |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,4 @@ |
|||||||
|
// <autogenerated /> |
||||||
|
using System; |
||||||
|
using System.Reflection; |
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] |
@ -0,0 +1,23 @@ |
|||||||
|
//------------------------------------------------------------------------------ |
||||||
|
// <auto-generated> |
||||||
|
// 此代码由工具生成。 |
||||||
|
// 运行时版本:4.0.30319.42000 |
||||||
|
// |
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果 |
||||||
|
// 重新生成代码,这些更改将会丢失。 |
||||||
|
// </auto-generated> |
||||||
|
//------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Reflection; |
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("QualityControlPlatform")] |
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] |
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] |
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] |
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("QualityControlPlatform")] |
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("QualityControlPlatform")] |
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] |
||||||
|
|
||||||
|
// 由 MSBuild WriteCodeFragment 类生成。 |
||||||
|
|
@ -0,0 +1 @@ |
|||||||
|
8b781d88f36f0e2cb1b6e48f3cedc7dc072c2975 |
@ -0,0 +1,3 @@ |
|||||||
|
is_global = true |
||||||
|
build_property.RootNamespace = QualityControlPlatform |
||||||
|
build_property.ProjectDir = C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\ |
@ -0,0 +1,17 @@ |
|||||||
|
//------------------------------------------------------------------------------ |
||||||
|
// <auto-generated> |
||||||
|
// 此代码由工具生成。 |
||||||
|
// 运行时版本:4.0.30319.42000 |
||||||
|
// |
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果 |
||||||
|
// 重新生成代码,这些更改将会丢失。 |
||||||
|
// </auto-generated> |
||||||
|
//------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Reflection; |
||||||
|
|
||||||
|
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] |
||||||
|
|
||||||
|
// 由 MSBuild WriteCodeFragment 类生成。 |
||||||
|
|
@ -0,0 +1 @@ |
|||||||
|
d2e5256794ddaa612eb18f18a209fad2a065aade |
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@ |
|||||||
|
b55edcc5e501c0c741be4a35b80a0ba9e5c15aa8 |
@ -0,0 +1,35 @@ |
|||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\appsettings.Development.json |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\appsettings.json |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\QualityControlPlatform.exe |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\QualityControlPlatform.deps.json |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\QualityControlPlatform.runtimeconfig.json |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\QualityControlPlatform.runtimeconfig.dev.json |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\QualityControlPlatform.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\QualityControlPlatform.pdb |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Authentication.JwtBearer.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.JsonWebTokens.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Logging.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Tokens.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Microsoft.OpenApi.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.Swagger.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerGen.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerUI.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\System.IdentityModel.Tokens.Jwt.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.GeneratedMSBuildEditorConfig.editorconfig |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.AssemblyInfoInputs.cache |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.AssemblyInfo.cs |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.csproj.CoreCompileInputs.cache |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.MvcApplicationPartsAssemblyInfo.cs |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.MvcApplicationPartsAssemblyInfo.cache |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\staticwebassets\QualityControlPlatform.StaticWebAssets.Manifest.cache |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.RazorTargetAssemblyInfo.cache |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.csproj.CopyComplete |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.dll |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.pdb |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.genruntimeconfig.cache |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\bin\Debug\netcoreapp3.1\QualityControlPlatform.xml |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.xml |
||||||
|
C:\My Space\ProjectForUnit\QualityControlPlatform\QualityControlPlatform\obj\Debug\netcoreapp3.1\QualityControlPlatform.csproj.AssemblyReference.cache |
Binary file not shown.
@ -0,0 +1 @@ |
|||||||
|
edfc331109d4adac5a62ece49a1c6b8525c38d5f |
Binary file not shown.
@ -0,0 +1,190 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<doc> |
||||||
|
<assembly> |
||||||
|
<name>QualityControlPlatform</name> |
||||||
|
</assembly> |
||||||
|
<members> |
||||||
|
<member name="T:QualityControlPlatform.Controllers.WeatherForecastController"> |
||||||
|
<summary> |
||||||
|
测试 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Controllers.WeatherForecastController.#ctor(Microsoft.Extensions.Logging.ILogger{QualityControlPlatform.Controllers.WeatherForecastController})"> |
||||||
|
<summary> |
||||||
|
测试 |
||||||
|
</summary> |
||||||
|
<param name="logger"></param> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Controllers.WeatherForecastController.Get"> |
||||||
|
<summary> |
||||||
|
初始框架测试接口 |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurUserCode(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的用户编号 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurUserName(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的姓名 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurDeptCode(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的科室编号 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Auth.JwtHelper.CurDeptName(Microsoft.AspNetCore.Mvc.ControllerBase)"> |
||||||
|
<summary> |
||||||
|
获取当前登录用户的科室 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="T:QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum"> |
||||||
|
<summary> |
||||||
|
首位:5:error; |
||||||
|
3:warning |
||||||
|
6:后端校验,前端不报错 |
||||||
|
4:info(提示信息) |
||||||
|
倒数第二位: 4: notFind |
||||||
|
5: 权限 |
||||||
|
1:业务流程里面的错误 |
||||||
|
0:代码校验出的错 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="F:QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum.TokenError"> |
||||||
|
<summary> |
||||||
|
Token错误 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="F:QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum.NotFindData"> |
||||||
|
<summary> |
||||||
|
未找到数据 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.GetDescription(System.Enum)"> |
||||||
|
<summary> |
||||||
|
获取枚举对应的Description |
||||||
|
</summary> |
||||||
|
<param name="val"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Fail(QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum)"> |
||||||
|
<summary> |
||||||
|
返回需单独处理错误的信息 |
||||||
|
</summary> |
||||||
|
<param name="enums"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Fail(QualityControlPlatform.Helpers.Response.ResponseHelper.ErrorEnum,System.String)"> |
||||||
|
<summary> |
||||||
|
返回需单独处理错误的信息,自定义message |
||||||
|
</summary> |
||||||
|
<param name="enums"></param> |
||||||
|
<param name="message"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Success"> |
||||||
|
<summary> |
||||||
|
成功(200,无返回) |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Success(System.Object)"> |
||||||
|
<summary> |
||||||
|
成功(200,返回数据) |
||||||
|
</summary> |
||||||
|
<param name="data"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.CustomizeFail(System.String,System.Int32)"> |
||||||
|
<summary> |
||||||
|
返回自定义错误 |
||||||
|
</summary> |
||||||
|
<param name="message"></param> |
||||||
|
<param name="code"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.ServerError"> |
||||||
|
<summary> |
||||||
|
失败(500) |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Helpers.Response.ResponseHelper.Fail(System.Exception)"> |
||||||
|
<summary> |
||||||
|
失败(500) |
||||||
|
</summary> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Middleware.JwtMiddleware.IsCanReadToken(System.String@)"> |
||||||
|
<summary> |
||||||
|
Token是否是符合要求的标准 Json Web 令牌 |
||||||
|
</summary> |
||||||
|
<param name="tokenStr"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Middleware.JwtMiddleware.GetJwtSecurityToken(System.String)"> |
||||||
|
<summary> |
||||||
|
从Token解密出JwtSecurityToken,JwtSecurityToken : SecurityToken |
||||||
|
</summary> |
||||||
|
<param name="tokenStr"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Middleware.JwtMiddleware.IsExp(System.String)"> |
||||||
|
<summary> |
||||||
|
判断token是否过期 |
||||||
|
</summary> |
||||||
|
<param name="token"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="T:QualityControlPlatform.Program"> |
||||||
|
<summary> |
||||||
|
项目入口 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Program.Main(System.String[])"> |
||||||
|
<summary> |
||||||
|
主程序入口 |
||||||
|
</summary> |
||||||
|
<param name="args"></param> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Program.CreateHostBuilder(System.String[])"> |
||||||
|
<summary> |
||||||
|
主路由 |
||||||
|
</summary> |
||||||
|
<param name="args"></param> |
||||||
|
<returns></returns> |
||||||
|
</member> |
||||||
|
<member name="T:QualityControlPlatform.Startup"> |
||||||
|
<summary> |
||||||
|
主配置 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Startup.#ctor(Microsoft.Extensions.Configuration.IConfiguration)"> |
||||||
|
<summary> |
||||||
|
私有化 |
||||||
|
</summary> |
||||||
|
<param name="configuration"></param> |
||||||
|
</member> |
||||||
|
<member name="P:QualityControlPlatform.Startup.Configuration"> |
||||||
|
<summary> |
||||||
|
私有化继承变量 |
||||||
|
</summary> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Startup.ConfigureServices(Microsoft.Extensions.DependencyInjection.IServiceCollection)"> |
||||||
|
<summary> |
||||||
|
服务设置 |
||||||
|
</summary> |
||||||
|
<param name="services"></param> |
||||||
|
</member> |
||||||
|
<member name="M:QualityControlPlatform.Startup.Configure(Microsoft.AspNetCore.Builder.IApplicationBuilder,Microsoft.AspNetCore.Hosting.IWebHostEnvironment)"> |
||||||
|
<summary> |
||||||
|
项目设置 |
||||||
|
</summary> |
||||||
|
<param name="app"></param> |
||||||
|
<param name="env"></param> |
||||||
|
</member> |
||||||
|
</members> |
||||||
|
</doc> |
Binary file not shown.
@ -0,0 +1,81 @@ |
|||||||
|
{ |
||||||
|
"format": 1, |
||||||
|
"restore": { |
||||||
|
"C:\\My Space\\ProjectForUnit\\QualityControlPlatform\\QualityControlPlatform\\QualityControlPlatform.csproj": {} |
||||||
|
}, |
||||||
|
"projects": { |
||||||
|
"C:\\My Space\\ProjectForUnit\\QualityControlPlatform\\QualityControlPlatform\\QualityControlPlatform.csproj": { |
||||||
|
"version": "1.0.0", |
||||||
|
"restore": { |
||||||
|
"projectUniqueName": "C:\\My Space\\ProjectForUnit\\QualityControlPlatform\\QualityControlPlatform\\QualityControlPlatform.csproj", |
||||||
|
"projectName": "QualityControlPlatform", |
||||||
|
"projectPath": "C:\\My Space\\ProjectForUnit\\QualityControlPlatform\\QualityControlPlatform\\QualityControlPlatform.csproj", |
||||||
|
"packagesPath": "C:\\Users\\14491\\.nuget\\packages\\", |
||||||
|
"outputPath": "C:\\My Space\\ProjectForUnit\\QualityControlPlatform\\QualityControlPlatform\\obj\\", |
||||||
|
"projectStyle": "PackageReference", |
||||||
|
"fallbackFolders": [ |
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" |
||||||
|
], |
||||||
|
"configFilePaths": [ |
||||||
|
"C:\\Users\\14491\\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": [ |
||||||
|
"netcoreapp3.1" |
||||||
|
], |
||||||
|
"sources": { |
||||||
|
"C:\\My Space\\ProjectForUnit\\Nugets": {}, |
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, |
||||||
|
"https://api.nuget.org/v3/index.json": {} |
||||||
|
}, |
||||||
|
"frameworks": { |
||||||
|
"netcoreapp3.1": { |
||||||
|
"targetAlias": "netcoreapp3.1", |
||||||
|
"projectReferences": {} |
||||||
|
} |
||||||
|
}, |
||||||
|
"warningProperties": { |
||||||
|
"warnAsError": [ |
||||||
|
"NU1605" |
||||||
|
] |
||||||
|
} |
||||||
|
}, |
||||||
|
"frameworks": { |
||||||
|
"netcoreapp3.1": { |
||||||
|
"targetAlias": "netcoreapp3.1", |
||||||
|
"dependencies": { |
||||||
|
"Microsoft.AspNetCore.Authentication.JwtBearer": { |
||||||
|
"target": "Package", |
||||||
|
"version": "[3.1.6, )" |
||||||
|
}, |
||||||
|
"Swashbuckle.AspNetCore": { |
||||||
|
"target": "Package", |
||||||
|
"version": "[6.3.0, )" |
||||||
|
} |
||||||
|
}, |
||||||
|
"imports": [ |
||||||
|
"net461", |
||||||
|
"net462", |
||||||
|
"net47", |
||||||
|
"net471", |
||||||
|
"net472", |
||||||
|
"net48" |
||||||
|
], |
||||||
|
"assetTargetFallback": true, |
||||||
|
"warn": true, |
||||||
|
"frameworkReferences": { |
||||||
|
"Microsoft.AspNetCore.App": { |
||||||
|
"privateAssets": "none" |
||||||
|
}, |
||||||
|
"Microsoft.NETCore.App": { |
||||||
|
"privateAssets": "all" |
||||||
|
} |
||||||
|
}, |
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,68 @@ |
|||||||
|
{ |
||||||
|
"version": 2, |
||||||
|
"dgSpecHash": "XW9i/SCBQcmqMINgP5AZGuPYclUdunn9+QJYaBeFA/CaX6Y6US0Ya2GLGHnLtd1NBqOqamK75NCVrfZ3+A5BSw==", |
||||||
|
"success": true, |
||||||
|
"projectFilePath": "C:\\My Space\\ProjectForUnit\\QualityControlPlatform\\QualityControlPlatform\\QualityControlPlatform.csproj", |
||||||
|
"expectedPackageFiles": [ |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\3.1.6\\microsoft.aspnetcore.authentication.jwtbearer.3.1.6.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\10.0.1\\newtonsoft.json.10.0.1.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\swashbuckle.aspnetcore\\6.3.0\\swashbuckle.aspnetcore.6.3.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.3.0\\swashbuckle.aspnetcore.swagger.6.3.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.3.0\\swashbuckle.aspnetcore.swaggergen.6.3.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.3.0\\swashbuckle.aspnetcore.swaggerui.6.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Users\\14491\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", |
||||||
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" |
||||||
|
], |
||||||
|
"logs": [] |
||||||
|
} |
Loading…
Reference in new issue