feat(console): create console backend project structure
This commit is contained in:
parent
ee48b93fae
commit
d4d87eccde
101
docs/task-12-create-console-project.md
Normal file
101
docs/task-12-create-console-project.md
Normal file
@ -0,0 +1,101 @@
|
||||
# Task 12: Create Fengling.Console Project Structure
|
||||
|
||||
## Task Description
|
||||
|
||||
**Files:**
|
||||
- Create: `src/Fengling.Console/Fengling.Console.csproj`
|
||||
- Create: `src/Fengling.Console/Program.cs`
|
||||
- Create: `src/Fengling.Console/appsettings.json`
|
||||
|
||||
## Implementation Steps
|
||||
|
||||
### Step 1: Create project
|
||||
|
||||
Run:
|
||||
```bash
|
||||
cd /Users/movingsam/Fengling.Refactory.Buiding/src
|
||||
dotnet new webapi -n Fengling.Console -o Fengling.Console
|
||||
```
|
||||
|
||||
### Step 2: Update project file with dependencies
|
||||
|
||||
Edit: `src/Fengling.Console/Fengling.Console.csproj`
|
||||
|
||||
```xml
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.1" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.0.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.2">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
|
||||
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
||||
<PackageReference Include="OpenTelemetry" Version="1.11.0" />
|
||||
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.11.0" />
|
||||
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.11.0" />
|
||||
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.11.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.2" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
```
|
||||
|
||||
### Step 3: Create appsettings.json
|
||||
|
||||
Edit: `src/Fengling.Console/appsettings.json`
|
||||
|
||||
```json
|
||||
{
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Host=192.168.100.10;Port=5432;Database=fengling_gateway;Username=movingsam;Password=sl52788542"
|
||||
},
|
||||
"AuthService": {
|
||||
"BaseUrl": "http://auth.fengling.local",
|
||||
"ClientId": "fengling-console",
|
||||
"ClientSecret": "console-secret-change-in-production"
|
||||
},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
```
|
||||
|
||||
### Step 4: Commit
|
||||
|
||||
```bash
|
||||
git add src/Fengling.Console/
|
||||
git commit -m "feat(console): create console backend project structure"
|
||||
```
|
||||
|
||||
## Context
|
||||
|
||||
This task creates the Fengling.Console backend project. This will be a unified management API that includes gateway management, OAuth client management, and user management proxy.
|
||||
|
||||
**Tech Stack**: .NET 10.0, EF Core 10.0, PostgreSQL, Serilog, OpenTelemetry
|
||||
|
||||
## Verification
|
||||
|
||||
- [ ] Project created with webapi template
|
||||
- [ ] Target framework set to net10.0
|
||||
- [ ] All packages added
|
||||
- [ ] appsettings.json configured
|
||||
- [ ] Build succeeds
|
||||
- [ ] Committed to git
|
||||
|
||||
## Notes
|
||||
|
||||
- Shares database with YarpGateway
|
||||
- Communicates with AuthService via OAuth2
|
||||
- Will contain migrated gateway management APIs
|
||||
25
src/Fengling.Console/Fengling.Console.csproj
Normal file
25
src/Fengling.Console/Fengling.Console.csproj
Normal file
@ -0,0 +1,25 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.1" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.0.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.2">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
|
||||
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
||||
<PackageReference Include="OpenTelemetry" Version="1.11.0" />
|
||||
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.11.0" />
|
||||
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.11.0" />
|
||||
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.11.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
6
src/Fengling.Console/Fengling.Console.http
Normal file
6
src/Fengling.Console/Fengling.Console.http
Normal file
@ -0,0 +1,6 @@
|
||||
@Fengling.Console_HostAddress = http://localhost:5234
|
||||
|
||||
GET {{Fengling.Console_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
||||
41
src/Fengling.Console/Program.cs
Normal file
41
src/Fengling.Console/Program.cs
Normal file
@ -0,0 +1,41 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
|
||||
builder.Services.AddOpenApi();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (app.Environment.IsDevelopment())
|
||||
{
|
||||
app.MapOpenApi();
|
||||
}
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
|
||||
var summaries = new[]
|
||||
{
|
||||
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
|
||||
};
|
||||
|
||||
app.MapGet("/weatherforecast", () =>
|
||||
{
|
||||
var forecast = Enumerable.Range(1, 5).Select(index =>
|
||||
new WeatherForecast
|
||||
(
|
||||
DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
||||
Random.Shared.Next(-20, 55),
|
||||
summaries[Random.Shared.Next(summaries.Length)]
|
||||
))
|
||||
.ToArray();
|
||||
return forecast;
|
||||
})
|
||||
.WithName("GetWeatherForecast");
|
||||
|
||||
app.Run();
|
||||
|
||||
record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary)
|
||||
{
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
}
|
||||
23
src/Fengling.Console/Properties/launchSettings.json
Normal file
23
src/Fengling.Console/Properties/launchSettings.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": false,
|
||||
"applicationUrl": "http://localhost:5234",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": false,
|
||||
"applicationUrl": "https://localhost:7048;http://localhost:5234",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
src/Fengling.Console/appsettings.Development.json
Normal file
8
src/Fengling.Console/appsettings.Development.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
17
src/Fengling.Console/appsettings.json
Normal file
17
src/Fengling.Console/appsettings.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Host=192.168.100.10;Port=5432;Database=fengling_gateway;Username=movingsam;Password=sl52788542"
|
||||
},
|
||||
"AuthService": {
|
||||
"BaseUrl": "http://auth.fengling.local",
|
||||
"ClientId": "fengling-console",
|
||||
"ClientSecret": "console-secret-change-in-production"
|
||||
},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console
Executable file
Binary file not shown.
1034
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console.deps.json
Normal file
1034
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console.dll
Normal file
BIN
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console.dll
Normal file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console.pdb
Normal file
BIN
src/Fengling.Console/bin/Debug/net10.0/Fengling.Console.pdb
Normal file
Binary file not shown.
@ -0,0 +1,20 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net10.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "10.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "10.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Reflection.NullabilityInfoContext.IsSupported": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
BIN
src/Fengling.Console/bin/Debug/net10.0/Humanizer.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Humanizer.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.Build.Framework.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.Build.Framework.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.OpenApi.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Microsoft.OpenApi.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Mono.TextTemplating.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Mono.TextTemplating.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Newtonsoft.Json.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Newtonsoft.Json.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Npgsql.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Npgsql.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/OpenTelemetry.Api.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/OpenTelemetry.Api.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/OpenTelemetry.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/OpenTelemetry.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.AspNetCore.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.AspNetCore.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Extensions.Logging.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Extensions.Logging.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Formatting.Compact.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Formatting.Compact.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Settings.Configuration.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Settings.Configuration.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Sinks.Console.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Sinks.Console.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Sinks.Debug.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Sinks.Debug.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Sinks.File.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.Sinks.File.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Serilog.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/System.CodeDom.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/System.CodeDom.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.AttributedModel.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.AttributedModel.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.Convention.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.Convention.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.Hosting.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.Hosting.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.Runtime.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.Runtime.dll
Executable file
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.TypedParts.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/System.Composition.TypedParts.dll
Executable file
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
17
src/Fengling.Console/bin/Debug/net10.0/appsettings.json
Normal file
17
src/Fengling.Console/bin/Debug/net10.0/appsettings.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Host=192.168.100.10;Port=5432;Database=fengling_gateway;Username=movingsam;Password=sl52788542"
|
||||
},
|
||||
"AuthService": {
|
||||
"BaseUrl": "http://auth.fengling.local",
|
||||
"ClientId": "fengling-console",
|
||||
"ClientSecret": "console-secret-change-in-production"
|
||||
},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/Fengling.Console/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll
Executable file
BIN
src/Fengling.Console/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll
Executable file
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user