diff --git a/Sources/BlazorApp/.vs/BlazorApp/v17/.suo b/Sources/BlazorApp/.vs/BlazorApp/v17/.suo index 543d274..522ca5b 100644 Binary files a/Sources/BlazorApp/.vs/BlazorApp/v17/.suo and b/Sources/BlazorApp/.vs/BlazorApp/v17/.suo differ diff --git a/Sources/BlazorApp/BlazorApp.sln b/Sources/BlazorApp/BlazorApp.sln index 5917ee8..5973cb2 100644 --- a/Sources/BlazorApp/BlazorApp.sln +++ b/Sources/BlazorApp/BlazorApp.sln @@ -5,7 +5,7 @@ VisualStudioVersion = 17.3.32929.385 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorApp", "BlazorApp\BlazorApp.csproj", "{F86AB906-298D-4275-BC1C-FFC1BB19DFFD}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Minecraft.Crafting.Api", "..\Minecraft.Crafting.Api\Minecraft.Crafting.Api.csproj", "{B90B4831-9749-4C1E-8F20-D6076A440E6B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Minecraft.Crafting.Api", "..\..\..\..\..\Downloads\Minecraft.Crafting.Api-5626d14b585890fe00fb9fd86ef287f4 (1)\Minecraft.Crafting.Api\Minecraft.Crafting.Api.csproj", "{618D1D3A-FC9D-4D7B-84A1-E85E4C53D9AB}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -17,10 +17,10 @@ Global {F86AB906-298D-4275-BC1C-FFC1BB19DFFD}.Debug|Any CPU.Build.0 = Debug|Any CPU {F86AB906-298D-4275-BC1C-FFC1BB19DFFD}.Release|Any CPU.ActiveCfg = Release|Any CPU {F86AB906-298D-4275-BC1C-FFC1BB19DFFD}.Release|Any CPU.Build.0 = Release|Any CPU - {B90B4831-9749-4C1E-8F20-D6076A440E6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B90B4831-9749-4C1E-8F20-D6076A440E6B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B90B4831-9749-4C1E-8F20-D6076A440E6B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B90B4831-9749-4C1E-8F20-D6076A440E6B}.Release|Any CPU.Build.0 = Release|Any CPU + {618D1D3A-FC9D-4D7B-84A1-E85E4C53D9AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {618D1D3A-FC9D-4D7B-84A1-E85E4C53D9AB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {618D1D3A-FC9D-4D7B-84A1-E85E4C53D9AB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {618D1D3A-FC9D-4D7B-84A1-E85E4C53D9AB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Sources/BlazorApp/BlazorApp/BlazorApp.csproj b/Sources/BlazorApp/BlazorApp/BlazorApp.csproj index 7dc1fda..58db655 100644 --- a/Sources/BlazorApp/BlazorApp/BlazorApp.csproj +++ b/Sources/BlazorApp/BlazorApp/BlazorApp.csproj @@ -24,7 +24,6 @@ - diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryAction.cs b/Sources/BlazorApp/BlazorApp/Components/InventoryAction.cs new file mode 100644 index 0000000..681ea9d --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryAction.cs @@ -0,0 +1,11 @@ +using BlazorApp.Models; + +namespace BlazorApp.Components +{ + public class InventoryAction + { + public string Action { get; set; } + public int Index { get; set; } + public Item Item { get; set; } + } +} diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor new file mode 100644 index 0000000..36718b5 --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor @@ -0,0 +1,76 @@ +@using BlazorApp.Models; + + + + + + + + + + + Inventory + + + + + + + + + + + + + + + + + + + + + + + + + + Available items: + + + + + + + + @if (!string.IsNullOrWhiteSpace(context.ImageBase64)) + { + + } + else + { + + } + + + + + + + + + + + Actions + + + + + + + \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.cs b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.cs new file mode 100644 index 0000000..ba45304 --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.cs @@ -0,0 +1,55 @@ +using BlazorApp.Models; +using BlazorApp.Services; +using Microsoft.AspNetCore.Components; +using Microsoft.JSInterop; +using System.Collections.ObjectModel; +using System.Collections.Specialized; + +namespace BlazorApp.Components +{ + public partial class InventoryComponent + { + [Inject] + public IDataService DataService { get; set; } + + private int totalItem; + + public Item CurrentDragItem { get; set; } + + [CascadingParameter] + public InventoryComponent Parent { get; set; } + public List RecipeItems { get; set; } + public List Items { get; set; } = new List(); + public ObservableCollection Actions { get; set; } + + [Inject] + internal IJSRuntime JavaScriptRuntime { get; set; } + + public InventoryComponent() + { + Actions = new ObservableCollection(); + Actions.CollectionChanged += OnActionsCollectionChanged; + this.RecipeItems = new List { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null }; + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + base.OnAfterRenderAsync(firstRender); + + if (!firstRender) + { + return; + } + + Items = await DataService.getAll(); + totalItem = await DataService.Count(); + + StateHasChanged(); + } + private void OnActionsCollectionChanged(object? sender, NotifyCollectionChangedEventArgs e) + { + JavaScriptRuntime.InvokeVoidAsync("Crafting.AddActions", e.NewItems); + } + + } +} diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.css b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.css new file mode 100644 index 0000000..d132796 --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.css @@ -0,0 +1,52 @@ +.css-grid { + grid-template-columns: repeat(1,minmax(0,1fr)); + gap: 10px; + display: grid; + width: 500px; +} +h1 { + margin: 5px 10px; + padding-inline-end: 300px; + font-family: 'VT323', monospace; + font-size: 24px; + color: #404040; +} +.content { + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} +.slotSpace { + margin: 10px 10px; + display: flex; + flex-wrap: wrap; +} + +.css-inv { + grid-template-columns: repeat(6,minmax(0,1fr)); + gap: 10px; + width: 410px; + background: #c6c6c6; + border-radius: 3px; + box-shadow: 5px 5px 0px #555555, inset 4px 4px 0px #fefefe; + padding-top: 5px; + padding-left: 5px; + margin-bottom: 10px; +} + +.actions { + border: 1px solid black; + height: 250px; + overflow: scroll; +} + +.body { + display: flex; + background: #ccc; + box-sizing: border-box; + width: 100%; + height: 80vh; +} diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.js b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.js new file mode 100644 index 0000000..e9dc10c --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor.js @@ -0,0 +1,16 @@ +window.Inventory = +{ + AddActions: function (data) { + + data.forEach(element => { + var div = document.createElement('div'); + div.innerHTML = 'Aaction: ' + element.action + ' - Index: ' + element.index; + + if (element.item) { + div.innerHTML += ' - Item Name: ' + element.item.name; + } + + document.getElementById('actions').appendChild(div); + }); + } +} \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor b/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor new file mode 100644 index 0000000..1e1470b --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor @@ -0,0 +1,14 @@ + + + @if (Item != null) + { + @Item.DisplayName + } + \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor.cs b/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor.cs new file mode 100644 index 0000000..f9c3497 --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor.cs @@ -0,0 +1,65 @@ +using BlazorApp.Models; +using BlazorApp.Pages; +using Blazorise; +using Microsoft.AspNetCore.Components; + +namespace BlazorApp.Components +{ + public partial class InventoryItem + { + [Parameter] + public int Index { get; set; } + + [Parameter] + public Item Item { get; set; } + + + + [Parameter] + public bool NoDrop { get; set; } + + [CascadingParameter] + public InventoryComponent Parent { get; set; } + + internal void OnDragEnter() + { + if (NoDrop) + { + return; + } + + Parent.Actions.Add(new InventoryAction { Action = "Drag Enter", Item = this.Item, Index = this.Index }); + } + + internal void OnDragLeave() + { + if (NoDrop) + { + return; + } + + Parent.Actions.Add(new InventoryAction { Action = "Drag Leave", Item = this.Item, Index = this.Index }); + } + + internal void OnDrop() + { + if (NoDrop) + { + return; + } + + this.Item = Parent.CurrentDragItem; + + + Parent.Actions.Add(new InventoryAction { Action = "Drop", Item = this.Item, Index = this.Index }); + + } + + private void OnDragStart() + { + Parent.CurrentDragItem = this.Item; + + Parent.Actions.Add(new InventoryAction { Action = "Drag Start", Item = this.Item, Index = this.Index }); + } + } +} diff --git a/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor.css b/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor.css new file mode 100644 index 0000000..e9f2861 --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor.css @@ -0,0 +1,10 @@ +.item { + width: 64px; + height: 64px; + border: 1px solid; + + display: flex; + justify-content: center; + background: #8b8b8b; + box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff; +} diff --git a/Sources/BlazorApp/BlazorApp/Components/ItemInInventory.cs b/Sources/BlazorApp/BlazorApp/Components/ItemInInventory.cs new file mode 100644 index 0000000..d13437b --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Components/ItemInInventory.cs @@ -0,0 +1,11 @@ +using BlazorApp.Models; + +namespace BlazorApp.Components +{ + public class ItemInInventory + { + public int Index { get; set; } + public Item? Item { get; set; } + + } +} \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/Models/ItemInventory.cs b/Sources/BlazorApp/BlazorApp/Models/ItemInventory.cs new file mode 100644 index 0000000..715cbb3 --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Models/ItemInventory.cs @@ -0,0 +1,6 @@ +namespace BlazorAppClean.Models +{ + public class ItemInventory + { + } +} diff --git a/Sources/BlazorApp/BlazorApp/Pages/Index.razor b/Sources/BlazorApp/BlazorApp/Pages/Index.razor index 812dbbd..d8a9cb3 100644 --- a/Sources/BlazorApp/BlazorApp/Pages/Index.razor +++ b/Sources/BlazorApp/BlazorApp/Pages/Index.razor @@ -1,24 +1,12 @@ @page "/" @using System.Globalization @using BlazorApp.Components - Index - -Hello, world! - -Welcome to your new app. - - - CurrentCulture: @CultureInfo.CurrentCulture +Hello, world! - - Content of my TestRenderFragment - - - - \ No newline at end of file + \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/Pages/Index.razor.cs b/Sources/BlazorApp/BlazorApp/Pages/Index.razor.cs index 15359e2..2cfcbf1 100644 --- a/Sources/BlazorApp/BlazorApp/Pages/Index.razor.cs +++ b/Sources/BlazorApp/BlazorApp/Pages/Index.razor.cs @@ -1,31 +1,34 @@ -namespace BlazorApp.Pages; + using BlazorApp.Components; using BlazorApp.Models; using BlazorApp.Services; using Microsoft.AspNetCore.Components; -public partial class Index +namespace BlazorApp.Pages { - [Inject] - public IDataService DataService { get; set; } - - public List Items { get; set; } = new List(); + public partial class Index + { + [Inject] + public IDataService DataService { get; set; } - private List Recipes { get; set; } = new List(); + public List Items { get; set; } = new List(); - protected override async Task OnAfterRenderAsync(bool firstRender) - { - base.OnAfterRenderAsync(firstRender); + private List Recipes { get; set; } = new List(); - if (!firstRender) + protected override async Task OnAfterRenderAsync(bool firstRender) { - return; - } + base.OnAfterRenderAsync(firstRender); + + if (!firstRender) + { + return; + } - Items = await DataService.List(0, await DataService.Count()); - Recipes = await DataService.GetRecipes(); + Items = await DataService.List(0, await DataService.Count()); + Recipes = await DataService.GetRecipes(); - StateHasChanged(); + StateHasChanged(); + } } -} \ No newline at end of file +} diff --git a/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor b/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor new file mode 100644 index 0000000..c808087 --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor @@ -0,0 +1,8 @@ +@page "/inventory" +@using System.Globalization +@using BlazorApp.Components +My Inventory + + + + diff --git a/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor.cs b/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor.cs new file mode 100644 index 0000000..62878ad --- /dev/null +++ b/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor.cs @@ -0,0 +1,31 @@ + + +using BlazorApp.Components; +using BlazorApp.Models; +using BlazorApp.Services; +using Microsoft.AspNetCore.Components; + +namespace BlazorApp.Pages +{ + public partial class Inventory + { + [Inject] + public IDataService DataService { get; set; } + + public List Items { get; set; } = new List(); + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + base.OnAfterRenderAsync(firstRender); + + if (!firstRender) + { + return; + } + + Items = await DataService.getAll(); + + StateHasChanged(); + } + } +} diff --git a/Sources/BlazorApp/BlazorApp/Services/DataApiService.cs b/Sources/BlazorApp/BlazorApp/Services/DataApiService.cs index 471de79..8882f50 100644 --- a/Sources/BlazorApp/BlazorApp/Services/DataApiService.cs +++ b/Sources/BlazorApp/BlazorApp/Services/DataApiService.cs @@ -54,5 +54,10 @@ namespace BlazorApp.Services { return await _http.GetFromJsonAsync>("https://localhost:7234/api/Crafting/recipe"); } + + public async Task> getAll() + { + return await _http.GetFromJsonAsync>($"https://codefirst.iut.uca.fr/containers/container-blazor-web-api-marcchevaldonne/api/Crafting/all"); + } } } diff --git a/Sources/BlazorApp/BlazorApp/Services/DataLocalService.cs b/Sources/BlazorApp/BlazorApp/Services/DataLocalService.cs index 281f0a8..eaee8b0 100644 --- a/Sources/BlazorApp/BlazorApp/Services/DataLocalService.cs +++ b/Sources/BlazorApp/BlazorApp/Services/DataLocalService.cs @@ -152,4 +152,9 @@ public class DataLocalService : IDataService return Task.FromResult(items); } + public async Task> getAll() + { + return await _http.GetFromJsonAsync>($"https://codefirst.iut.uca.fr/containers/container-blazor-web-api-marcchevaldonne/api/Crafting/all"); + } + } \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/Services/IDataService.cs b/Sources/BlazorApp/BlazorApp/Services/IDataService.cs index 8a9b667..159a3af 100644 --- a/Sources/BlazorApp/BlazorApp/Services/IDataService.cs +++ b/Sources/BlazorApp/BlazorApp/Services/IDataService.cs @@ -9,10 +9,13 @@ public interface IDataService Task Count(); Task> List(int currentPage, int pageSize); - Task GetById(int id); Task Update(int id, ItemModel model); + Task Delete(int id); + Task> GetRecipes(); + + Task> getAll(); } \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor b/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor index 15c6c22..bf25669 100644 --- a/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor +++ b/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor @@ -1,6 +1,6 @@ - BlazorApp + BlazorAppClean @@ -10,28 +10,28 @@ - - Home + + List - - Counter + + Home - - Fetch data + + Inventaire - - List + + Counter - - Episodes + + Fetch data diff --git a/Sources/BlazorApp/BlazorApp/_Imports.razor b/Sources/BlazorApp/BlazorApp/_Imports.razor index ebe5aa3..6e417c4 100644 --- a/Sources/BlazorApp/BlazorApp/_Imports.razor +++ b/Sources/BlazorApp/BlazorApp/_Imports.razor @@ -7,6 +7,7 @@ @using Microsoft.AspNetCore.Components.Web.Virtualization @using Microsoft.JSInterop @using BlazorApp + @using BlazorApp.Shared @using Blazorise.DataGrid @using Blazored.Modal diff --git a/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.dll b/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.dll index 0d295d2..1334daa 100644 Binary files a/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.dll and b/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.dll differ diff --git a/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.pdb b/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.pdb index abd0ad3..b0bc780 100644 Binary files a/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.pdb and b/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.pdb differ diff --git a/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.staticwebassets.runtime.json b/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.staticwebassets.runtime.json index f504a87..8a5cc93 100644 --- a/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.staticwebassets.runtime.json +++ b/Sources/BlazorApp/BlazorApp/bin/Debug/net6.0/BlazorApp.staticwebassets.runtime.json @@ -1 +1 @@ -{"ContentRoots":["C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\","C:\\Users\\delan\\.nuget\\packages\\blazorise\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.datagrid\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.bootstrap\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fake-data.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fake-data.json"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"bbb.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/bbb.png"},"Patterns":null},"default.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/default.png"},"Patterns":null},"lefel.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/lefel.png"},"Patterns":null}},"Asset":null,"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"Blazorise":{"Children":{"blazorise.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.css"},"Patterns":null},"blazorise.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.min.css"},"Patterns":null},"breakpoint.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"breakpoint.js"},"Patterns":null},"button.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"button.js"},"Patterns":null},"closable.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"closable.js"},"Patterns":null},"colorPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"colorPicker.js"},"Patterns":null},"datePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"datePicker.js"},"Patterns":null},"dragDrop.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dragDrop.js"},"Patterns":null},"dropdown.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dropdown.js"},"Patterns":null},"fileEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fileEdit.js"},"Patterns":null},"filePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"filePicker.js"},"Patterns":null},"inputMask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"inputMask.js"},"Patterns":null},"io.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"io.js"},"Patterns":null},"memoEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"memoEdit.js"},"Patterns":null},"numericPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"numericPicker.js"},"Patterns":null},"observer.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"observer.js"},"Patterns":null},"popper.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"popper.js"},"Patterns":null},"table.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"table.js"},"Patterns":null},"textEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"textEdit.js"},"Patterns":null},"theme.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"theme.js"},"Patterns":null},"timePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"timePicker.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tooltip.js"},"Patterns":null},"utilities.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"utilities.js"},"Patterns":null},"validators":{"Children":{"DateTimeMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/DateTimeMaskValidator.js"},"Patterns":null},"NoValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NoValidator.js"},"Patterns":null},"NumericMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NumericMaskValidator.js"},"Patterns":null},"RegExMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/RegExMaskValidator.js"},"Patterns":null}},"Asset":null,"Patterns":null},"vendors":{"Children":{"autoNumeric.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/autoNumeric.js"},"Patterns":null},"Behave.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Behave.js"},"Patterns":null},"flatpickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/flatpickr.js"},"Patterns":null},"inputmask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/inputmask.js"},"Patterns":null},"Pickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Pickr.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.DataGrid":{"Children":{"datagrid.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"datagrid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.Bootstrap":{"Children":{"blazorise.bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.css"},"Patterns":null},"blazorise.bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.min.css"},"Patterns":null},"modal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"modal.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tooltip.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazored.Modal":{"Children":{"BlazoredModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"BlazoredModal.razor.js"},"Patterns":null},"Blazored.Modal.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Blazored.Modal.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"BlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"BlazorApp.styles.css"},"Patterns":null},"Components":{"Children":{"Crafting.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Crafting.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\","C:\\Users\\delan\\.nuget\\packages\\blazorise\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.datagrid\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.bootstrap\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fake-data.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fake-data.json"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"bbb.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/bbb.png"},"Patterns":null},"default.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/default.png"},"Patterns":null},"lefel.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/lefel.png"},"Patterns":null}},"Asset":null,"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"Blazorise":{"Children":{"blazorise.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.css"},"Patterns":null},"blazorise.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.min.css"},"Patterns":null},"breakpoint.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"breakpoint.js"},"Patterns":null},"button.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"button.js"},"Patterns":null},"closable.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"closable.js"},"Patterns":null},"colorPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"colorPicker.js"},"Patterns":null},"datePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"datePicker.js"},"Patterns":null},"dragDrop.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dragDrop.js"},"Patterns":null},"dropdown.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dropdown.js"},"Patterns":null},"fileEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fileEdit.js"},"Patterns":null},"filePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"filePicker.js"},"Patterns":null},"inputMask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"inputMask.js"},"Patterns":null},"io.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"io.js"},"Patterns":null},"memoEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"memoEdit.js"},"Patterns":null},"numericPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"numericPicker.js"},"Patterns":null},"observer.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"observer.js"},"Patterns":null},"popper.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"popper.js"},"Patterns":null},"table.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"table.js"},"Patterns":null},"textEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"textEdit.js"},"Patterns":null},"theme.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"theme.js"},"Patterns":null},"timePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"timePicker.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tooltip.js"},"Patterns":null},"utilities.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"utilities.js"},"Patterns":null},"validators":{"Children":{"DateTimeMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/DateTimeMaskValidator.js"},"Patterns":null},"NoValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NoValidator.js"},"Patterns":null},"NumericMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NumericMaskValidator.js"},"Patterns":null},"RegExMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/RegExMaskValidator.js"},"Patterns":null}},"Asset":null,"Patterns":null},"vendors":{"Children":{"autoNumeric.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/autoNumeric.js"},"Patterns":null},"Behave.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Behave.js"},"Patterns":null},"flatpickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/flatpickr.js"},"Patterns":null},"inputmask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/inputmask.js"},"Patterns":null},"Pickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Pickr.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.DataGrid":{"Children":{"datagrid.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"datagrid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.Bootstrap":{"Children":{"blazorise.bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.css"},"Patterns":null},"blazorise.bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.min.css"},"Patterns":null},"modal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"modal.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tooltip.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazored.Modal":{"Children":{"BlazoredModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"BlazoredModal.razor.js"},"Patterns":null},"Blazored.Modal.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Blazored.Modal.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"BlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"BlazorApp.styles.css"},"Patterns":null},"Components":{"Children":{"Crafting.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Crafting.razor.js"},"Patterns":null},"InventoryComponent.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/InventoryComponent.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json b/Sources/BlazorApp/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json index 9129138..abd6922 100644 --- a/Sources/BlazorApp/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json +++ b/Sources/BlazorApp/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {} + "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {} }, "projects": { - "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": { + "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", + "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", "projectName": "BlazorApp", - "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", + "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", "packagesPath": "C:\\Users\\delan\\.nuget\\packages\\", - "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\", + "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config", diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig index c725b3f..0d6d2c2 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig @@ -8,77 +8,89 @@ build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = BlazorApp build_property.RootNamespace = BlazorApp -build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\ +build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\ build_property.RazorLangVersion = 6.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp +build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp build_property._RazorSourceGeneratorDebug = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/App.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/App.razor] build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor] build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Add.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Add.razor] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkLnJhem9y build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQmxhem9yUm91dGUucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Edit.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Edit.razor] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Index.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Index.razor] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/List.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW52ZW50b3J5LnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/List.razor] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor] build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEN1bHR1cmVTZWxlY3Rvci5yYXpvcg== build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor] build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFRhYmxlVGVtcGxhdGUucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/_Imports.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/_Imports.razor] build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Components/Crafting.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/Crafting.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZy5yYXpvcg== build_metadata.AdditionalFiles.CssScope = b-0c7vkjpwvp -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor] build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZ0l0ZW0ucmF6b3I= build_metadata.AdditionalFiles.CssScope = b-syyk20fth2 -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlDb21wb25lbnQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-hwopnmcvyc + +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlJdGVtLnJhem9y +build_metadata.AdditionalFiles.CssScope = b-qvaqnp1p6p + +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor] build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I= build_metadata.AdditionalFiles.CssScope = b-3dsd3z3yec -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor] build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I= build_metadata.AdditionalFiles.CssScope = b-7cxxmz0cwl -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s build_metadata.AdditionalFiles.CssScope = -[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml] +[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml] build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.assets.cache b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.assets.cache index a88f966..d0b0229 100644 Binary files a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.assets.cache and b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.assets.cache differ diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.CoreCompileInputs.cache b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.CoreCompileInputs.cache index c2c5a6f..33908da 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.CoreCompileInputs.cache +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -98971a0792c5a5dc01918a0ed182a9ef045d55d1 +5efcc892527fe2bcc530cc00312b29acb0d37372 diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.FileListAbsolute.txt b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.FileListAbsolute.txt index 65764e6..250ef7d 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.FileListAbsolute.txt +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.csproj.FileListAbsolute.txt @@ -198,3 +198,55 @@ C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\ob C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.AssemblyReference.cache +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.resources +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.fr-FR.resources +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.GenerateResource.cache +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfoInputs.cache +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfo.cs +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CoreCompileInputs.cache +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cache +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cs +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\refint\BlazorApp.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.Development.json +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.json +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.staticwebassets.runtime.json +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.exe +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.deps.json +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.runtimeconfig.json +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.pdb +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\fr-FR\BlazorApp.resources.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.LocalStorage.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.Modal.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Bootstrap.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.DataGrid.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\System.IO.Pipelines.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\fr-FR\BlazorApp.resources.dll +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.build.json +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.development.json +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\Crafting.razor.rz.scp.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\CraftingItem.razor.rz.scp.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryComponent.razor.rz.scp.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryItem.razor.rz.scp.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\bundle\BlazorApp.styles.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CopyComplete +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache +C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.dll b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.dll index 0d295d2..1334daa 100644 Binary files a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.dll and b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.dll differ diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.genruntimeconfig.cache b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.genruntimeconfig.cache index f2e6037..955b4e8 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.genruntimeconfig.cache +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.genruntimeconfig.cache @@ -1 +1 @@ -2fe5461b10f471cb885b7eb915b4e3582ee166ab +520817c999ebce68318a90e784f68124d73c7f62 diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.pdb b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.pdb index abd0ad3..b0bc780 100644 Binary files a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.pdb and b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/BlazorApp.pdb differ diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/ref/BlazorApp.dll b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/ref/BlazorApp.dll index 66497ca..c0bc202 100644 Binary files a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/ref/BlazorApp.dll and b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/ref/BlazorApp.dll differ diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/refint/BlazorApp.dll b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/refint/BlazorApp.dll index 66497ca..c0bc202 100644 Binary files a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/refint/BlazorApp.dll and b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/refint/BlazorApp.dll differ diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/bundle/BlazorApp.styles.css b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/bundle/BlazorApp.styles.css index a9e61da..f0cdadc 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/bundle/BlazorApp.styles.css +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/bundle/BlazorApp.styles.css @@ -28,6 +28,70 @@ overflow: hidden; display:inline; } +/* _content/BlazorApp/Components/InventoryComponent.razor.rz.scp.css */ +.css-grid[b-hwopnmcvyc] { + grid-template-columns: repeat(1,minmax(0,1fr)); + gap: 10px; + display: grid; + width: 500px; +} +h1[b-hwopnmcvyc] { + margin: 5px 10px; + padding-inline-end: 300px; + font-family: 'VT323', monospace; + font-size: 24px; + color: #404040; +} +.content[b-hwopnmcvyc] { + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} +.slotSpace[b-hwopnmcvyc] { + margin: 10px 10px; + display: flex; + flex-wrap: wrap; +} + +.css-inv[b-hwopnmcvyc] { + grid-template-columns: repeat(6,minmax(0,1fr)); + gap: 10px; + width: 410px; + background: #c6c6c6; + border-radius: 3px; + box-shadow: 5px 5px 0px #555555, inset 4px 4px 0px #fefefe; + padding-top: 5px; + padding-left: 5px; + margin-bottom: 10px; +} + +.actions[b-hwopnmcvyc] { + border: 1px solid black; + height: 250px; + overflow: scroll; +} + +.body[b-hwopnmcvyc] { + display: flex; + background: #ccc; + box-sizing: border-box; + width: 100%; + height: 80vh; +} +/* _content/BlazorApp/Components/InventoryItem.razor.rz.scp.css */ +.item[b-qvaqnp1p6p] { + width: 64px; + height: 64px; + border: 1px solid; + + display: flex; + justify-content: center; + background: #8b8b8b; + box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff; +} /* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */ .page[b-3dsd3z3yec] { position: relative; diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/projectbundle/BlazorApp.bundle.scp.css b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/projectbundle/BlazorApp.bundle.scp.css index 1be187e..e90aa6b 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/projectbundle/BlazorApp.bundle.scp.css +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/scopedcss/projectbundle/BlazorApp.bundle.scp.css @@ -26,6 +26,70 @@ overflow: hidden; display:inline; } +/* _content/BlazorApp/Components/InventoryComponent.razor.rz.scp.css */ +.css-grid[b-hwopnmcvyc] { + grid-template-columns: repeat(1,minmax(0,1fr)); + gap: 10px; + display: grid; + width: 500px; +} +h1[b-hwopnmcvyc] { + margin: 5px 10px; + padding-inline-end: 300px; + font-family: 'VT323', monospace; + font-size: 24px; + color: #404040; +} +.content[b-hwopnmcvyc] { + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} +.slotSpace[b-hwopnmcvyc] { + margin: 10px 10px; + display: flex; + flex-wrap: wrap; +} + +.css-inv[b-hwopnmcvyc] { + grid-template-columns: repeat(6,minmax(0,1fr)); + gap: 10px; + width: 410px; + background: #c6c6c6; + border-radius: 3px; + box-shadow: 5px 5px 0px #555555, inset 4px 4px 0px #fefefe; + padding-top: 5px; + padding-left: 5px; + margin-bottom: 10px; +} + +.actions[b-hwopnmcvyc] { + border: 1px solid black; + height: 250px; + overflow: scroll; +} + +.body[b-hwopnmcvyc] { + display: flex; + background: #ccc; + box-sizing: border-box; + width: 100%; + height: 80vh; +} +/* _content/BlazorApp/Components/InventoryItem.razor.rz.scp.css */ +.item[b-qvaqnp1p6p] { + width: 64px; + height: 64px; + border: 1px solid; + + display: flex; + justify-content: center; + background: #8b8b8b; + box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff; +} /* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */ .page[b-3dsd3z3yec] { position: relative; diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.build.json b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.build.json index 643f441..c85e219 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.build.json +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.build.json @@ -1,6 +1,6 @@ { "Version": 1, - "Hash": "bNQTdB3DWu/47GrSzzPIbvDtrS9JJXxVeRhmPTtYCPM=", + "Hash": "GRZ3O/wlvOucXPJPCh/3d2YvQEOrV5pvB6CVgXyGfcI=", "Source": "BlazorApp", "BasePath": "_content/BlazorApp", "Mode": "Default", @@ -10,7 +10,7 @@ { "Name": "BlazorApp\\wwwroot", "Source": "BlazorApp", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "Pattern": "**" } @@ -680,10 +680,10 @@ "OriginalItemSpec": "C:\\Users\\delan\\.nuget\\packages\\blazorise\\1.1.3.1\\staticwebassets\\vendors\\Pickr.js" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\", "BasePath": "_content/BlazorApp", "RelativePath": "Components/Crafting.razor.js", "AssetKind": "All", @@ -697,10 +697,27 @@ "OriginalItemSpec": "Components\\Crafting.razor.js" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\Components\\InventoryComponent.razor.js", + "SourceId": "BlazorApp", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\", + "BasePath": "_content/BlazorApp", + "RelativePath": "Components/InventoryComponent.razor.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "Components\\InventoryComponent.razor.js" + }, + { + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css", "SourceId": "BlazorApp", "SourceType": "Computed", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\", "BasePath": "_content/BlazorApp", "RelativePath": "BlazorApp.styles.css", "AssetKind": "All", @@ -711,13 +728,13 @@ "AssetTraitValue": "ApplicationBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css" + "OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css", "SourceId": "BlazorApp", "SourceType": "Computed", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\", "BasePath": "_content/BlazorApp", "RelativePath": "BlazorApp.bundle.scp.css", "AssetKind": "All", @@ -728,13 +745,13 @@ "AssetTraitValue": "ProjectBundle", "CopyToOutputDirectory": "Never", "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css" + "OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/bootstrap/bootstrap.min.css", "AssetKind": "All", @@ -748,10 +765,10 @@ "OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/bootstrap/bootstrap.min.css.map", "AssetKind": "All", @@ -765,10 +782,10 @@ "OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css.map" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", "AssetKind": "All", @@ -782,10 +799,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/font/fonts/open-iconic.eot", "AssetKind": "All", @@ -799,10 +816,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/font/fonts/open-iconic.otf", "AssetKind": "All", @@ -816,10 +833,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/font/fonts/open-iconic.svg", "AssetKind": "All", @@ -833,10 +850,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/font/fonts/open-iconic.ttf", "AssetKind": "All", @@ -850,10 +867,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/font/fonts/open-iconic.woff", "AssetKind": "All", @@ -867,10 +884,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/FONT-LICENSE", "AssetKind": "All", @@ -884,10 +901,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\FONT-LICENSE" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/ICON-LICENSE", "AssetKind": "All", @@ -901,10 +918,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\ICON-LICENSE" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/open-iconic/README.md", "AssetKind": "All", @@ -918,10 +935,10 @@ "OriginalItemSpec": "wwwroot\\css\\open-iconic\\README.md" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "css/site.css", "AssetKind": "All", @@ -935,10 +952,10 @@ "OriginalItemSpec": "wwwroot\\css\\site.css" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "fake-data.json", "AssetKind": "All", @@ -952,10 +969,10 @@ "OriginalItemSpec": "wwwroot\\fake-data.json" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "favicon.ico", "AssetKind": "All", @@ -969,10 +986,10 @@ "OriginalItemSpec": "wwwroot\\favicon.ico" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "images/bbb.png", "AssetKind": "All", @@ -986,10 +1003,10 @@ "OriginalItemSpec": "wwwroot\\images\\bbb.png" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "images/default.png", "AssetKind": "All", @@ -1003,10 +1020,10 @@ "OriginalItemSpec": "wwwroot\\images\\default.png" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "images/lefel.png", "AssetKind": "All", @@ -1020,10 +1037,10 @@ "OriginalItemSpec": "wwwroot\\images\\lefel.png" }, { - "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html", + "Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html", "SourceId": "BlazorApp", "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", + "ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\", "BasePath": "_content/BlazorApp", "RelativePath": "index.html", "AssetKind": "All", diff --git a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.development.json b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.development.json index f504a87..8a5cc93 100644 --- a/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.development.json +++ b/Sources/BlazorApp/BlazorApp/obj/Debug/net6.0/staticwebassets.development.json @@ -1 +1 @@ -{"ContentRoots":["C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\","C:\\Users\\delan\\.nuget\\packages\\blazorise\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.datagrid\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.bootstrap\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fake-data.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fake-data.json"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"bbb.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/bbb.png"},"Patterns":null},"default.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/default.png"},"Patterns":null},"lefel.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/lefel.png"},"Patterns":null}},"Asset":null,"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"Blazorise":{"Children":{"blazorise.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.css"},"Patterns":null},"blazorise.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.min.css"},"Patterns":null},"breakpoint.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"breakpoint.js"},"Patterns":null},"button.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"button.js"},"Patterns":null},"closable.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"closable.js"},"Patterns":null},"colorPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"colorPicker.js"},"Patterns":null},"datePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"datePicker.js"},"Patterns":null},"dragDrop.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dragDrop.js"},"Patterns":null},"dropdown.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dropdown.js"},"Patterns":null},"fileEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fileEdit.js"},"Patterns":null},"filePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"filePicker.js"},"Patterns":null},"inputMask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"inputMask.js"},"Patterns":null},"io.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"io.js"},"Patterns":null},"memoEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"memoEdit.js"},"Patterns":null},"numericPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"numericPicker.js"},"Patterns":null},"observer.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"observer.js"},"Patterns":null},"popper.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"popper.js"},"Patterns":null},"table.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"table.js"},"Patterns":null},"textEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"textEdit.js"},"Patterns":null},"theme.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"theme.js"},"Patterns":null},"timePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"timePicker.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tooltip.js"},"Patterns":null},"utilities.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"utilities.js"},"Patterns":null},"validators":{"Children":{"DateTimeMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/DateTimeMaskValidator.js"},"Patterns":null},"NoValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NoValidator.js"},"Patterns":null},"NumericMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NumericMaskValidator.js"},"Patterns":null},"RegExMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/RegExMaskValidator.js"},"Patterns":null}},"Asset":null,"Patterns":null},"vendors":{"Children":{"autoNumeric.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/autoNumeric.js"},"Patterns":null},"Behave.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Behave.js"},"Patterns":null},"flatpickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/flatpickr.js"},"Patterns":null},"inputmask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/inputmask.js"},"Patterns":null},"Pickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Pickr.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.DataGrid":{"Children":{"datagrid.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"datagrid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.Bootstrap":{"Children":{"blazorise.bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.css"},"Patterns":null},"blazorise.bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.min.css"},"Patterns":null},"modal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"modal.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tooltip.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazored.Modal":{"Children":{"BlazoredModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"BlazoredModal.razor.js"},"Patterns":null},"Blazored.Modal.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Blazored.Modal.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"BlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"BlazorApp.styles.css"},"Patterns":null},"Components":{"Children":{"Crafting.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Crafting.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\","C:\\Users\\delan\\.nuget\\packages\\blazorise\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.datagrid\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazorise.bootstrap\\1.1.3.1\\staticwebassets\\","C:\\Users\\delan\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\","C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fake-data.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fake-data.json"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"bbb.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/bbb.png"},"Patterns":null},"default.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/default.png"},"Patterns":null},"lefel.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/lefel.png"},"Patterns":null}},"Asset":null,"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"_content":{"Children":{"Blazorise":{"Children":{"blazorise.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.css"},"Patterns":null},"blazorise.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"blazorise.min.css"},"Patterns":null},"breakpoint.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"breakpoint.js"},"Patterns":null},"button.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"button.js"},"Patterns":null},"closable.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"closable.js"},"Patterns":null},"colorPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"colorPicker.js"},"Patterns":null},"datePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"datePicker.js"},"Patterns":null},"dragDrop.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dragDrop.js"},"Patterns":null},"dropdown.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dropdown.js"},"Patterns":null},"fileEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fileEdit.js"},"Patterns":null},"filePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"filePicker.js"},"Patterns":null},"inputMask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"inputMask.js"},"Patterns":null},"io.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"io.js"},"Patterns":null},"memoEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"memoEdit.js"},"Patterns":null},"numericPicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"numericPicker.js"},"Patterns":null},"observer.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"observer.js"},"Patterns":null},"popper.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"popper.js"},"Patterns":null},"table.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"table.js"},"Patterns":null},"textEdit.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"textEdit.js"},"Patterns":null},"theme.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"theme.js"},"Patterns":null},"timePicker.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"timePicker.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tooltip.js"},"Patterns":null},"utilities.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"utilities.js"},"Patterns":null},"validators":{"Children":{"DateTimeMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/DateTimeMaskValidator.js"},"Patterns":null},"NoValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NoValidator.js"},"Patterns":null},"NumericMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/NumericMaskValidator.js"},"Patterns":null},"RegExMaskValidator.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"validators/RegExMaskValidator.js"},"Patterns":null}},"Asset":null,"Patterns":null},"vendors":{"Children":{"autoNumeric.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/autoNumeric.js"},"Patterns":null},"Behave.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Behave.js"},"Patterns":null},"flatpickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/flatpickr.js"},"Patterns":null},"inputmask.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/inputmask.js"},"Patterns":null},"Pickr.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vendors/Pickr.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.DataGrid":{"Children":{"datagrid.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"datagrid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazorise.Bootstrap":{"Children":{"blazorise.bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.css"},"Patterns":null},"blazorise.bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazorise.bootstrap.min.css"},"Patterns":null},"modal.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"modal.js"},"Patterns":null},"tooltip.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"tooltip.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazored.Modal":{"Children":{"BlazoredModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"BlazoredModal.razor.js"},"Patterns":null},"Blazored.Modal.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Blazored.Modal.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"BlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"BlazorApp.styles.css"},"Patterns":null},"Components":{"Children":{"Crafting.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Crafting.razor.js"},"Patterns":null},"InventoryComponent.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/InventoryComponent.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Sources/BlazorApp/BlazorApp/obj/project.assets.json b/Sources/BlazorApp/BlazorApp/obj/project.assets.json index fcd8115..6a85234 100644 --- a/Sources/BlazorApp/BlazorApp/obj/project.assets.json +++ b/Sources/BlazorApp/BlazorApp/obj/project.assets.json @@ -851,11 +851,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", + "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", "projectName": "BlazorApp", - "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", + "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", "packagesPath": "C:\\Users\\delan\\.nuget\\packages\\", - "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\", + "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config", diff --git a/Sources/BlazorApp/BlazorApp/obj/project.nuget.cache b/Sources/BlazorApp/BlazorApp/obj/project.nuget.cache index 1d1d59d..271c325 100644 --- a/Sources/BlazorApp/BlazorApp/obj/project.nuget.cache +++ b/Sources/BlazorApp/BlazorApp/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "Vdh0sgl/GbWQTg33McLQpbe85S9IHQoQxrCJxshzEQsivcNGk1wYktrp6SnwuTPMLGNlWqChEDPytlrdPUc7VA==", + "dgSpecHash": "T9P77CF8YZ9iyLRsQv9OYXhwlODkBsWig0HQuMZ9jlh4wTAYhaddMPoZ+rUcLt2exwqg0ZIm+SFWI7450vSzrw==", "success": true, - "projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", + "projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj", "expectedPackageFiles": [ "C:\\Users\\delan\\.nuget\\packages\\blazored.localstorage\\4.3.0\\blazored.localstorage.4.3.0.nupkg.sha512", "C:\\Users\\delan\\.nuget\\packages\\blazored.modal\\7.1.0\\blazored.modal.7.1.0.nupkg.sha512", diff --git a/Sources/BlazorApp/BlazorApp/obj/staticwebassets.pack.sentinel b/Sources/BlazorApp/BlazorApp/obj/staticwebassets.pack.sentinel index f4ef74d..7d20e95 100644 --- a/Sources/BlazorApp/BlazorApp/obj/staticwebassets.pack.sentinel +++ b/Sources/BlazorApp/BlazorApp/obj/staticwebassets.pack.sentinel @@ -29,3 +29,7 @@ 2.0 2.0 2.0 +2.0 +2.0 +2.0 +2.0 diff --git a/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.GeneratedMSBuildEditorConfig.editorconfig b/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.GeneratedMSBuildEditorConfig.editorconfig index 8bd6dec..6a0f3cb 100644 --- a/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.GeneratedMSBuildEditorConfig.editorconfig +++ b/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.GeneratedMSBuildEditorConfig.editorconfig @@ -8,9 +8,9 @@ build_property.PlatformNeutralAssembly = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Minecraft.Crafting.Api build_property.RootNamespace = Minecraft.Crafting.Api -build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\Minecraft.Crafting.Api\ +build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\Minecraft.Crafting.Api\ build_property.RazorLangVersion = 6.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\Minecraft.Crafting.Api +build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\Minecraft.Crafting.Api build_property._RazorSourceGeneratorDebug = diff --git a/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.assets.cache b/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.assets.cache index 7e86ac1..10afb8e 100644 Binary files a/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.assets.cache and b/Sources/Minecraft.Crafting.Api/obj/Debug/net6.0/Minecraft.Crafting.Api.assets.cache differ diff --git a/Sources/Minecraft.Crafting.Api/obj/Minecraft.Crafting.Api.csproj.nuget.dgspec.json b/Sources/Minecraft.Crafting.Api/obj/Minecraft.Crafting.Api.csproj.nuget.dgspec.json index 780f23e..b03979c 100644 --- a/Sources/Minecraft.Crafting.Api/obj/Minecraft.Crafting.Api.csproj.nuget.dgspec.json +++ b/Sources/Minecraft.Crafting.Api/obj/Minecraft.Crafting.Api.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {} + "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {} }, "projects": { - "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": { + "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", + "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", "projectName": "Minecraft.Crafting.Api", - "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", + "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", "packagesPath": "C:\\Users\\delan\\.nuget\\packages\\", - "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\obj\\", + "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config", diff --git a/Sources/Minecraft.Crafting.Api/obj/project.assets.json b/Sources/Minecraft.Crafting.Api/obj/project.assets.json index cc32efc..7b66591 100644 --- a/Sources/Minecraft.Crafting.Api/obj/project.assets.json +++ b/Sources/Minecraft.Crafting.Api/obj/project.assets.json @@ -358,11 +358,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", + "projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", "projectName": "Minecraft.Crafting.Api", - "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", + "projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", "packagesPath": "C:\\Users\\delan\\.nuget\\packages\\", - "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\obj\\", + "outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config", diff --git a/Sources/Minecraft.Crafting.Api/obj/project.nuget.cache b/Sources/Minecraft.Crafting.Api/obj/project.nuget.cache index a366b20..4104c92 100644 --- a/Sources/Minecraft.Crafting.Api/obj/project.nuget.cache +++ b/Sources/Minecraft.Crafting.Api/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "dIR3HLI8rJhyZPaqt07qik7cDgKs0H4qdXDllhbTiSb8SznM4as3pCwTpJeQQddBILjWDwA6Jglla7JdpbhA/Q==", + "dgSpecHash": "3yrEsMFi+j0jdEEZ7+Op8IZV4R38B+xchDtw/ks5zoK1RUNxaRAZDJLzrpyrSHArTWs824F4ygP4T17DCPTWxg==", "success": true, - "projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", + "projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj", "expectedPackageFiles": [ "C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", "C:\\Users\\delan\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
CurrentCulture: @CultureInfo.CurrentCulture