Added the files.
This commit is contained in:
commit
1553e6b971
315 changed files with 56809 additions and 0 deletions
35
.vscode/launch.json
vendored
Normal file
35
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
// Use IntelliSense to find out which attributes exist for C# debugging
|
||||
// Use hover for the description of the existing attributes
|
||||
// For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md.
|
||||
"name": ".NET Core Launch (web)",
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build",
|
||||
// If you have changed target frameworks, make sure to update the program path.
|
||||
"program": "${workspaceFolder}/bin/Debug/net8.0/TodoApi.dll",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"stopAtEntry": false,
|
||||
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
|
||||
"serverReadyAction": {
|
||||
"action": "openExternally",
|
||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
||||
},
|
||||
"env": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"sourceFileMap": {
|
||||
"/Views": "${workspaceFolder}/Views"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": ".NET Core Attach",
|
||||
"type": "coreclr",
|
||||
"request": "attach"
|
||||
}
|
||||
]
|
||||
}
|
41
.vscode/tasks.json
vendored
Normal file
41
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/TodoApi.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "publish",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"publish",
|
||||
"${workspaceFolder}/TodoApi.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary;ForceNoAlign"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "watch",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"watch",
|
||||
"run",
|
||||
"--project",
|
||||
"${workspaceFolder}/TodoApi.csproj"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
}
|
||||
]
|
||||
}
|
107
Controllers/TodoItemsController.cs
Executable file
107
Controllers/TodoItemsController.cs
Executable file
|
@ -0,0 +1,107 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using TodoApi.Models;
|
||||
|
||||
namespace TodoApi.Controllers
|
||||
{
|
||||
[Route("api/[controller]")]
|
||||
[ApiController]
|
||||
public class TodoItemsController : ControllerBase
|
||||
{
|
||||
private readonly TodoContext _context;
|
||||
|
||||
public TodoItemsController(TodoContext context)
|
||||
{
|
||||
_context = context;
|
||||
}
|
||||
|
||||
// GET: api/TodoItems
|
||||
[HttpGet]
|
||||
public async Task<ActionResult<IEnumerable<TodoItem>>> GetTodoItems()
|
||||
{
|
||||
return await _context.TodoItems.ToListAsync();
|
||||
}
|
||||
|
||||
// GET: api/TodoItems/5
|
||||
[HttpGet("{id}")]
|
||||
public async Task<ActionResult<TodoItem>> GetTodoItem(long id)
|
||||
{
|
||||
var todoItem = await _context.TodoItems.FindAsync(id);
|
||||
|
||||
if (todoItem == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return todoItem;
|
||||
}
|
||||
|
||||
// PUT: api/TodoItems/5
|
||||
// To protect from overposting attacks, see https://go.microsoft.com/fwlink/?linkid=2123754
|
||||
[HttpPut("{id}")]
|
||||
public async Task<IActionResult> PutTodoItem(long id, TodoItem todoItem)
|
||||
{
|
||||
if (id != todoItem.Id)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
|
||||
_context.Entry(todoItem).State = EntityState.Modified;
|
||||
|
||||
try
|
||||
{
|
||||
await _context.SaveChangesAsync();
|
||||
}
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
if (!TodoItemExists(id))
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
else
|
||||
{
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
return NoContent();
|
||||
}
|
||||
|
||||
// POST: api/TodoItems
|
||||
// To protect from overposting attacks, see https://go.microsoft.com/fwlink/?linkid=2123754
|
||||
[HttpPost]
|
||||
public async Task<ActionResult<TodoItem>> PostTodoItem(TodoItem todoItem)
|
||||
{
|
||||
_context.TodoItems.Add(todoItem);
|
||||
await _context.SaveChangesAsync();
|
||||
|
||||
return CreatedAtAction("GetTodoItem", new { id = todoItem.Id }, todoItem);
|
||||
}
|
||||
|
||||
// DELETE: api/TodoItems/5
|
||||
[HttpDelete("{id}")]
|
||||
public async Task<IActionResult> DeleteTodoItem(long id)
|
||||
{
|
||||
var todoItem = await _context.TodoItems.FindAsync(id);
|
||||
if (todoItem == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
_context.TodoItems.Remove(todoItem);
|
||||
await _context.SaveChangesAsync();
|
||||
|
||||
return NoContent();
|
||||
}
|
||||
|
||||
private bool TodoItemExists(long id)
|
||||
{
|
||||
return _context.TodoItems.Any(e => e.Id == id);
|
||||
}
|
||||
}
|
||||
}
|
13
Models/TodoContext.cs
Executable file
13
Models/TodoContext.cs
Executable file
|
@ -0,0 +1,13 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace TodoApi.Models;
|
||||
|
||||
public class TodoContext : DbContext
|
||||
{
|
||||
public TodoContext(DbContextOptions<TodoContext> options)
|
||||
: base(options)
|
||||
{
|
||||
}
|
||||
|
||||
public DbSet<TodoItem> TodoItems { get; set; } = null!;
|
||||
}
|
12
Models/TodoItem.cs
Executable file
12
Models/TodoItem.cs
Executable file
|
@ -0,0 +1,12 @@
|
|||
namespace TodoApi.Models;
|
||||
|
||||
public class TodoItem
|
||||
{
|
||||
public string? Author { get; set; }
|
||||
public string? AuthorId { get; set; }
|
||||
public long Id { get; set; }
|
||||
public string? Likes { get; set; }
|
||||
public string? Popularity { get; set; }
|
||||
public string? Reads { get; set; }
|
||||
public string[]? Tags { get; set; }
|
||||
}
|
26
Program.cs
Executable file
26
Program.cs
Executable file
|
@ -0,0 +1,26 @@
|
|||
using Microsoft.EntityFrameworkCore;
|
||||
using TodoApi.Models;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
builder.Services.AddControllers();
|
||||
builder.Services.AddDbContext<TodoContext>(opt =>
|
||||
opt.UseInMemoryDatabase("TodoList"));
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
if (builder.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseDeveloperExceptionPage();
|
||||
}
|
||||
|
||||
app.UseDefaultFiles();
|
||||
app.UseStaticFiles();
|
||||
|
||||
app.UseHttpsRedirection();
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
app.MapControllers();
|
||||
|
||||
app.Run();
|
38
Properties/launchSettings.json
Executable file
38
Properties/launchSettings.json
Executable file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:9436",
|
||||
"sslPort": 44385
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "http://localhost:5070",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "https://localhost:7085;http://localhost:5070",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
25
TodoApi.csproj
Executable file
25
TodoApi.csproj
Executable file
|
@ -0,0 +1,25 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<InvariantGlobalization>true</InvariantGlobalization>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.1">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.1" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.1" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.1">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.0" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
6
TodoApi.http
Executable file
6
TodoApi.http
Executable file
|
@ -0,0 +1,6 @@
|
|||
@TodoApi_HostAddress = http://localhost:5070
|
||||
|
||||
GET {{TodoApi_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
25
TodoApi.sln
Executable file
25
TodoApi.sln
Executable file
|
@ -0,0 +1,25 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.002.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TodoApi", "TodoApi.csproj", "{E0F02F24-09D8-4595-B3E6-76EE507D2BEF}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{E0F02F24-09D8-4595-B3E6-76EE507D2BEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E0F02F24-09D8-4595-B3E6-76EE507D2BEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E0F02F24-09D8-4595-B3E6-76EE507D2BEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E0F02F24-09D8-4595-B3E6-76EE507D2BEF}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {8E5E1A54-D5C4-4A17-9DA6-E6DB53C94781}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
8
appsettings.Development.json
Executable file
8
appsettings.Development.json
Executable file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
9
appsettings.json
Executable file
9
appsettings.json
Executable file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
BIN
bin/Debug/net8.0/Azure.Core.dll
Executable file
BIN
bin/Debug/net8.0/Azure.Core.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Azure.Identity.dll
Executable file
BIN
bin/Debug/net8.0/Azure.Identity.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Humanizer.dll
Executable file
BIN
bin/Debug/net8.0/Humanizer.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.AspNetCore.Razor.Language.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.AspNetCore.Razor.Language.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Build.Framework.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Build.Framework.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Build.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Build.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Elfie.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Elfie.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Features.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Features.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Razor.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Razor.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Data.SqlClient.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Data.SqlClient.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.DiaSymReader.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.DiaSymReader.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.InMemory.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.InMemory.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Identity.Client.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Identity.Client.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.NET.StringTools.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.NET.StringTools.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.OpenApi.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.OpenApi.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.SqlServer.Server.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.SqlServer.Server.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
Executable file
BIN
bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Mono.TextTemplating.dll
Executable file
BIN
bin/Debug/net8.0/Mono.TextTemplating.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Newtonsoft.Json.dll
Executable file
BIN
bin/Debug/net8.0/Newtonsoft.Json.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.Common.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.Common.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.Configuration.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.Configuration.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.DependencyResolver.Core.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.DependencyResolver.Core.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.Frameworks.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.Frameworks.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.LibraryModel.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.LibraryModel.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.Packaging.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.Packaging.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.ProjectModel.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.ProjectModel.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.Protocol.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.Protocol.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/NuGet.Versioning.dll
Executable file
BIN
bin/Debug/net8.0/NuGet.Versioning.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
Executable file
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Executable file
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Executable file
BIN
bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.CodeDom.dll
Executable file
BIN
bin/Debug/net8.0/System.CodeDom.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.AttributedModel.dll
Executable file
BIN
bin/Debug/net8.0/System.Composition.AttributedModel.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.Convention.dll
Executable file
BIN
bin/Debug/net8.0/System.Composition.Convention.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.Hosting.dll
Executable file
BIN
bin/Debug/net8.0/System.Composition.Hosting.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.Runtime.dll
Executable file
BIN
bin/Debug/net8.0/System.Composition.Runtime.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Composition.TypedParts.dll
Executable file
BIN
bin/Debug/net8.0/System.Composition.TypedParts.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll
Executable file
BIN
bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Drawing.Common.dll
Executable file
BIN
bin/Debug/net8.0/System.Drawing.Common.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
Executable file
BIN
bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Memory.Data.dll
Executable file
BIN
bin/Debug/net8.0/System.Memory.Data.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll
Executable file
BIN
bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Runtime.Caching.dll
Executable file
BIN
bin/Debug/net8.0/System.Runtime.Caching.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll
Executable file
BIN
bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Security.Permissions.dll
Executable file
BIN
bin/Debug/net8.0/System.Security.Permissions.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/System.Windows.Extensions.dll
Executable file
BIN
bin/Debug/net8.0/System.Windows.Extensions.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/TodoApi
Executable file
BIN
bin/Debug/net8.0/TodoApi
Executable file
Binary file not shown.
3079
bin/Debug/net8.0/TodoApi.deps.json
Executable file
3079
bin/Debug/net8.0/TodoApi.deps.json
Executable file
File diff suppressed because it is too large
Load diff
BIN
bin/Debug/net8.0/TodoApi.dll
Executable file
BIN
bin/Debug/net8.0/TodoApi.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/TodoApi.exe
Executable file
BIN
bin/Debug/net8.0/TodoApi.exe
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/TodoApi.pdb
Executable file
BIN
bin/Debug/net8.0/TodoApi.pdb
Executable file
Binary file not shown.
22
bin/Debug/net8.0/TodoApi.runtimeconfig.json
Executable file
22
bin/Debug/net8.0/TodoApi.runtimeconfig.json
Executable file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"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.Globalization.Invariant": true,
|
||||
"System.Globalization.PredefinedCulturesOnly": true,
|
||||
"System.Reflection.NullabilityInfoContext.IsSupported": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
1
bin/Debug/net8.0/TodoApi.staticwebassets.runtime.json
Normal file
1
bin/Debug/net8.0/TodoApi.staticwebassets.runtime.json
Normal file
|
@ -0,0 +1 @@
|
|||
{"ContentRoots":["/home/arctichawk1/Desktop/Technical-Assessment/Assessment/TodoApi/wwwroot/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"main-6RBWMYLE.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"main-6RBWMYLE.js"},"Patterns":null},"polyfills-RX4V3J3S.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"polyfills-RX4V3J3S.js"},"Patterns":null},"styles-5INURTSO.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"styles-5INURTSO.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
BIN
bin/Debug/net8.0/af/Humanizer.resources.dll
Executable file
BIN
bin/Debug/net8.0/af/Humanizer.resources.dll
Executable file
Binary file not shown.
8
bin/Debug/net8.0/appsettings.Development.json
Executable file
8
bin/Debug/net8.0/appsettings.Development.json
Executable file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
9
bin/Debug/net8.0/appsettings.json
Executable file
9
bin/Debug/net8.0/appsettings.json
Executable file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
BIN
bin/Debug/net8.0/ar/Humanizer.resources.dll
Executable file
BIN
bin/Debug/net8.0/ar/Humanizer.resources.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/az/Humanizer.resources.dll
Executable file
BIN
bin/Debug/net8.0/az/Humanizer.resources.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/bg/Humanizer.resources.dll
Executable file
BIN
bin/Debug/net8.0/bg/Humanizer.resources.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net8.0/bn-BD/Humanizer.resources.dll
Executable file
BIN
bin/Debug/net8.0/bn-BD/Humanizer.resources.dll
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue