初始化

This commit is contained in:
2025-12-11 14:04:39 +08:00
commit 1f65bbf628
2676 changed files with 838983 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "10.0.0",
"commands": [
"dotnet-ef"
],
"rollForward": false
}
}
}

View 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
View 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();
}
}
}

View 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>

View File

@@ -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>

View 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
View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View 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
View File

@@ -0,0 +1,6 @@
@TestAPI_HostAddress = http://localhost:5077
GET {{TestAPI_HostAddress}}/weatherforecast/
Accept: application/json
###

View 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; }
}
}

View File

@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

9
TestAPI/appsettings.json Normal file
View File

@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View 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": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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
}
}
}

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}

View File

@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View 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": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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
}
}
}

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}

View File

@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View 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": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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
}
}
}

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Publish","Endpoints":[]}

View File

@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View 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-->

View 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": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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
}
}
}

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}

View File

@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View 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")]

View 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 类生成。

View File

@@ -0,0 +1 @@
b49b0757b2c3d86f131fbddad2db0577303cd74b83e77bd5d1ec5ec984e1e6ae

View File

@@ -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 =

View 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;

Binary file not shown.

View File

@@ -0,0 +1 @@
3da1f88240890d9d16dbfc39ce02c4fc031401aa990dc39920a189cc3b31341f

View 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

Binary file not shown.

View File

@@ -0,0 +1 @@
628d92e1dba9d0c9f0c90b765a6059124857bf06180c702b4bed329cc378bdd8

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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":{}}

View 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":{}}

View File

@@ -0,0 +1 @@
{"GlobalPropertiesHash":"Lm+W2bsk4EtTEUWaZeOpXu0o9TRcyd+6e7eXZaf1jGs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}

View File

@@ -0,0 +1 @@
{"Version":1,"Hash":"dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=","Source":"TestAPI","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}

View File

@@ -0,0 +1 @@
dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=

View 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")]

View 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 类生成。

View File

@@ -0,0 +1 @@
f2ecb3f10daaf89d0f7d0b2fb1cb64ddf4ad860c47a2eff0266c53efdda8aef8

View File

@@ -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 =

View 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;

Binary file not shown.

View File

@@ -0,0 +1 @@
37988d3dbf33c0fa1cafa90bf8bba30740f79efbbcd7a113a6ed9bdd5359b0d8

View File

@@ -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

Binary file not shown.

View File

@@ -0,0 +1 @@
f57a8cf8694167b042ff9962f7b030d4ebefe0294fbd8dea50cd7d25f566ccb0

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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":{}}

View 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":{}}

View File

@@ -0,0 +1 @@
{"GlobalPropertiesHash":"Lm+W2bsk4EtTEUWaZeOpXu0o9TRcyd+6e7eXZaf1jGs=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["v4\u002B8gfjYNLwYRltvI/ynHf/xiWV9W43UZfVX8ehx8rU=","v3PH5UrC4ZCIuN\u002BN/hGiE9mYoXo5A3ZQsilrNaHeFkE="],"CachedAssets":{},"CachedCopyCandidates":{}}

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}

View File

@@ -0,0 +1 @@
{"Version":1,"Hash":"dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=","Source":"TestAPI","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}

View File

@@ -0,0 +1 @@
dvyCl6SpxpcbB9gfCrZm9c7OjfvW1ONncgZDnnqW+gM=

View 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")]

View 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": ""
}
}
}

View 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
}
}
}

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Publish","Endpoints":[]}

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