refactor: clean up Member module and update Console
- Remove redundant PointsRule repositories (use single PointsRuleRepository) - Clean up Member migrations and consolidate to single Init migration - Update Console frontend API and components for Tenant - Add H5LinkService for member H5 integration
This commit is contained in:
parent
39cc9a8538
commit
d4aff05804
@ -332,6 +332,7 @@ public class AuthorizationController(
|
|||||||
new(OpenIddictConstants.Claims.Name, user.UserName!),
|
new(OpenIddictConstants.Claims.Name, user.UserName!),
|
||||||
new(OpenIddictConstants.Claims.PreferredUsername, user.UserName!)
|
new(OpenIddictConstants.Claims.PreferredUsername, user.UserName!)
|
||||||
};
|
};
|
||||||
|
if (claims == null) throw new ArgumentNullException(nameof(claims));
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(user.Email))
|
if (!string.IsNullOrEmpty(user.Email))
|
||||||
{
|
{
|
||||||
@ -345,23 +346,20 @@ public class AuthorizationController(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 添加自定义 tenant 相关 claims
|
// 添加自定义 tenant 相关 claims
|
||||||
if (tenantInfo != null)
|
claims.Add(new Claim("tenant_id", tenantInfo.TenantId.ToString()));
|
||||||
{
|
claims.Add(new Claim("tenant_code", tenantInfo.TenantCode));
|
||||||
claims.Add(new Claim("tenant_id", tenantInfo.Id.ToString()));
|
claims.Add(new Claim("tenant_name", tenantInfo.TenantName));
|
||||||
claims.Add(new Claim("tenant_code", tenantInfo.TenantId));
|
|
||||||
claims.Add(new Claim("tenant_name", tenantInfo.Name));
|
|
||||||
}
|
|
||||||
|
|
||||||
return Ok(new Dictionary<string, object>
|
return Ok(new Dictionary<string, object>
|
||||||
{
|
{
|
||||||
["sub"] = await userManager.GetUserIdAsync(user),
|
["sub"] = await userManager.GetUserIdAsync(user),
|
||||||
["name"] = user.UserName,
|
["name"] = user.UserName ?? "Anonymous",
|
||||||
["preferred_username"] = user.UserName,
|
["preferred_username"] = user.UserName ?? "Anonymous",
|
||||||
["email"] = user.Email ?? "",
|
["email"] = user.Email ?? "",
|
||||||
["role"] = roles.ToArray(),
|
["role"] = roles.ToArray(),
|
||||||
["tenant_id"] = tenantInfo != null ? tenantInfo.Id.ToString() : "",
|
["tenant_id"] = tenantInfo.TenantId.ToString(),
|
||||||
["tenant_code"] = tenantInfo?.TenantId ?? "",
|
["tenant_code"] = tenantInfo?.TenantCode ?? "",
|
||||||
["tenant_name"] = tenantInfo?.Name ?? ""
|
["tenant_name"] = tenantInfo?.TenantName ?? ""
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -123,7 +123,7 @@ public class RolesController : ControllerBase
|
|||||||
userName = u.UserName,
|
userName = u.UserName,
|
||||||
email = u.Email,
|
email = u.Email,
|
||||||
realName = u.RealName,
|
realName = u.RealName,
|
||||||
tenantId = u.TenantInfo.Id,
|
tenantId = u.TenantInfo.TenantId,
|
||||||
roles = await _userManager.GetRolesAsync(u),
|
roles = await _userManager.GetRolesAsync(u),
|
||||||
isActive = !u.LockoutEnabled || u.LockoutEnd == null || u.LockoutEnd < DateTimeOffset.UtcNow,
|
isActive = !u.LockoutEnabled || u.LockoutEnd == null || u.LockoutEnd < DateTimeOffset.UtcNow,
|
||||||
createdAt = u.CreatedTime,
|
createdAt = u.CreatedTime,
|
||||||
|
|||||||
@ -95,9 +95,9 @@ public class TokenController(
|
|||||||
var claims = new List<Claim>
|
var claims = new List<Claim>
|
||||||
{
|
{
|
||||||
new(Claims.Subject, await userManager.GetUserIdAsync(user)),
|
new(Claims.Subject, await userManager.GetUserIdAsync(user)),
|
||||||
new(Claims.Name, await userManager.GetUserNameAsync(user)),
|
new(Claims.Name, await userManager.GetUserNameAsync(user) ?? throw new InvalidOperationException()),
|
||||||
new(Claims.Email, await userManager.GetEmailAsync(user) ?? ""),
|
new(Claims.Email, await userManager.GetEmailAsync(user) ?? ""),
|
||||||
new("tenant_id", user.TenantInfo.Id.ToString())
|
new("tenant_id", user.TenantInfo.TenantId.ToString())
|
||||||
};
|
};
|
||||||
|
|
||||||
var roles = await userManager.GetRolesAsync(user);
|
var roles = await userManager.GetRolesAsync(user);
|
||||||
@ -244,9 +244,9 @@ public class TokenController(
|
|||||||
var claims = new List<Claim>
|
var claims = new List<Claim>
|
||||||
{
|
{
|
||||||
new(Claims.Subject, await userManager.GetUserIdAsync(user)),
|
new(Claims.Subject, await userManager.GetUserIdAsync(user)),
|
||||||
new(Claims.Name, await userManager.GetUserNameAsync(user)),
|
new(Claims.Name, await userManager.GetUserNameAsync(user) ?? string.Empty),
|
||||||
new(Claims.Email, await userManager.GetEmailAsync(user) ?? ""),
|
new(Claims.Email, await userManager.GetEmailAsync(user) ?? ""),
|
||||||
new("tenant_id", user.TenantInfo.Id.ToString())
|
new("tenant_id", user.TenantInfo.TenantId.ToString())
|
||||||
};
|
};
|
||||||
|
|
||||||
var roles = await userManager.GetRolesAsync(user);
|
var roles = await userManager.GetRolesAsync(user);
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
using Fengling.Platform.Domain.AggregatesModel.TenantAggregate;
|
||||||
using Microsoft.AspNetCore.Identity;
|
using Microsoft.AspNetCore.Identity;
|
||||||
|
|
||||||
namespace Fengling.AuthService.Models;
|
namespace Fengling.AuthService.Models;
|
||||||
|
|||||||
@ -4,6 +4,10 @@ namespace Fengling.AuthService.ViewModels;
|
|||||||
|
|
||||||
public class RegisterViewModel
|
public class RegisterViewModel
|
||||||
{
|
{
|
||||||
|
[Required(ErrorMessage = "租户编号不能为空")]
|
||||||
|
[StringLength(10,MinimumLength = 4,ErrorMessage = "租户编号长度必须在4·10个字符之间")]
|
||||||
|
public string TenantCode { get; set; }
|
||||||
|
|
||||||
[Required(ErrorMessage = "用户名不能为空")]
|
[Required(ErrorMessage = "用户名不能为空")]
|
||||||
[StringLength(50, MinimumLength = 3, ErrorMessage = "用户名长度必须在3-50个字符之间")]
|
[StringLength(50, MinimumLength = 3, ErrorMessage = "用户名长度必须在3-50个字符之间")]
|
||||||
public string Username { get; set; } = default!;
|
public string Username { get; set; } = default!;
|
||||||
|
|||||||
BIN
bin\Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll
Executable file
Binary file not shown.
Binary file not shown.
@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
<runtime>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.Build" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-15.1.0.0" newVersion="15.1.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.Build.Framework" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-15.1.0.0" newVersion="15.1.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.Build.Utilities.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-15.1.0.0" newVersion="15.1.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.Build.Tasks.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-15.1.0.0" newVersion="15.1.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.IO.Redist" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-6.1.0.0" newVersion="6.1.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-6.0.1.0" newVersion="6.0.1.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.2.1.0" newVersion="4.2.1.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
</assemblyBinding>
|
||||||
|
</runtime>
|
||||||
|
</configuration>
|
||||||
BIN
bin\Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/System.Buffers.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/System.Buffers.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/System.CommandLine.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/System.CommandLine.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/System.Memory.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/System.Memory.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll
Executable file
Binary file not shown.
@ -0,0 +1,171 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v8.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v8.0": {
|
||||||
|
"Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/5.0.0-2.25567.12": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Build.Locator": "1.10.2",
|
||||||
|
"Newtonsoft.Json": "13.0.3",
|
||||||
|
"System.Collections.Immutable": "9.0.0",
|
||||||
|
"System.CommandLine": "2.0.0-rtm.25509.106"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {}
|
||||||
|
},
|
||||||
|
"resources": {
|
||||||
|
"cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "cs"
|
||||||
|
},
|
||||||
|
"de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "de"
|
||||||
|
},
|
||||||
|
"es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "es"
|
||||||
|
},
|
||||||
|
"fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "fr"
|
||||||
|
},
|
||||||
|
"it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "it"
|
||||||
|
},
|
||||||
|
"ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "ja"
|
||||||
|
},
|
||||||
|
"ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "ko"
|
||||||
|
},
|
||||||
|
"pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "pl"
|
||||||
|
},
|
||||||
|
"pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "pt-BR"
|
||||||
|
},
|
||||||
|
"ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "ru"
|
||||||
|
},
|
||||||
|
"tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "tr"
|
||||||
|
},
|
||||||
|
"zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "zh-Hans"
|
||||||
|
},
|
||||||
|
"zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
|
||||||
|
"locale": "zh-Hant"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Build.Locator/1.10.2": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net8.0/Microsoft.Build.Locator.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.10.2.26959"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
|
"assemblyVersion": "13.0.0.0",
|
||||||
|
"fileVersion": "13.0.3.27908"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Collections.Immutable/9.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net8.0/System.Collections.Immutable.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.24.52809"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.CommandLine/2.0.0-rtm.25509.106": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net8.0/System.CommandLine.dll": {
|
||||||
|
"assemblyVersion": "2.0.0.0",
|
||||||
|
"fileVersion": "2.0.25.51006"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"resources": {
|
||||||
|
"lib/net8.0/cs/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "cs"
|
||||||
|
},
|
||||||
|
"lib/net8.0/de/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "de"
|
||||||
|
},
|
||||||
|
"lib/net8.0/es/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "es"
|
||||||
|
},
|
||||||
|
"lib/net8.0/fr/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "fr"
|
||||||
|
},
|
||||||
|
"lib/net8.0/it/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "it"
|
||||||
|
},
|
||||||
|
"lib/net8.0/ja/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "ja"
|
||||||
|
},
|
||||||
|
"lib/net8.0/ko/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "ko"
|
||||||
|
},
|
||||||
|
"lib/net8.0/pl/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "pl"
|
||||||
|
},
|
||||||
|
"lib/net8.0/pt-BR/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "pt-BR"
|
||||||
|
},
|
||||||
|
"lib/net8.0/ru/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "ru"
|
||||||
|
},
|
||||||
|
"lib/net8.0/tr/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "tr"
|
||||||
|
},
|
||||||
|
"lib/net8.0/zh-Hans/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "zh-Hans"
|
||||||
|
},
|
||||||
|
"lib/net8.0/zh-Hant/System.CommandLine.resources.dll": {
|
||||||
|
"locale": "zh-Hant"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/5.0.0-2.25567.12": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Microsoft.Build.Locator/1.10.2": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-F+nLS7IpgtslyxNvtD6Jalnf5WU08lu8yfJBNQl3cbEF3AMUphs4t7nPuRYaaU8QZyGrqtVi7i73LhAe/yHx7A==",
|
||||||
|
"path": "microsoft.build.locator/1.10.2",
|
||||||
|
"hashPath": "microsoft.build.locator.1.10.2.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||||
|
"path": "newtonsoft.json/13.0.3",
|
||||||
|
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Collections.Immutable/9.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-QhkXUl2gNrQtvPmtBTQHb0YsUrDiDQ2QS09YbtTTiSjGcf7NBqtYbrG/BE06zcBPCKEwQGzIv13IVdXNOSub2w==",
|
||||||
|
"path": "system.collections.immutable/9.0.0",
|
||||||
|
"hashPath": "system.collections.immutable.9.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.CommandLine/2.0.0-rtm.25509.106": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-IdCQOFNHQfK0hu3tzWOHFJLMaiEOR/4OynmOh+IfukrTIsCR4TTDm7lpuXQyMZ0eRfIyUcz06gHGJNlILAq/6A==",
|
||||||
|
"path": "system.commandline/2.0.0-rtm.25509.106",
|
||||||
|
"hashPath": "system.commandline.2.0.0-rtm.25509.106.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net8.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
},
|
||||||
|
"rollForward": "Major",
|
||||||
|
"configProperties": {
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
bin\Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/System.CommandLine.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/System.CommandLine.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll
Executable file
Binary file not shown.
BIN
bin\Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll
Executable file
BIN
bin\Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user