Compare commits

..

20 Commits

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

@ -1,5 +1,25 @@
# minecraft_compagnon
# Projet création inventaire Minecraft en Blazor
Projet de 2ème année en Blazor, le sujet est disponible en cliquant [ici](https://codefirst.iut.uca.fr/documentation/julien.riboulet/docusaurus/Blazor/your-next-steps/).
Projet dont l'énoncé est disponible sur le lien suivant: https://codefirst.iut.uca.fr/documentation/julien.riboulet/docusaurus/Blazor/fr/your-next-steps/
## Tuto pour lancer le projet
Le projet est disponible sur la branche principale.
Afin de pouvoir utiliser notre solution il vous faudra une fois cloner parametrer le lancement de notre projet et de l'api.
Pour ce faire:
1. Cliquez droit sur la solution 'BlazorApp'
2. Proriétés
![Image clique droit](/Documentation/settingsProject.png)
3. Il vous faut maintenant définir l'action des 2 solutions sur 'Démarrage'
![Image menu propriétés](/Documentation/Settings.png)
5. Pour finir démarrer le porjet avec le bouton 'Démarrer'
![Image démarrage](/Documentation/StartBar.png)
Ce projet est réalisé par Lucas Delanier et Félix Mielcarek.

@ -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

@ -19,16 +19,22 @@
<PackageReference Include="Blazorise.Bootstrap" Version="1.1.3.1" />
<PackageReference Include="Blazorise.DataGrid" Version="1.1.3.1" />
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.1.3.1" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Data\" />
<Folder Include="Factories\" />
<Folder Include="Models\" />
</ItemGroup>
<ItemGroup>
<None Include="Modals\DeleteConfirmation.razor" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Pages.List.fr-FR.resx">
<Generator></Generator>
</EmbeddedResource>
</ItemGroup>
</Project>

@ -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; }
}
}

@ -0,0 +1,61 @@
@using BlazorApp.Models;
<CascadingValue Value="@this">
<div class="container">
<div class="row">
<div class="col-6">
<div>
<div class="content">
<div class="css-inv">
<div class="slotSpace">
<h1>@Localizer["Inventory"]</h1>
@for(int i = 0 ; i<18 ; i++)
{
<InventoryItem Index=i Item=@this.RecipeItems[i] />
}
</div>
</div>
</div>
</div>
</div>
<div class="col-6">
<div>@Localizer["Available"] :</div>
<div>
<button @onclick="SortByame" class="btn btn-secondary">
@Localizer["Sort"]
</button>
<div class="css-grid d-sm-block">
<DataGrid TItem="Item"
Data="@Items"
TotalItems="@totalItem"
PageSize="6"
Filterable
FilterMethod="DataGridFilterMethod.StartsWith"
ShowPager
Sortable='true'
ShowCaptions='false'
Responsive>
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="" Filterable=false />
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="" Filterable=false>
<DisplayTemplate>
<InventoryItem Item="@context" NoDrop="true" Index="-1"/>
</DisplayTemplate>
</DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.DisplayName)" Caption="Display name" Filterable />
</DataGrid>
</div>
</div>
</div>
<div>Actions</div>
<div class="actions" id="actions">
</div>
</div>
</div>
</CascadingValue>

@ -0,0 +1,83 @@
using BlazorApp.Data;
using BlazorApp.Models;
using BlazorApp.Pages;
using BlazorApp.Services;
using Blazorise;
using Blazorise.DataGrid;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Localization;
using Microsoft.JSInterop;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Text.Json;
namespace BlazorApp.Components
{
public partial class InventoryComponent
{
[Inject]
public IStringLocalizer<List> Localizer { get; set; }
[Inject]
public IDataService DataService { get; set; }
private int totalItem;
public Item CurrentDragItem { get; set; }
public int CurrentDragItemIndex { get; set; }
private bool choiceSort = false;
public List<Item> RecipeItems { get; set; }
[Parameter]
public List<Item> Items { get; set; } = new List<Item>();
public ObservableCollection<InventoryAction> Actions { get; set; }
[Inject]
internal IJSRuntime JavaScriptRuntime { get; set; }
/// <summary>
/// Constructor
/// </summary>
public InventoryComponent()
{
Actions = new ObservableCollection<InventoryAction>();
Actions.CollectionChanged += OnActionsCollectionChanged;
string fileName = "Inventory.json";
string jsonString = File.ReadAllText(fileName);
this.RecipeItems = JsonSerializer.Deserialize<List<Item>>(jsonString)!;
}
/// <summary>
/// method that call the javascript
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void OnActionsCollectionChanged(object? sender, NotifyCollectionChangedEventArgs e)
{
JavaScriptRuntime.InvokeVoidAsync("Crafting.AddActions", e.NewItems);
}
/// <summary>
/// method to sort by name or id simultaneoustly
/// </summary>
private void SortByame()
{
if (choiceSort)
{
Items.Sort((x, y) => x.Id.CompareTo(y.Id));
choiceSort = !choiceSort;
Actions.Add(new InventoryAction { Action = "Sort by Id" });
}
else
{
Items.Sort((x, y) => x.Name.CompareTo(y.Name));
choiceSort = !choiceSort;
Actions.Add(new InventoryAction { Action = "Sort by Name" });
}
}
}
}

@ -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;
}

@ -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);
});
}
}

@ -0,0 +1,24 @@
<div
class="item"
ondragover="event.preventDefault();"
draggable="@(Item == null)"
@ondragstart="@OnDragStart"
@ondrop="@OnDrop"
@ondragenter="@OnDragEnter"
@ondragleave="@OnDragLeave"
@ondragend="@OnDragEnd">
@if (Item != null)
{
<div style="position:relative">
<img src="data:image/png;base64, @(Item.ImageBase64)" title="@Item.DisplayName" alt="@Item.DisplayName" style="min-width: 64px; max-width: 64px" />
@if (Item.Num > 0)
{
<div class="number">@(
Item.Num
)</div>
}
</div>
}
</div>

@ -0,0 +1,144 @@
using BlazorApp.Models;
using BlazorApp.Pages;
using Blazorise;
using Microsoft.AspNetCore.Components;
using System.Text.Json;
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; }
/// <summary>
/// method call when a drag enter a slot and send an action
/// </summary>
internal void OnDragEnter()
{
if (NoDrop)
{
return;
}
Parent.Actions.Add(new InventoryAction { Action = "Drag Enter", Item = this.Item, Index = this.Index });
}
/// <summary>
/// method call when a drag leave a slot and send an action
/// </summary>
internal void OnDragLeave()
{
if (NoDrop)
{
return;
}
Parent.Actions.Add(new InventoryAction { Action = "Drag Leave", Item = this.Item, Index = this.Index });
}
/// <summary>
/// method that manage a drop and send an action
/// </summary>
internal void OnDrop()
{
if (NoDrop == true || Parent.CurrentDragItem == null)
{
return;
}
if(this.Item == null)
{
this.Item = ItemFactory.Create(Parent.CurrentDragItem);
Parent.RecipeItems[this.Index] = this.Item;
Parent.Actions.Add(new InventoryAction { Action = "Drop", Item = this.Item, Index = this.Index });
if (Parent.CurrentDragItemIndex != -1)
{
Parent.CurrentDragItem = null;
Parent.RecipeItems[Parent.CurrentDragItemIndex] = null;
Parent.Actions.Add(new InventoryAction { Action = "Moove", Item = this.Item, Index = this.Index });
}
}
else if(this.Item.Id == Parent.CurrentDragItem.Id && Parent.CurrentDragItemIndex != this.Index)
{
if(this.Item.StackSize > this.Item.Num){
ItemFactory.Add(this.Item, Parent.CurrentDragItem);
Parent.RecipeItems[this.Index] = this.Item;
Parent.Actions.Add(new InventoryAction { Action = "Drop", Item = this.Item, Index = this.Index });
Parent.Actions.Add(new InventoryAction { Action = "Moove", Item = this.Item, Index = this.Index });
}
}
else if(Parent.CurrentDragItemIndex != -1)
{
Parent.RecipeItems[Parent.CurrentDragItemIndex] = this.Item;
this.Item = ItemFactory.Create(Parent.CurrentDragItem);
Parent.RecipeItems[this.Index] = this.Item;
Parent.Actions.Add(new InventoryAction { Action = "Swap Position", Item = this.Item, Index = this.Index });
}
Parent.RecipeItems[this.Index] = this.Item;
string fileName = "Inventory.json";
string jsonString = JsonSerializer.Serialize(Parent.RecipeItems);
File.WriteAllText(fileName, jsonString);
}
/// <summary>
/// method call when darg start and send an action
/// </summary>
private void OnDragStart()
{
Parent.CurrentDragItem = this.Item;
Parent.CurrentDragItemIndex = this.Index;
Parent.Actions.Add(new InventoryAction { Action = "Drag Start", Item = this.Item, Index = this.Index });
}
/// <summary>
/// method call when drag end and send an action specialy when outside the inventory
/// </summary>
private void OnDragEnd()
{
if (Parent.Actions.Last().Action == "Drag Leave" && Parent.CurrentDragItemIndex != -1 && this.Item != null )
{
this.Item = null;
Parent.Actions.Add(new InventoryAction { Action = "Delete", Item = this.Item, Index = this.Index });
Parent.RecipeItems[this.Index] = null;
string fileName = "Inventoy.json";
string jsonString = JsonSerializer.Serialize(Parent.RecipeItems);
File.WriteAllText(fileName, jsonString);
}
if (Parent.Actions.Last().Action == "Moove" && Parent.CurrentDragItemIndex != -1)
{
this.Item = null;
Parent.RecipeItems[this.Index] = null;
string fileName = "Inventory.json";
string jsonString = JsonSerializer.Serialize(Parent.RecipeItems);
File.WriteAllText(fileName, jsonString);
}
if (Parent.Actions.Last().Action == "Swap Position") // to refresh the displayed item
{
this.Item = Parent.RecipeItems[this.Index];
}
}
}
}

@ -0,0 +1,21 @@
.item {
width: 64px;
height: 64px;
border: 1px solid;
display: flex;
justify-content: center;
background-color: rgba(139, 139, 139, 1);
box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff;
}
.number {
font-family: 'VT323', monospace;
font-size: 24px;
color: #fefefe;
position: relative;
text-shadow: #333 1px 2px 1px;
top: -30px;
right: -40px;
cursor: default;
z-index: 20;
pointer-events: none;
}

@ -30,7 +30,8 @@ public static class ItemFactory
MaxDurability = model.MaxDurability,
StackSize = model.StackSize,
CreatedDate = DateTime.Now,
ImageBase64 = Convert.ToBase64String(model.ImageContent)
ImageBase64 = Convert.ToBase64String(model.ImageContent),
Num = 1
};
}
@ -45,4 +46,59 @@ public static class ItemFactory
item.UpdatedDate = DateTime.Now;
item.ImageBase64 = Convert.ToBase64String(model.ImageContent);
}
public static Item Create(Item model)
{
if(model.Num > 0)
{
return new Item
{
Id = model.Id,
DisplayName = model.DisplayName,
Name = model.Name,
RepairWith = model.RepairWith,
EnchantCategories = model.EnchantCategories,
MaxDurability = model.MaxDurability,
StackSize = model.StackSize,
CreatedDate = DateTime.Now,
ImageBase64 = model.ImageBase64,
Num = model.Num,
};
}
return new Item
{
Id = model.Id,
DisplayName = model.DisplayName,
Name = model.Name,
RepairWith = model.RepairWith,
EnchantCategories = model.EnchantCategories,
MaxDurability = model.MaxDurability,
StackSize = model.StackSize,
CreatedDate = DateTime.Now,
ImageBase64 = model.ImageBase64,
Num = 1,
};
}
public static void Update(Item item, Item model)
{
item.DisplayName = model.DisplayName;
item.Name = model.Name;
item.RepairWith = model.RepairWith;
item.EnchantCategories = model.EnchantCategories;
item.MaxDurability = model.MaxDurability;
item.StackSize = model.StackSize;
item.UpdatedDate = DateTime.Now;
item.ImageBase64 = model.ImageBase64;
item.Num = model.Num;
}
public static void Add(Item item, Item model)
{
if (model.Num != 0)
item.Num = model.Num + item.Num;
else
item.Num += 1;
}
}

@ -0,0 +1 @@
[null,null,null,null,null,null,null,null,null,{"Id":3,"DisplayName":"Dirt","Name":"dirt","StackSize":64,"MaxDurability":0,"EnchantCategories":[],"RepairWith":[],"CreatedDate":"2022-12-31T18:00:48.4785884+01:00","UpdatedDate":null,"ImageBase64":"iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA0UlEQVR42nWSsQ1CMQxEvQ4rINFR0SOBxAgpaRgA/Q3YhelAF\u002Bmi9\u002B/nF1YS2zn7zq7v\u002B/H7tEu31/XYbea7nw6ruM/SRYlM0HtZluEzIO\u002BKycporsI3qzGHeSW01tpwsJukkl0MAAcV0GdyJ6AKpa/cVlZyq9SG9yFicpR4TKDipOmzMjnH525m/g6QTp5uOT8zNt2D5J68SaVyPORsYPtJxVrVjBcraHSkwDH3TUxnguyZu1pRkD1v541wpjHb0MokKkz\u002BWWgDkDtgkfbm7wJ/9oUoq3qXqFkAAAAASUVORK5CYII=","Num":4},null,null,null,null,null,null,null,null]

@ -0,0 +1 @@
[null,null,null,null,null,null,null,null,{"Id":3,"DisplayName":"Dirt","Name":"dirt","StackSize":64,"MaxDurability":0,"EnchantCategories":[],"RepairWith":[],"CreatedDate":"2022-12-31T18:00:40.8299566+01:00","UpdatedDate":null,"ImageBase64":"iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA0UlEQVR42nWSsQ1CMQxEvQ4rINFR0SOBxAgpaRgA/Q3YhelAF\u002Bmi9\u002B/nF1YS2zn7zq7v\u002B/H7tEu31/XYbea7nw6ruM/SRYlM0HtZluEzIO\u002BKycporsI3qzGHeSW01tpwsJukkl0MAAcV0GdyJ6AKpa/cVlZyq9SG9yFicpR4TKDipOmzMjnH525m/g6QTp5uOT8zNt2D5J68SaVyPORsYPtJxVrVjBcraHSkwDH3TUxnguyZu1pRkD1v541wpjHb0MokKkz\u002BWWgDkDtgkfbm7wJ/9oUoq3qXqFkAAAAASUVORK5CYII=","Num":4},null,null,null,null,null,null,null,null,null]

@ -12,5 +12,7 @@
public DateTime CreatedDate { get; set; }
public DateTime? UpdatedDate { get; set; }
public string ImageBase64 { get; set; }
public int Num { get; set; }
}
}

@ -0,0 +1,6 @@
namespace BlazorAppClean.Models
{
public class ItemInventory
{
}
}

@ -1,24 +1,12 @@
@page "/"
@using System.Globalization
@using BlazorApp.Components
<PageTitle>Index</PageTitle>
<h1>Hello, world!</h1>
Welcome to your new app.
<SurveyPrompt Title="How is Blazor working for you?" />
<p>
<b>CurrentCulture</b>: @CultureInfo.CurrentCulture
</p>
<h1>Hello, world!</h1>
<TestRenderFragment>
<div>Content of my TestRenderFragment</div>
</TestRenderFragment>
<div>
<Crafting Items="Items" Recipes="Recipes" />
</div>
<Crafting Items="Items" Recipes="Recipes" />

@ -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<Item> Items { get; set; } = new List<Item>();
public partial class Index
{
[Inject]
public IDataService DataService { get; set; }
private List<CraftingRecipe> Recipes { get; set; } = new List<CraftingRecipe>();
public List<Item> Items { get; set; } = new List<Item>();
protected override async Task OnAfterRenderAsync(bool firstRender)
{
base.OnAfterRenderAsync(firstRender);
private List<CraftingRecipe> Recipes { get; set; } = new List<CraftingRecipe>();
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();
}
}
}
}

@ -1,6 +1,8 @@
@page "/inventory"
@using System.Globalization
@using BlazorApp.Components
<h1>@Localizer["TitleInventory"]</h1>
<h3>Inventory</h3>
<InventoryComponent Items="Items" />

@ -1,6 +1,40 @@
namespace BlazorApp.Pages
{
using BlazorApp.Components;
using BlazorApp.Models;
using BlazorApp.Services;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Localization;
namespace BlazorApp.Pages;
public partial class Inventory
{
[Inject]
public IDataService DataService { get; set; }
private int totalItem;
[Inject]
public IStringLocalizer<List> Localizer { get; set; }
private string? title;
public List<Item> Items { get; set; } = new List<Item>();
/// <summary>
/// first render initializ the item list
/// </summary>
/// <param name="firstRender"></param>
/// <returns></returns>
protected override async Task OnAfterRenderAsync(bool firstRender)
{
base.OnAfterRenderAsync(firstRender);
if (!firstRender)
{
return;
}
Items = await DataService.List(0, await DataService.Count());
StateHasChanged();
}
}
}

@ -1,7 +1,7 @@
@page "/list"
@using BlazorApp.Models
<h3>@Localizer["Title"]</h3>
<h3>@Localizer["TitleList"]</h3>
<div>
<NavLink class="btn btn-primary" href="Add" Match="NavLinkMatch.All">

@ -12,12 +12,12 @@ namespace BlazorApp.Pages;
public partial class List
{
[Inject]
public IStringLocalizer<List> Localizer { get; set; }
private List<Item> items;
private int totalItem;
[Inject]
public IStringLocalizer<List> Localizer { get; set; }
[Inject]
public IDataService DataService { get; set; }

@ -117,7 +117,19 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Title" xml:space="preserve">
<data name="Available" xml:space="preserve">
<value>Objets disponibles</value>
</data>
<data name="Inventory" xml:space="preserve">
<value>Inventaire</value>
</data>
<data name="Sort" xml:space="preserve">
<value>Trier les objets</value>
</data>
<data name="TitleInventory" xml:space="preserve">
<value>Inventaire</value>
</data>
<data name="TitleList" xml:space="preserve">
<value>Liste des éléments</value>
</data>
</root>

@ -117,7 +117,19 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Title" xml:space="preserve">
<value>Items List</value>
<data name="Available" xml:space="preserve">
<value>Available items</value>
</data>
<data name="Inventory" xml:space="preserve">
<value>Inventory</value>
</data>
<data name="Sort" xml:space="preserve">
<value>Sort Items</value>
</data>
<data name="TitleInventory" xml:space="preserve">
<value>Inventory</value>
</data>
<data name="TitleList" xml:space="preserve">
<value>List of elements</value>
</data>
</root>

@ -54,5 +54,10 @@ namespace BlazorApp.Services
{
return await _http.GetFromJsonAsync<List<CraftingRecipe>>("https://localhost:7234/api/Crafting/recipe");
}
public async Task<List<Item>> getAll()
{
return await _http.GetFromJsonAsync<List<Item>>($"https://codefirst.iut.uca.fr/containers/container-blazor-web-api-marcchevaldonne/api/Crafting/all");
}
}
}

@ -152,4 +152,9 @@ public class DataLocalService : IDataService
return Task.FromResult(items);
}
public async Task<List<Item>> getAll()
{
return await _http.GetFromJsonAsync<List<Item>>($"https://codefirst.iut.uca.fr/containers/container-blazor-web-api-marcchevaldonne/api/Crafting/all");
}
}

@ -9,10 +9,13 @@ public interface IDataService
Task<int> Count();
Task<List<Item>> List(int currentPage, int pageSize);
Task<Item> GetById(int id);
Task Update(int id, ItemModel model);
Task Delete(int id);
Task<List<CraftingRecipe>> GetRecipes();
Task<List<Item>> getAll();
}

@ -1,6 +1,6 @@
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="">BlazorApp</a>
<a class="navbar-brand" href="">Minecraft_compagnon</a>
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
@ -10,33 +10,28 @@
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
<nav class="flex-column">
<div class="nav-item px-3">
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
<span class="oi oi-home" aria-hidden="true"></span> Home
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="counter">
<span class="oi oi-plus" aria-hidden="true"></span> Counter
<NavLink class="nav-link" href="list" Match="NavLinkMatch.All">
<span class="oi oi-list-rich" aria-hidden="true"></span> List
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="fetchdata">
<span class="oi oi-list-rich" aria-hidden="true"></span> Fetch data
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
<span class="oi oi-home" aria-hidden="true"></span> Home
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="list">
<span class="oi oi-list-rich" aria-hidden="true"></span> List
<NavLink class="nav-link" href="inventory">
<span class="oi oi-list-rich" aria-hidden="true"></span> Inventaire
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="episodes">
<span class="oi oi-list-rich" aria-hidden="true"></span> Episodes
<NavLink class="nav-link" href="counter">
<span class="oi oi-plus" aria-hidden="true"></span> Counter
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="inventory">
<span class="oi oi-list-rich" aria-hidden="true"></span> Inventory
<NavLink class="nav-link" href="fetchdata">
<span class="oi oi-list-rich" aria-hidden="true"></span> Fetch data
</NavLink>
</div>
</nav>

@ -7,6 +7,7 @@
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using BlazorApp
@using BlazorApp.Shared
@using Blazorise.DataGrid
@using Blazored.Modal

@ -12,7 +12,8 @@
"Blazored.Modal": "7.1.0",
"Blazorise.Bootstrap": "1.1.3.1",
"Blazorise.DataGrid": "1.1.3.1",
"Blazorise.Icons.FontAwesome": "1.1.3.1"
"Blazorise.Icons.FontAwesome": "1.1.3.1",
"Microsoft.Extensions.Localization": "7.0.1"
},
"runtime": {
"BlazorApp.dll": {}
@ -38,7 +39,7 @@
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
"Microsoft.JSInterop.WebAssembly": "6.0.3"
},
"runtime": {
@ -52,7 +53,7 @@
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.3"
"Microsoft.Extensions.Logging.Abstractions": "7.0.0"
},
"runtime": {
"lib/net6.0/Blazorise.dll": {
@ -66,7 +67,7 @@
"Blazorise": "1.1.3.1",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.3"
"Microsoft.Extensions.Logging.Abstractions": "7.0.0"
},
"runtime": {
"lib/net6.0/Blazorise.Bootstrap.dll": {
@ -80,7 +81,7 @@
"Blazorise": "1.1.3.1",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.3"
"Microsoft.Extensions.Logging.Abstractions": "7.0.0"
},
"runtime": {
"lib/net6.0/Blazorise.DataGrid.dll": {
@ -94,7 +95,7 @@
"Blazorise": "1.1.3.1",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.3"
"Microsoft.Extensions.Logging.Abstractions": "7.0.0"
},
"runtime": {
"lib/net6.0/Blazorise.Icons.FontAwesome.dll": {
@ -106,8 +107,8 @@
"Microsoft.AspNetCore.Authorization/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Metadata": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.3",
"Microsoft.Extensions.Options": "6.0.0"
"Microsoft.Extensions.Logging.Abstractions": "7.0.0",
"Microsoft.Extensions.Options": "7.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
@ -165,28 +166,69 @@
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
"runtime": {
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"Microsoft.Extensions.Localization/7.0.1": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
"Microsoft.Extensions.Localization.Abstractions": "7.0.1",
"Microsoft.Extensions.Logging.Abstractions": "7.0.0",
"Microsoft.Extensions.Options": "7.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.122.56809"
}
}
},
"Microsoft.Extensions.Localization.Abstractions/7.0.1": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.122.56809"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/7.0.0": {
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.1122.52304"
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"Microsoft.Extensions.Options/6.0.0": {
"Microsoft.Extensions.Options/7.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
"Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
"Microsoft.Extensions.Primitives": "7.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Options.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"Microsoft.Extensions.Primitives/6.0.0": {
"Microsoft.Extensions.Primitives/7.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"Microsoft.JSInterop/6.0.9": {
@ -316,33 +358,47 @@
"path": "microsoft.extensions.dependencyinjection/6.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
"path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Localization/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-J/8p+XTwit06I7e0cFcDZunNbjYtvy48E/TK0a9lOYlhpMuvZeW4wv4ZNA9BtWswhq3wnlIoEMbmMUDxS/PoVw==",
"path": "microsoft.extensions.localization/7.0.1",
"hashPath": "microsoft.extensions.localization.7.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Localization.Abstractions/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
"sha512": "sha512-CSwqDo4cEb1mlAHNaVLUnlHTsPUahfyQnEE5G+gj2V5PnMku43u2ZlGTzqZXsFdqok9RgO7kOBZGtlG82WSfLg==",
"path": "microsoft.extensions.localization.abstractions/7.0.1",
"hashPath": "microsoft.extensions.localization.abstractions.7.0.1.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"Microsoft.Extensions.Logging.Abstractions/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SUpStcdjeBbdKjPKe53hVVLkFjylX0yIXY8K+xWa47+o1d+REDyOMZjHZa+chsQI1K9qZeiHWk9jos0TFU7vGg==",
"path": "microsoft.extensions.logging.abstractions/6.0.3",
"hashPath": "microsoft.extensions.logging.abstractions.6.0.3.nupkg.sha512"
"sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
"path": "microsoft.extensions.logging.abstractions/7.0.0",
"hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Options/6.0.0": {
"Microsoft.Extensions.Options/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
"path": "microsoft.extensions.options/6.0.0",
"hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
"sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
"path": "microsoft.extensions.options/7.0.0",
"hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/6.0.0": {
"Microsoft.Extensions.Primitives/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
"path": "microsoft.extensions.primitives/6.0.0",
"hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
"sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
"path": "microsoft.extensions.primitives/7.0.0",
"hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
},
"Microsoft.JSInterop/6.0.9": {
"type": "package",

File diff suppressed because one or more lines are too long

@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
"C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
},
"projects": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectUniqueName": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectPath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"outputPath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",
@ -59,6 +59,10 @@
"Blazorise.Icons.FontAwesome": {
"target": "Package",
"version": "[1.1.3.1, )"
},
"Microsoft.Extensions.Localization": {
"target": "Package",
"version": "[7.0.1, )"
}
},
"imports": [

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\6.0.3\buildTransitive\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\6.0.3\buildTransitive\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\7.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\7.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers\6.0.9\buildTransitive\netstandard2.0\Microsoft.AspNetCore.Components.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.components.analyzers\6.0.9\buildTransitive\netstandard2.0\Microsoft.AspNetCore.Components.Analyzers.targets')" />
</ImportGroup>
</Project>

@ -8,81 +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_compagnonv0\Sources\BlazorApp\BlazorApp\
build_property.ProjectDir = C:\Users\delan\source\repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp
build_property.MSBuildProjectDirectory = C:\Users\delan\source\repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp
build_property._RazorSourceGeneratorDebug =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/App.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/App.razor]
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQmxhem9yUm91dGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW52ZW50b3J5LnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/List.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/List.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEN1bHR1cmVTZWxlY3Rvci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFRhYmxlVGVtcGxhdGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/_Imports.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-0c7vkjpwvp
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZ0l0ZW0ucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-syyk20fth2
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlDb21wb25lbnQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-hwopnmcvyc
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlJdGVtLnJhem9y
build_metadata.AdditionalFiles.CssScope = b-qvaqnp1p6p
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-3dsd3z3yec
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-7cxxmz0cwl
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv0/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
[C:/Users/delan/source/repos/minecraft_compagnonv20/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =

@ -1 +1 @@
d3b86e7baa55a02baabee01e1956feeb6ed39750
c50094d2a440f52dc51fdefcd65864fc3b6f0a7f

@ -198,53 +198,289 @@ 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_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.Development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.json
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.staticwebassets.runtime.json
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.exe
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.deps.json
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.runtimeconfig.json
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.LocalStorage.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.Modal.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Bootstrap.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.DataGrid.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\System.IO.Pipelines.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.AssemblyReference.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.fr-FR.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.GenerateResource.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfoInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CoreCompileInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\Crafting.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\CraftingItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\bundle\BlazorApp.styles.css
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CopyComplete
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\refint\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv0\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
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.Development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.json
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.staticwebassets.runtime.json
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.exe
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.deps.json
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.runtimeconfig.json
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.LocalStorage.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.Modal.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Bootstrap.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.DataGrid.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\System.IO.Pipelines.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.AssemblyReference.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.fr-FR.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.GenerateResource.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfoInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CoreCompileInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\Crafting.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\CraftingItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryComponent.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\bundle\BlazorApp.styles.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CopyComplete
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\refint\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv400\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.Development.json
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.json
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.staticwebassets.runtime.json
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.exe
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.deps.json
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.runtimeconfig.json
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.LocalStorage.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.Modal.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Bootstrap.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.DataGrid.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\System.IO.Pipelines.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.AssemblyReference.cache
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.resources
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.fr-FR.resources
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.GenerateResource.cache
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfoInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CoreCompileInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\Crafting.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\CraftingItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryComponent.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\bundle\BlazorApp.styles.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CopyComplete
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\refint\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache
C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\en-US\BlazorApp.resources.dll
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\en-US\BlazorApp.resources.dll
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.en-US.resources
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Localization.dll
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Localization.Abstractions.dll
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Options.dll
C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.Development.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.staticwebassets.runtime.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.exe
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.deps.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.runtimeconfig.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.pdb
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.LocalStorage.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.Modal.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Bootstrap.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.DataGrid.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Localization.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Localization.Abstractions.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Options.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\System.IO.Pipelines.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.AssemblyReference.cache
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.GenerateResource.cache
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfoInputs.cache
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfo.cs
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CoreCompileInputs.cache
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cache
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cs
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets\msbuild.BlazorApp.Microsoft.AspNetCore.StaticWebAssets.props
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets\msbuild.build.BlazorApp.props
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.BlazorApp.props
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.BlazorApp.props
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.pack.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\Crafting.razor.rz.scp.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\CraftingItem.razor.rz.scp.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryComponent.razor.rz.scp.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryItem.razor.rz.scp.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\bundle\BlazorApp.styles.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CopyComplete
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\refint\BlazorApp.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Resources.Pages.List.fr-FR.resources
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Resources.Pages.List.resources
C:\Users\felix\Desktop\Plazor\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Inventory.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.Development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Inventory.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.staticwebassets.runtime.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.exe
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.deps.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.runtimeconfig.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.LocalStorage.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.Modal.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Bootstrap.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.DataGrid.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Localization.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Localization.Abstractions.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Options.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\System.IO.Pipelines.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.AssemblyReference.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Resources.Pages.List.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Resources.Pages.List.fr-FR.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.GenerateResource.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfoInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CoreCompileInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\Crafting.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\CraftingItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryComponent.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\bundle\BlazorApp.styles.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CopyComplete
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\refint\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll
C:\Users\delan\source\repos\minecraft_compagnonv20\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Inventoy.json

@ -1 +1 @@
c289c73c5fc34c5772b9507a4be59608b829eb0b
e87574ed99f2d93e392191b5d8fa0d7bde42ec1f

@ -28,6 +28,81 @@
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-color: rgba(139, 139, 139, 1);
box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff;
}
.number[b-qvaqnp1p6p] {
font-family: 'VT323', monospace;
font-size: 24px;
color: #fefefe;
position: relative;
text-shadow: #333 1px 2px 1px;
top: -30px;
right: -40px;
cursor: default;
z-index: 20;
pointer-events: none;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;

@ -26,6 +26,81 @@
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-color: rgba(139, 139, 139, 1);
box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff;
}
.number[b-qvaqnp1p6p] {
font-family: 'VT323', monospace;
font-size: 24px;
color: #fefefe;
position: relative;
text-shadow: #333 1px 2px 1px;
top: -30px;
right: -40px;
cursor: default;
z-index: 20;
pointer-events: none;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;

@ -1,6 +1,6 @@
{
"Version": 1,
"Hash": "8zaPw7dZEkATpghjBHlpiz52KUYXzTsIzbQrhgLRQ10=",
"Hash": "cspH2n1rSjWMjg9iWfA0fLa3yyKW+bSoT6vlTldXTis=",
"Source": "BlazorApp",
"BasePath": "_content/BlazorApp",
"Mode": "Default",
@ -10,7 +10,7 @@
{
"Name": "BlazorApp\\wwwroot",
"Source": "BlazorApp",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\Components\\InventoryComponent.razor.js",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css",
"SourceId": "BlazorApp",
"SourceType": "Computed",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css"
"OriginalItemSpec": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css",
"SourceId": "BlazorApp",
"SourceType": "Computed",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css"
"OriginalItemSpec": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "index.html",
"AssetKind": "All",

File diff suppressed because one or more lines are too long

@ -230,7 +230,7 @@
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
@ -243,10 +243,42 @@
}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
"buildTransitive/net6.0/_._": {}
}
},
"Microsoft.Extensions.Localization/7.0.1": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
"Microsoft.Extensions.Localization.Abstractions": "7.0.1",
"Microsoft.Extensions.Logging.Abstractions": "7.0.0",
"Microsoft.Extensions.Options": "7.0.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
"related": ".xml"
}
}
},
"Microsoft.Extensions.Localization.Abstractions/7.0.1": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
"related": ".xml"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"Microsoft.Extensions.Logging.Abstractions/7.0.0": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
@ -259,27 +291,30 @@
}
},
"build": {
"buildTransitive/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.targets": {}
"buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
}
},
"Microsoft.Extensions.Options/6.0.0": {
"Microsoft.Extensions.Options/7.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
"Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
"Microsoft.Extensions.Primitives": "7.0.0"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
"lib/net6.0/Microsoft.Extensions.Options.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
"lib/net6.0/Microsoft.Extensions.Options.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
}
},
"Microsoft.Extensions.Primitives/6.0.0": {
"Microsoft.Extensions.Primitives/7.0.0": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
@ -295,7 +330,7 @@
}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
"buildTransitive/net6.0/_._": {}
}
},
"Microsoft.JSInterop/6.0.9": {
@ -632,35 +667,77 @@
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
"Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
"sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
"path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"sha512": "SUpStcdjeBbdKjPKe53hVVLkFjylX0yIXY8K+xWa47+o1d+REDyOMZjHZa+chsQI1K9qZeiHWk9jos0TFU7vGg==",
"Microsoft.Extensions.Localization/7.0.1": {
"sha512": "J/8p+XTwit06I7e0cFcDZunNbjYtvy48E/TK0a9lOYlhpMuvZeW4wv4ZNA9BtWswhq3wnlIoEMbmMUDxS/PoVw==",
"type": "package",
"path": "microsoft.extensions.localization/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/net462/Microsoft.Extensions.Localization.dll",
"lib/net462/Microsoft.Extensions.Localization.xml",
"lib/net7.0/Microsoft.Extensions.Localization.dll",
"lib/net7.0/Microsoft.Extensions.Localization.xml",
"lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
"lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
"microsoft.extensions.localization.7.0.1.nupkg.sha512",
"microsoft.extensions.localization.nuspec"
]
},
"Microsoft.Extensions.Localization.Abstractions/7.0.1": {
"sha512": "CSwqDo4cEb1mlAHNaVLUnlHTsPUahfyQnEE5G+gj2V5PnMku43u2ZlGTzqZXsFdqok9RgO7kOBZGtlG82WSfLg==",
"type": "package",
"path": "microsoft.extensions.logging.abstractions/6.0.3",
"path": "microsoft.extensions.localization.abstractions/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/net462/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/net462/Microsoft.Extensions.Localization.Abstractions.xml",
"lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/net7.0/Microsoft.Extensions.Localization.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
"microsoft.extensions.localization.abstractions.7.0.1.nupkg.sha512",
"microsoft.extensions.localization.abstractions.nuspec"
]
},
"Microsoft.Extensions.Logging.Abstractions/7.0.0": {
"sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
"type": "package",
"path": "microsoft.extensions.logging.abstractions/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
@ -695,62 +772,90 @@
"analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
"analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
"buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
"buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
"buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
"buildTransitive/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.targets",
"buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
"microsoft.extensions.logging.abstractions.6.0.3.nupkg.sha512",
"microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
"microsoft.extensions.logging.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Options/6.0.0": {
"sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
"Microsoft.Extensions.Options/7.0.0": {
"sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
"type": "package",
"path": "microsoft.extensions.options/6.0.0",
"path": "microsoft.extensions.options/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Options.dll",
"lib/net461/Microsoft.Extensions.Options.xml",
"buildTransitive/net461/Microsoft.Extensions.Options.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
"lib/net462/Microsoft.Extensions.Options.dll",
"lib/net462/Microsoft.Extensions.Options.xml",
"lib/net6.0/Microsoft.Extensions.Options.dll",
"lib/net6.0/Microsoft.Extensions.Options.xml",
"lib/net7.0/Microsoft.Extensions.Options.dll",
"lib/net7.0/Microsoft.Extensions.Options.xml",
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
"lib/netstandard2.1/Microsoft.Extensions.Options.dll",
"lib/netstandard2.1/Microsoft.Extensions.Options.xml",
"microsoft.extensions.options.6.0.0.nupkg.sha512",
"microsoft.extensions.options.7.0.0.nupkg.sha512",
"microsoft.extensions.options.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Primitives/6.0.0": {
"sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
"Microsoft.Extensions.Primitives/7.0.0": {
"sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
"type": "package",
"path": "microsoft.extensions.primitives/6.0.0",
"path": "microsoft.extensions.primitives/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.Primitives.dll",
"lib/net461/Microsoft.Extensions.Primitives.xml",
"lib/net462/Microsoft.Extensions.Primitives.dll",
"lib/net462/Microsoft.Extensions.Primitives.xml",
"lib/net6.0/Microsoft.Extensions.Primitives.dll",
"lib/net6.0/Microsoft.Extensions.Primitives.xml",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
"lib/net7.0/Microsoft.Extensions.Primitives.dll",
"lib/net7.0/Microsoft.Extensions.Primitives.xml",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
"microsoft.extensions.primitives.6.0.0.nupkg.sha512",
"microsoft.extensions.primitives.7.0.0.nupkg.sha512",
"microsoft.extensions.primitives.nuspec",
"useSharedDesignerContext.txt"
]
@ -842,7 +947,8 @@
"Blazored.Modal >= 7.1.0",
"Blazorise.Bootstrap >= 1.1.3.1",
"Blazorise.DataGrid >= 1.1.3.1",
"Blazorise.Icons.FontAwesome >= 1.1.3.1"
"Blazorise.Icons.FontAwesome >= 1.1.3.1",
"Microsoft.Extensions.Localization >= 7.0.1"
]
},
"packageFolders": {
@ -851,11 +957,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv20\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",
@ -903,6 +1009,10 @@
"Blazorise.Icons.FontAwesome": {
"target": "Package",
"version": "[1.1.3.1, )"
},
"Microsoft.Extensions.Localization": {
"target": "Package",
"version": "[7.0.1, )"
}
},
"imports": [

@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "9E8b/I6/CPy42UkysWuKNJptwdFyFM0rUXzGFAvC2qGuyX7/IB5FKlrvGmb6BLQTfJ7xYIjOmZ82VK7lwMcZqA==",
"dgSpecHash": "Dd8HsUzeCTOuhCT74h97SHsn8teZ9DLDQbW+HVmHepKOrh3LD9QOIdMSo2JLPxub9hG5Fbd+/CJ3HpY1ndRE+Q==",
"success": true,
"projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectFilePath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnonv20\\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",
@ -17,10 +17,12 @@
"C:\\Users\\delan\\.nuget\\packages\\microsoft.aspnetcore.components.web\\6.0.9\\microsoft.aspnetcore.components.web.6.0.9.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.aspnetcore.metadata\\6.0.9\\microsoft.aspnetcore.metadata.6.0.9.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.3\\microsoft.extensions.logging.abstractions.6.0.3.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.localization\\7.0.1\\microsoft.extensions.localization.7.0.1.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\7.0.1\\microsoft.extensions.localization.abstractions.7.0.1.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.jsinterop\\6.0.9\\microsoft.jsinterop.6.0.9.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.jsinterop.webassembly\\6.0.3\\microsoft.jsinterop.webassembly.6.0.3.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",

@ -32,3 +32,244 @@
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0

File diff suppressed because one or more lines are too long

@ -9,6 +9,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

File diff suppressed because one or more lines are too long

@ -8,6 +8,7 @@
".NETCoreApp,Version=v6.0": {
"Minecraft.Crafting.Api/1.0.0": {
"dependencies": {
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.17.0",
"Newtonsoft.Json": "13.0.1",
"Swashbuckle.AspNetCore": "6.2.3"
},
@ -24,6 +25,7 @@
}
}
},
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": {},
"Newtonsoft.Json/13.0.1": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
@ -92,6 +94,13 @@
"path": "microsoft.openapi/1.2.3",
"hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gfDtAL1WhkjbRdbZlt/ZeQYCbgRpNCZCGj+yeqHObsNFRDHjq8qZJOX9AyTxJpSRYMi9SJk7JDyAbbVYRgEhAA==",
"path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.0",
"hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.17.0.nupkg.sha512"
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"serviceable": true,

@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
@ -20,5 +20,5 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyTitleAttribute("Minecraft.Crafting.Api")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Généré par la classe MSBuild WriteCodeFragment.
// Generated by the MSBuild WriteCodeFragment class.

@ -5,12 +5,13 @@ build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Minecraft.Crafting.Api
build_property.RootNamespace = Minecraft.Crafting.Api
build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\Minecraft.Crafting.Api\
build_property.ProjectDir = C:\Users\felix\Desktop\Plazor\Sources\Minecraft.Crafting.Api\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv0\Sources\Minecraft.Crafting.Api
build_property.MSBuildProjectDirectory = C:\Users\felix\Desktop\Plazor\Sources\Minecraft.Crafting.Api
build_property._RazorSourceGeneratorDebug =

@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Ce code a été généré par un outil.
// Version du runtime :4.0.30319.42000
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
// le code est régénéré.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
@ -13,5 +13,5 @@ using System.Reflection;
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
// Généré par la classe MSBuild WriteCodeFragment.
// Generated by the MSBuild WriteCodeFragment class.

@ -1 +1 @@
db937ef1dcc4aab5840aecb7b5a3f39ae47ad2dd
e62999b45e2345dc946967b8c6f49d90b8a1f4c0

@ -1 +1 @@
02b9d9d691c8c2f6ce5faea2345dc58841b9d845
64261ac7d4f3b057c791518d77a1e0a80b0fb3c0

@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {}
"C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {}
},
"projects": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {
"C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectUniqueName": "C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectName": "Minecraft.Crafting.Api",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\obj\\",
"projectPath": "C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"packagesPath": "C:\\Users\\felix\\.nuget\\packages\\",
"outputPath": "C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\felix\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
@ -40,6 +40,10 @@
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
"target": "Package",
"version": "[1.17.0, )"
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.1, )"
@ -68,7 +72,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.101\\RuntimeIdentifierGraph.json"
}
}
}

@ -5,18 +5,20 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\delan\.nuget\packages\</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\felix\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\delan\.nuget\packages\" />
<SourceRoot Include="C:\Users\felix\.nuget\packages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" />
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.2.3\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.2.3\build\Swashbuckle.AspNetCore.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\delan\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\felix\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\felix\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.17.0</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets>
</PropertyGroup>
</Project>

@ -2,5 +2,6 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets')" />
</ImportGroup>
</Project>

@ -26,6 +26,13 @@
}
}
},
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": {
"type": "package",
"build": {
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
}
},
"Newtonsoft.Json/13.0.1": {
"type": "package",
"compile": {
@ -149,6 +156,86 @@
"microsoft.openapi.nuspec"
]
},
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": {
"sha512": "gfDtAL1WhkjbRdbZlt/ZeQYCbgRpNCZCGj+yeqHObsNFRDHjq8qZJOX9AyTxJpSRYMi9SJk7JDyAbbVYRgEhAA==",
"type": "package",
"path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.0",
"hasTools": true,
"files": [
".nupkg.metadata",
".signature.p7s",
"EULA.md",
"ThirdPartyNotices.txt",
"build/Container.props",
"build/Container.targets",
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
"build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
"build/Rules/GeneralBrowseObject.xaml",
"build/Rules/cs-CZ/GeneralBrowseObject.xaml",
"build/Rules/de-DE/GeneralBrowseObject.xaml",
"build/Rules/es-ES/GeneralBrowseObject.xaml",
"build/Rules/fr-FR/GeneralBrowseObject.xaml",
"build/Rules/it-IT/GeneralBrowseObject.xaml",
"build/Rules/ja-JP/GeneralBrowseObject.xaml",
"build/Rules/ko-KR/GeneralBrowseObject.xaml",
"build/Rules/pl-PL/GeneralBrowseObject.xaml",
"build/Rules/pt-BR/GeneralBrowseObject.xaml",
"build/Rules/ru-RU/GeneralBrowseObject.xaml",
"build/Rules/tr-TR/GeneralBrowseObject.xaml",
"build/Rules/zh-CN/GeneralBrowseObject.xaml",
"build/Rules/zh-TW/GeneralBrowseObject.xaml",
"build/ToolsTarget.props",
"build/ToolsTarget.targets",
"icon.png",
"microsoft.visualstudio.azure.containers.tools.targets.1.17.0.nupkg.sha512",
"microsoft.visualstudio.azure.containers.tools.targets.nuspec",
"tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
"tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
"tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
"tools/Newtonsoft.Json.dll",
"tools/System.Security.Principal.Windows.dll",
"tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/utils/KillProcess.exe",
"tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
"tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
]
},
"Newtonsoft.Json/13.0.1": {
"sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
"type": "package",
@ -260,24 +347,25 @@
},
"projectFileDependencyGroups": {
"net6.0": [
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.0",
"Newtonsoft.Json >= 13.0.1",
"Swashbuckle.AspNetCore >= 6.2.3"
]
},
"packageFolders": {
"C:\\Users\\delan\\.nuget\\packages\\": {}
"C:\\Users\\felix\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectUniqueName": "C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectName": "Minecraft.Crafting.Api",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\obj\\",
"projectPath": "C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"packagesPath": "C:\\Users\\felix\\.nuget\\packages\\",
"outputPath": "C:\\Users\\felix\\Desktop\\Plazor\\Sources\\Minecraft.Crafting.Api\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\felix\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
@ -303,6 +391,10 @@
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
"target": "Package",
"version": "[1.17.0, )"
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.1, )"
@ -331,7 +423,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.101\\RuntimeIdentifierGraph.json"
}
}
}

@ -1,16 +1,17 @@
{
"version": 2,
"dgSpecHash": "w0LiScG/t0SoH5ZN8BnV97wahhlAsWiWPlmF82HZl/Ep1qfCD5TyDyhqqAQww34BvlnC2Clwwv/tbwjUvfassQ==",
"dgSpecHash": "uWNjQDoySkscza2HewGrB8WuQUQrpJ+adeF7tr9IkHVV6ZX90IbJZRxzjUr82KdL5v4byISRV93TA0MbPGcadg==",
"success": true,
"projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv0\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectFilePath": "C:\\Users\\felix\\Desktop\\Plazor\\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",
"C:\\Users\\delan\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\swashbuckle.aspnetcore\\6.2.3\\swashbuckle.aspnetcore.6.2.3.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.2.3\\swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.2.3\\swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512"
"C:\\Users\\felix\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.17.0\\microsoft.visualstudio.azure.containers.tools.targets.1.17.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\swashbuckle.aspnetcore\\6.2.3\\swashbuckle.aspnetcore.6.2.3.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.2.3\\swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.2.3\\swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512"
],
"logs": []
}
Loading…
Cancel
Save