diff --git a/Minecraft.Crafting.Api/Properties/launchSettings.json b/Minecraft.Crafting.Api/Properties/launchSettings.json index 53872a0..a72705a 100644 --- a/Minecraft.Crafting.Api/Properties/launchSettings.json +++ b/Minecraft.Crafting.Api/Properties/launchSettings.json @@ -1,14 +1,22 @@ { + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51530", + "sslPort": 44598 + } + }, "profiles": { "Minecraft.Crafting.Api": { "commandName": "Project", "launchBrowser": true, "launchUrl": "swagger", + "applicationUrl": "https://localhost:7234;http://localhost:5234", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "dotnetRunMessages": true, - "applicationUrl": "https://localhost:7234;http://localhost:5234" + } }, "IIS Express": { "commandName": "IISExpress", @@ -22,17 +30,7 @@ "commandName": "Docker", "launchBrowser": true, "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger", - "publishAllPorts": true, - "useSSL": true - } - }, - "$schema": "https://json.schemastore.org/launchsettings.json", - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:51530", - "sslPort": 44598 + "environmentVariables": {} } } } \ No newline at end of file diff --git a/TP Blazor/Pages/List.razor b/TP Blazor/Pages/List.razor index f1f1907..5302e38 100644 --- a/TP Blazor/Pages/List.razor +++ b/TP Blazor/Pages/List.razor @@ -3,37 +3,7 @@

@Localizer["Title"]

-@*@if (items!=null) - { - - - - - - - - - - - - - - @foreach (var item in items) - { - - - - - - - - - - } - -
IdDisplay NameStack SizeMaximum DurabilityEnchant CategoriesRepair WithCreated Date
@item.Id@item.DisplayName@item.StackSize@item.MaxDurability@(string.Join(", ", item.EnchantCategories))@(string.Join(", ", item.RepairWith))@item.CreatedDate.ToShortDateString()
- }*@