初始化
This commit is contained in:
13
TestAPI/.config/dotnet-tools.json
Normal file
13
TestAPI/.config/dotnet-tools.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"version": 1,
|
||||
"isRoot": true,
|
||||
"tools": {
|
||||
"dotnet-ef": {
|
||||
"version": "10.0.0",
|
||||
"commands": [
|
||||
"dotnet-ef"
|
||||
],
|
||||
"rollForward": false
|
||||
}
|
||||
}
|
||||
}
|
||||
33
TestAPI/Controllers/WeatherForecastController.cs
Normal file
33
TestAPI/Controllers/WeatherForecastController.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace TestAPI.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("[controller]")]
|
||||
public class WeatherForecastController : ControllerBase
|
||||
{
|
||||
private static readonly string[] Summaries = new[]
|
||||
{
|
||||
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
|
||||
};
|
||||
|
||||
private readonly ILogger<WeatherForecastController> _logger;
|
||||
|
||||
public WeatherForecastController(ILogger<WeatherForecastController> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
public IEnumerable<WeatherForecast> Get()
|
||||
{
|
||||
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
|
||||
{
|
||||
Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
||||
TemperatureC = Random.Shared.Next(-20, 55),
|
||||
Summary = Summaries[Random.Shared.Next(Summaries.Length)]
|
||||
})
|
||||
.ToArray();
|
||||
}
|
||||
}
|
||||
}
|
||||
25
TestAPI/Program.cs
Normal file
25
TestAPI/Program.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace TestAPI
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
|
||||
builder.Services.AddControllers();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
|
||||
app.MapControllers();
|
||||
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
21
TestAPI/Properties/PublishProfiles/FolderProfile.pubxml
Normal file
21
TestAPI/Properties/PublishProfiles/FolderProfile.pubxml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- https://go.microsoft.com/fwlink/?LinkID=208121. -->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<DeleteExistingFiles>false</DeleteExistingFiles>
|
||||
<ExcludeApp_Data>false</ExcludeApp_Data>
|
||||
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<PublishProvider>FileSystem</PublishProvider>
|
||||
<PublishUrl>bin\Release\net8.0\publish\</PublishUrl>
|
||||
<WebPublishMethod>FileSystem</WebPublishMethod>
|
||||
<_TargetId>Folder</_TargetId>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<PublishSingleFile>false</PublishSingleFile>
|
||||
<ProjectGuid>3929c076-4a96-4cde-8640-696859edc508</ProjectGuid>
|
||||
<SelfContained>false</SelfContained>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- https://go.microsoft.com/fwlink/?LinkID=208121. -->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<_PublishTargetUrl>E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\publish\</_PublishTargetUrl>
|
||||
<History>True|2025-11-18T08:42:46.8000949Z||;</History>
|
||||
<LastFailureDetails />
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
31
TestAPI/Properties/launchSettings.json
Normal file
31
TestAPI/Properties/launchSettings.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:34142",
|
||||
"sslPort": 0
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "weatherforecast",
|
||||
"applicationUrl": "http://localhost:5077",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "weatherforecast",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9
TestAPI/TestAPI.csproj
Normal file
9
TestAPI/TestAPI.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
6
TestAPI/TestAPI.csproj.user
Normal file
6
TestAPI/TestAPI.csproj.user
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<NameOfLastUsedPublishProfile>E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
TestAPI/TestAPI.http
Normal file
6
TestAPI/TestAPI.http
Normal file
@@ -0,0 +1,6 @@
|
||||
@TestAPI_HostAddress = http://localhost:5077
|
||||
|
||||
GET {{TestAPI_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
||||
13
TestAPI/WeatherForecast.cs
Normal file
13
TestAPI/WeatherForecast.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace TestAPI
|
||||
{
|
||||
public class WeatherForecast
|
||||
{
|
||||
public DateOnly Date { get; set; }
|
||||
|
||||
public int TemperatureC { get; set; }
|
||||
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
|
||||
public string? Summary { get; set; }
|
||||
}
|
||||
}
|
||||
8
TestAPI/appsettings.Development.json
Normal file
8
TestAPI/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
TestAPI/appsettings.json
Normal file
9
TestAPI/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
23
TestAPI/bin/Debug/net8.0/TestAPI.deps.json
Normal file
23
TestAPI/bin/Debug/net8.0/TestAPI.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"TestAPI/1.0.0": {
|
||||
"runtime": {
|
||||
"TestAPI.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestAPI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestAPI/bin/Debug/net8.0/TestAPI.dll
Normal file
BIN
TestAPI/bin/Debug/net8.0/TestAPI.dll
Normal file
Binary file not shown.
BIN
TestAPI/bin/Debug/net8.0/TestAPI.exe
Normal file
BIN
TestAPI/bin/Debug/net8.0/TestAPI.exe
Normal file
Binary file not shown.
BIN
TestAPI/bin/Debug/net8.0/TestAPI.pdb
Normal file
BIN
TestAPI/bin/Debug/net8.0/TestAPI.pdb
Normal file
Binary file not shown.
19
TestAPI/bin/Debug/net8.0/TestAPI.runtimeconfig.json
Normal file
19
TestAPI/bin/Debug/net8.0/TestAPI.runtimeconfig.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
8
TestAPI/bin/Debug/net8.0/appsettings.Development.json
Normal file
8
TestAPI/bin/Debug/net8.0/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
TestAPI/bin/Debug/net8.0/appsettings.json
Normal file
9
TestAPI/bin/Debug/net8.0/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
23
TestAPI/bin/Release/net8.0/TestAPI.deps.json
Normal file
23
TestAPI/bin/Release/net8.0/TestAPI.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"TestAPI/1.0.0": {
|
||||
"runtime": {
|
||||
"TestAPI.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestAPI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestAPI/bin/Release/net8.0/TestAPI.dll
Normal file
BIN
TestAPI/bin/Release/net8.0/TestAPI.dll
Normal file
Binary file not shown.
BIN
TestAPI/bin/Release/net8.0/TestAPI.exe
Normal file
BIN
TestAPI/bin/Release/net8.0/TestAPI.exe
Normal file
Binary file not shown.
BIN
TestAPI/bin/Release/net8.0/TestAPI.pdb
Normal file
BIN
TestAPI/bin/Release/net8.0/TestAPI.pdb
Normal file
Binary file not shown.
20
TestAPI/bin/Release/net8.0/TestAPI.runtimeconfig.json
Normal file
20
TestAPI/bin/Release/net8.0/TestAPI.runtimeconfig.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
8
TestAPI/bin/Release/net8.0/appsettings.Development.json
Normal file
8
TestAPI/bin/Release/net8.0/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
TestAPI/bin/Release/net8.0/appsettings.json
Normal file
9
TestAPI/bin/Release/net8.0/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
24
TestAPI/bin/Release/net8.0/publish/TestAPI.deps.json
Normal file
24
TestAPI/bin/Release/net8.0/publish/TestAPI.deps.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0/win-x64",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {},
|
||||
".NETCoreApp,Version=v8.0/win-x64": {
|
||||
"TestAPI/1.0.0": {
|
||||
"runtime": {
|
||||
"TestAPI.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestAPI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestAPI/bin/Release/net8.0/publish/TestAPI.dll
Normal file
BIN
TestAPI/bin/Release/net8.0/publish/TestAPI.dll
Normal file
Binary file not shown.
BIN
TestAPI/bin/Release/net8.0/publish/TestAPI.exe
Normal file
BIN
TestAPI/bin/Release/net8.0/publish/TestAPI.exe
Normal file
Binary file not shown.
BIN
TestAPI/bin/Release/net8.0/publish/TestAPI.pdb
Normal file
BIN
TestAPI/bin/Release/net8.0/publish/TestAPI.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Publish","Endpoints":[]}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
TestAPI/bin/Release/net8.0/publish/appsettings.json
Normal file
9
TestAPI/bin/Release/net8.0/publish/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
12
TestAPI/bin/Release/net8.0/publish/web.config
Normal file
12
TestAPI/bin/Release/net8.0/publish/web.config
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<location path="." inheritInChildApplications="false">
|
||||
<system.webServer>
|
||||
<handlers>
|
||||
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
|
||||
</handlers>
|
||||
<aspNetCore processPath=".\TestAPI.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
|
||||
</system.webServer>
|
||||
</location>
|
||||
</configuration>
|
||||
<!--ProjectGuid: 3929c076-4a96-4cde-8640-696859edc508-->
|
||||
24
TestAPI/bin/Release/net8.0/win-x64/TestAPI.deps.json
Normal file
24
TestAPI/bin/Release/net8.0/win-x64/TestAPI.deps.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0/win-x64",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {},
|
||||
".NETCoreApp,Version=v8.0/win-x64": {
|
||||
"TestAPI/1.0.0": {
|
||||
"runtime": {
|
||||
"TestAPI.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestAPI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestAPI/bin/Release/net8.0/win-x64/TestAPI.dll
Normal file
BIN
TestAPI/bin/Release/net8.0/win-x64/TestAPI.dll
Normal file
Binary file not shown.
BIN
TestAPI/bin/Release/net8.0/win-x64/TestAPI.exe
Normal file
BIN
TestAPI/bin/Release/net8.0/win-x64/TestAPI.exe
Normal file
Binary file not shown.
BIN
TestAPI/bin/Release/net8.0/win-x64/TestAPI.pdb
Normal file
BIN
TestAPI/bin/Release/net8.0/win-x64/TestAPI.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
TestAPI/bin/Release/net8.0/win-x64/appsettings.json
Normal file
9
TestAPI/bin/Release/net8.0/win-x64/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
23
TestAPI/obj/Debug/net8.0/TestAPI.AssemblyInfo.cs
Normal file
23
TestAPI/obj/Debug/net8.0/TestAPI.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("TestAPI")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5c74a3917285a83fa24bb31b761745583549030")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("TestAPI")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("TestAPI")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
b49b0757b2c3d86f131fbddad2db0577303cd74b83e77bd5d1ec5ec984e1e6ae
|
||||
@@ -0,0 +1,23 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = TestAPI
|
||||
build_property.RootNamespace = TestAPI
|
||||
build_property.ProjectDir = E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
17
TestAPI/obj/Debug/net8.0/TestAPI.GlobalUsings.g.cs
Normal file
17
TestAPI/obj/Debug/net8.0/TestAPI.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
global using Microsoft.AspNetCore.Builder;
|
||||
global using Microsoft.AspNetCore.Hosting;
|
||||
global using Microsoft.AspNetCore.Http;
|
||||
global using Microsoft.AspNetCore.Routing;
|
||||
global using Microsoft.Extensions.Configuration;
|
||||
global using Microsoft.Extensions.DependencyInjection;
|
||||
global using Microsoft.Extensions.Hosting;
|
||||
global using Microsoft.Extensions.Logging;
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Net.Http.Json;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
BIN
TestAPI/obj/Debug/net8.0/TestAPI.assets.cache
Normal file
BIN
TestAPI/obj/Debug/net8.0/TestAPI.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
3da1f88240890d9d16dbfc39ce02c4fc031401aa990dc39920a189cc3b31341f
|
||||
29
TestAPI/obj/Debug/net8.0/TestAPI.csproj.FileListAbsolute.txt
Normal file
29
TestAPI/obj/Debug/net8.0/TestAPI.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,29 @@
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\appsettings.Development.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\appsettings.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\TestAPI.staticwebassets.endpoints.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\TestAPI.exe
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\TestAPI.deps.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\TestAPI.runtimeconfig.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\TestAPI.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Debug\net8.0\TestAPI.pdb
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\rpswa.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.AssemblyInfoInputs.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.AssemblyInfo.cs
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.csproj.CoreCompileInputs.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.MvcApplicationPartsAssemblyInfo.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\rjimswa.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\rjsmrazor.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\rjsmcshtml.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\scopedcss\bundle\TestAPI.styles.css
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\staticwebassets.build.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\staticwebassets.build.json.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\staticwebassets.development.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\staticwebassets.build.endpoints.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\swae.build.ex.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\refint\TestAPI.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.pdb
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\TestAPI.genruntimeconfig.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\ref\TestAPI.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Debug\net8.0\staticwebassets.upToDateCheck.txt
|
||||
BIN
TestAPI/obj/Debug/net8.0/TestAPI.dll
Normal file
BIN
TestAPI/obj/Debug/net8.0/TestAPI.dll
Normal file
Binary file not shown.
1
TestAPI/obj/Debug/net8.0/TestAPI.genruntimeconfig.cache
Normal file
1
TestAPI/obj/Debug/net8.0/TestAPI.genruntimeconfig.cache
Normal file
@@ -0,0 +1 @@
|
||||
628d92e1dba9d0c9f0c90b765a6059124857bf06180c702b4bed329cc378bdd8
|
||||
BIN
TestAPI/obj/Debug/net8.0/TestAPI.pdb
Normal file
BIN
TestAPI/obj/Debug/net8.0/TestAPI.pdb
Normal file
Binary file not shown.
BIN
TestAPI/obj/Debug/net8.0/apphost.exe
Normal file
BIN
TestAPI/obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
BIN
TestAPI/obj/Debug/net8.0/ref/TestAPI.dll
Normal file
BIN
TestAPI/obj/Debug/net8.0/ref/TestAPI.dll
Normal file
Binary file not shown.
BIN
TestAPI/obj/Debug/net8.0/refint/TestAPI.dll
Normal file
BIN
TestAPI/obj/Debug/net8.0/refint/TestAPI.dll
Normal file
Binary file not shown.
1
TestAPI/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json
Normal file
1
TestAPI/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"ulsKIJ8WPaGAuzGy5wYcBF/tKXMwGdHlAK0bzVwrTmM=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE=","8rOioHUN4a1BE7IvIWszWNjZFU7WR2lwLARDD/9dz5I=","m38rxwOoPDWrLjVFfM3YXH7ZQNNYG86fNLvrNfo6xOM=","nMu8wUQ7sdh0Zl0VFTWS33uGG8QkZZ2GJmiRK2vzfgg=","c5WNOwFgZnM3eiSCxOaF/33pPTrlpEL18/w\u002BnrQGy1A="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
1
TestAPI/obj/Debug/net8.0/rjsmrazor.dswa.cache.json
Normal file
1
TestAPI/obj/Debug/net8.0/rjsmrazor.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"EYpoDVcoLrTF43G8YmYuniOIjH5Rq2QEW1nfoeUsDLs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE=","8rOioHUN4a1BE7IvIWszWNjZFU7WR2lwLARDD/9dz5I=","m38rxwOoPDWrLjVFfM3YXH7ZQNNYG86fNLvrNfo6xOM=","nMu8wUQ7sdh0Zl0VFTWS33uGG8QkZZ2GJmiRK2vzfgg=","c5WNOwFgZnM3eiSCxOaF/33pPTrlpEL18/w\u002BnrQGy1A="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
1
TestAPI/obj/Debug/net8.0/rpswa.dswa.cache.json
Normal file
1
TestAPI/obj/Debug/net8.0/rpswa.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"Lm+W2bsk4EtTEUWaZeOpXu0o9TRcyd+6e7eXZaf1jGs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
1
TestAPI/obj/Debug/net8.0/staticwebassets.build.json
Normal file
1
TestAPI/obj/Debug/net8.0/staticwebassets.build.json
Normal file
@@ -0,0 +1 @@
|
||||
{"Version":1,"Hash":"dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=","Source":"TestAPI","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
|
||||
@@ -0,0 +1 @@
|
||||
dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=
|
||||
0
TestAPI/obj/Debug/net8.0/swae.build.ex.cache
Normal file
0
TestAPI/obj/Debug/net8.0/swae.build.ex.cache
Normal file
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
23
TestAPI/obj/Release/net8.0/TestAPI.AssemblyInfo.cs
Normal file
23
TestAPI/obj/Release/net8.0/TestAPI.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 此代码由工具生成。
|
||||
// 运行时版本:4.0.30319.42000
|
||||
//
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||
// 重新生成代码,这些更改将会丢失。
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("TestAPI")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b5c74a3917285a83fa24bb31b761745583549030")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("TestAPI")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("TestAPI")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
f2ecb3f10daaf89d0f7d0b2fb1cb64ddf4ad860c47a2eff0266c53efdda8aef8
|
||||
@@ -0,0 +1,23 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = TestAPI
|
||||
build_property.RootNamespace = TestAPI
|
||||
build_property.ProjectDir = E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
17
TestAPI/obj/Release/net8.0/TestAPI.GlobalUsings.g.cs
Normal file
17
TestAPI/obj/Release/net8.0/TestAPI.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
global using Microsoft.AspNetCore.Builder;
|
||||
global using Microsoft.AspNetCore.Hosting;
|
||||
global using Microsoft.AspNetCore.Http;
|
||||
global using Microsoft.AspNetCore.Routing;
|
||||
global using Microsoft.Extensions.Configuration;
|
||||
global using Microsoft.Extensions.DependencyInjection;
|
||||
global using Microsoft.Extensions.Hosting;
|
||||
global using Microsoft.Extensions.Logging;
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Net.Http.Json;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
BIN
TestAPI/obj/Release/net8.0/TestAPI.assets.cache
Normal file
BIN
TestAPI/obj/Release/net8.0/TestAPI.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
37988d3dbf33c0fa1cafa90bf8bba30740f79efbbcd7a113a6ed9bdd5359b0d8
|
||||
@@ -0,0 +1,29 @@
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\appsettings.Development.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\appsettings.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\TestAPI.staticwebassets.endpoints.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\TestAPI.exe
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\TestAPI.deps.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\TestAPI.runtimeconfig.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\TestAPI.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\bin\Release\net8.0\TestAPI.pdb
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\rpswa.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.AssemblyInfoInputs.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.AssemblyInfo.cs
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.csproj.CoreCompileInputs.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.MvcApplicationPartsAssemblyInfo.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\rjimswa.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\rjsmrazor.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\rjsmcshtml.dswa.cache.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\scopedcss\bundle\TestAPI.styles.css
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\staticwebassets.build.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\staticwebassets.build.json.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\staticwebassets.development.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\staticwebassets.build.endpoints.json
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\swae.build.ex.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\staticwebassets.upToDateCheck.txt
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\refint\TestAPI.dll
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.pdb
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\TestAPI.genruntimeconfig.cache
|
||||
E:\tian\chongxin\EMQX\BooliveMQTT_Auth\TestAPI\obj\Release\net8.0\ref\TestAPI.dll
|
||||
BIN
TestAPI/obj/Release/net8.0/TestAPI.dll
Normal file
BIN
TestAPI/obj/Release/net8.0/TestAPI.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
f57a8cf8694167b042ff9962f7b030d4ebefe0294fbd8dea50cd7d25f566ccb0
|
||||
BIN
TestAPI/obj/Release/net8.0/TestAPI.pdb
Normal file
BIN
TestAPI/obj/Release/net8.0/TestAPI.pdb
Normal file
Binary file not shown.
BIN
TestAPI/obj/Release/net8.0/apphost.exe
Normal file
BIN
TestAPI/obj/Release/net8.0/apphost.exe
Normal file
Binary file not shown.
BIN
TestAPI/obj/Release/net8.0/ref/TestAPI.dll
Normal file
BIN
TestAPI/obj/Release/net8.0/ref/TestAPI.dll
Normal file
Binary file not shown.
BIN
TestAPI/obj/Release/net8.0/refint/TestAPI.dll
Normal file
BIN
TestAPI/obj/Release/net8.0/refint/TestAPI.dll
Normal file
Binary file not shown.
1
TestAPI/obj/Release/net8.0/rjsmcshtml.dswa.cache.json
Normal file
1
TestAPI/obj/Release/net8.0/rjsmcshtml.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"ulsKIJ8WPaGAuzGy5wYcBF/tKXMwGdHlAK0bzVwrTmM=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE=","8rOioHUN4a1BE7IvIWszWNjZFU7WR2lwLARDD/9dz5I=","m38rxwOoPDWrLjVFfM3YXH7ZQNNYG86fNLvrNfo6xOM=","nMu8wUQ7sdh0Zl0VFTWS33uGG8QkZZ2GJmiRK2vzfgg=","dDW7GuIE87b\u002BLQczdMWMWR\u002Bf/SozXY\u002Bh1hg2p22ZTQs="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
1
TestAPI/obj/Release/net8.0/rjsmrazor.dswa.cache.json
Normal file
1
TestAPI/obj/Release/net8.0/rjsmrazor.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"EYpoDVcoLrTF43G8YmYuniOIjH5Rq2QEW1nfoeUsDLs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE=","8rOioHUN4a1BE7IvIWszWNjZFU7WR2lwLARDD/9dz5I=","m38rxwOoPDWrLjVFfM3YXH7ZQNNYG86fNLvrNfo6xOM=","nMu8wUQ7sdh0Zl0VFTWS33uGG8QkZZ2GJmiRK2vzfgg=","dDW7GuIE87b\u002BLQczdMWMWR\u002Bf/SozXY\u002Bh1hg2p22ZTQs="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
1
TestAPI/obj/Release/net8.0/rpswa.dswa.cache.json
Normal file
1
TestAPI/obj/Release/net8.0/rpswa.dswa.cache.json
Normal file
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"Lm+W2bsk4EtTEUWaZeOpXu0o9TRcyd+6e7eXZaf1jGs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
1
TestAPI/obj/Release/net8.0/staticwebassets.build.json
Normal file
1
TestAPI/obj/Release/net8.0/staticwebassets.build.json
Normal file
@@ -0,0 +1 @@
|
||||
{"Version":1,"Hash":"dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=","Source":"TestAPI","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
|
||||
@@ -0,0 +1 @@
|
||||
dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=
|
||||
0
TestAPI/obj/Release/net8.0/swae.build.ex.cache
Normal file
0
TestAPI/obj/Release/net8.0/swae.build.ex.cache
Normal file
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0/win-x64",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {},
|
||||
".NETCoreApp,Version=v8.0/win-x64": {
|
||||
"TestAPI/1.0.0": {
|
||||
"runtime": {
|
||||
"TestAPI.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestAPI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TestAPI/obj/Release/net8.0/win-x64/PubTmp/Out/TestAPI.dll
Normal file
BIN
TestAPI/obj/Release/net8.0/win-x64/PubTmp/Out/TestAPI.dll
Normal file
Binary file not shown.
BIN
TestAPI/obj/Release/net8.0/win-x64/PubTmp/Out/TestAPI.exe
Normal file
BIN
TestAPI/obj/Release/net8.0/win-x64/PubTmp/Out/TestAPI.exe
Normal file
Binary file not shown.
BIN
TestAPI/obj/Release/net8.0/win-x64/PubTmp/Out/TestAPI.pdb
Normal file
BIN
TestAPI/obj/Release/net8.0/win-x64/PubTmp/Out/TestAPI.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Publish","Endpoints":[]}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user