Rough character selection screen + API
This commit is contained in:
+4
@@ -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,60 @@
|
||||
[
|
||||
{
|
||||
"ContainingType": "CharacterApi.Controllers.CharactersController",
|
||||
"Method": "Create",
|
||||
"RelativePath": "api/Characters",
|
||||
"HttpMethod": "POST",
|
||||
"IsController": true,
|
||||
"Order": 0,
|
||||
"Parameters": [
|
||||
{
|
||||
"Name": "req",
|
||||
"Type": "CharacterApi.Models.CreateCharacterRequest",
|
||||
"IsRequired": true
|
||||
}
|
||||
],
|
||||
"ReturnTypes": []
|
||||
},
|
||||
{
|
||||
"ContainingType": "CharacterApi.Controllers.CharactersController",
|
||||
"Method": "ListMine",
|
||||
"RelativePath": "api/Characters",
|
||||
"HttpMethod": "GET",
|
||||
"IsController": true,
|
||||
"Order": 0,
|
||||
"Parameters": [],
|
||||
"ReturnTypes": []
|
||||
},
|
||||
{
|
||||
"ContainingType": "CharacterApi.Controllers.CharactersController",
|
||||
"Method": "Delete",
|
||||
"RelativePath": "api/Characters/{id}",
|
||||
"HttpMethod": "DELETE",
|
||||
"IsController": true,
|
||||
"Order": 0,
|
||||
"Parameters": [
|
||||
{
|
||||
"Name": "id",
|
||||
"Type": "System.String",
|
||||
"IsRequired": true
|
||||
}
|
||||
],
|
||||
"ReturnTypes": []
|
||||
},
|
||||
{
|
||||
"ContainingType": "Program\u002B\u003C\u003Ec",
|
||||
"Method": "\u003C\u003CMain\u003E$\u003Eb__0_2",
|
||||
"RelativePath": "healthz",
|
||||
"HttpMethod": "GET",
|
||||
"IsController": false,
|
||||
"Order": 0,
|
||||
"Parameters": [],
|
||||
"ReturnTypes": [
|
||||
{
|
||||
"Type": "System.Void",
|
||||
"MediaTypes": [],
|
||||
"StatusCode": 200
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("CharacterApi")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9a56091e8e5e471606d25b9bf0f7f03190f6cbf5")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("CharacterApi")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("CharacterApi")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
736acde68afd39ec42a2863a993f02bc491b5716910f9449fe4e681a42ccb8ae
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.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 = CharacterApi
|
||||
build_property.RootNamespace = CharacterApi
|
||||
build_property.ProjectDir = Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
global using global::Microsoft.AspNetCore.Builder;
|
||||
global using global::Microsoft.AspNetCore.Hosting;
|
||||
global using global::Microsoft.AspNetCore.Http;
|
||||
global using global::Microsoft.AspNetCore.Routing;
|
||||
global using global::Microsoft.Extensions.Configuration;
|
||||
global using global::Microsoft.Extensions.DependencyInjection;
|
||||
global using global::Microsoft.Extensions.Hosting;
|
||||
global using global::Microsoft.Extensions.Logging;
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Net.Http.Json;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
Binary file not shown.
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
4dbe5d17eed9bfbc9647172be594e11403b677a5f5ae21b51e53f4a617972c88
|
||||
@@ -0,0 +1,47 @@
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\appsettings.Development.json
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\appsettings.json
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\CharacterApi.exe
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\CharacterApi.deps.json
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\CharacterApi.runtimeconfig.json
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\CharacterApi.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\CharacterApi.pdb
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\DnsClient.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Microsoft.OpenApi.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\MongoDB.Bson.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\MongoDB.Driver.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\SharpCompress.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Snappier.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\bin\Debug\net8.0\ZstdSharp.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.csproj.AssemblyReference.cache
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.GeneratedMSBuildEditorConfig.editorconfig
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.AssemblyInfoInputs.cache
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.AssemblyInfo.cs
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.csproj.CoreCompileInputs.cache
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.MvcApplicationPartsAssemblyInfo.cs
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.MvcApplicationPartsAssemblyInfo.cache
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\staticwebassets.build.json
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\staticwebassets.development.json
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\staticwebassets\msbuild.CharacterApi.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\staticwebassets\msbuild.build.CharacterApi.props
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.CharacterApi.props
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.CharacterApi.props
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\staticwebassets.pack.json
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\scopedcss\bundle\CharacterApi.styles.css
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\Characte.1AB449EF.Up2Date
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\refint\CharacterApi.dll
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.pdb
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\CharacterApi.genruntimeconfig.cache
|
||||
Z:\Godot\Godot_v4.5-stable_mono_win64\repos\promiscuity\microservices\CharacterApi\obj\Debug\net8.0\ref\CharacterApi.dll
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
ab18a460ea22152b966a680793230f7569c5df8c52ba6e3cc27d08a182958ce4
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"Hash": "TER9yF9iU/A3M5Fcj7G528kIYWxrH/7RQhOP2hmr0CI=",
|
||||
"Source": "CharacterApi",
|
||||
"BasePath": "_content/CharacterApi",
|
||||
"Mode": "Default",
|
||||
"ManifestType": "Build",
|
||||
"ReferencedProjectsConfiguration": [],
|
||||
"DiscoveryPatterns": [],
|
||||
"Assets": []
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||
</Project>
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\build\CharacterApi.props" />
|
||||
</Project>
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\buildMultiTargeting\CharacterApi.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
global using global::Microsoft.AspNetCore.Builder;
|
||||
global using global::Microsoft.AspNetCore.Hosting;
|
||||
global using global::Microsoft.AspNetCore.Http;
|
||||
global using global::Microsoft.AspNetCore.Routing;
|
||||
global using global::Microsoft.Extensions.Configuration;
|
||||
global using global::Microsoft.Extensions.DependencyInjection;
|
||||
global using global::Microsoft.Extensions.Hosting;
|
||||
global using global::Microsoft.Extensions.Logging;
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Net.Http.Json;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
Binary file not shown.
Reference in New Issue
Block a user