add inventory page

master
Lucas Delanier 2 years ago
parent ec7ede5539
commit 81ff697b49

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

@ -24,7 +24,6 @@
<ItemGroup>
<Folder Include="Data\" />
<Folder Include="Factories\" />
<Folder Include="Models\" />
</ItemGroup>
<ItemGroup>

@ -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,76 @@
@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>Inventory</h1>
<InventoryItem Index="0" />
<InventoryItem Index="1" />
<InventoryItem Index="2" />
<InventoryItem Index="3" />
<InventoryItem Index="4" />
<InventoryItem Index="5" />
<InventoryItem Index="6" />
<InventoryItem Index="7" />
<InventoryItem Index="8" />
<InventoryItem Index="9" />
<InventoryItem Index="10" />
<InventoryItem Index="11" />
<InventoryItem Index="12" />
<InventoryItem Index="13" />
<InventoryItem Index="14" />
<InventoryItem Index="15" />
<InventoryItem Index="16" />
<InventoryItem Index="17" />
</div>
</div>
</div>
</div>
</div>
<div class="col-6">
<div>Available items:</div>
<div>
<div class="css-grid d-sm-block">
<DataGrid TItem="Item"
Data="@Items"
TotalItems="@totalItem"
PageSize="6"
ShowPager
Responsive>
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="#" />
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Image">
<DisplayTemplate>
@if (!string.IsNullOrWhiteSpace(context.ImageBase64))
{
<img src="data:image/png;base64, @(context.ImageBase64)" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style="min-width: 60px; max-width: 60px" />
}
else
{
<img src="images/default.png" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style="max-width: 60px" />
}
</DisplayTemplate>
</DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.DisplayName)" Caption="Display name" />
</DataGrid>
</div>
</div>
</div>
<div>Actions</div>
<div class="actions" id="actions">
</div>
</div>
</div>
</CascadingValue>

@ -0,0 +1,55 @@
using BlazorApp.Models;
using BlazorApp.Services;
using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
namespace BlazorApp.Components
{
public partial class InventoryComponent
{
[Inject]
public IDataService DataService { get; set; }
private int totalItem;
public Item CurrentDragItem { get; set; }
[CascadingParameter]
public InventoryComponent Parent { get; set; }
public List<Item> RecipeItems { get; set; }
public List<Item> Items { get; set; } = new List<Item>();
public ObservableCollection<InventoryAction> Actions { get; set; }
[Inject]
internal IJSRuntime JavaScriptRuntime { get; set; }
public InventoryComponent()
{
Actions = new ObservableCollection<InventoryAction>();
Actions.CollectionChanged += OnActionsCollectionChanged;
this.RecipeItems = new List<Item> { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null };
}
protected override async Task OnAfterRenderAsync(bool firstRender)
{
base.OnAfterRenderAsync(firstRender);
if (!firstRender)
{
return;
}
Items = await DataService.getAll();
totalItem = await DataService.Count();
StateHasChanged();
}
private void OnActionsCollectionChanged(object? sender, NotifyCollectionChangedEventArgs e)
{
JavaScriptRuntime.InvokeVoidAsync("Crafting.AddActions", e.NewItems);
}
}
}

@ -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,14 @@
<div
class="item"
ondragover="event.preventDefault();"
draggable="true"
@ondragstart="@OnDragStart"
@ondrop="@OnDrop"
@ondragenter="@OnDragEnter"
@ondragleave="@OnDragLeave">
@if (Item != null)
{
@Item.DisplayName
}
</div>

@ -0,0 +1,65 @@
using BlazorApp.Models;
using BlazorApp.Pages;
using Blazorise;
using Microsoft.AspNetCore.Components;
namespace BlazorApp.Components
{
public partial class InventoryItem
{
[Parameter]
public int Index { get; set; }
[Parameter]
public Item Item { get; set; }
[Parameter]
public bool NoDrop { get; set; }
[CascadingParameter]
public InventoryComponent Parent { get; set; }
internal void OnDragEnter()
{
if (NoDrop)
{
return;
}
Parent.Actions.Add(new InventoryAction { Action = "Drag Enter", Item = this.Item, Index = this.Index });
}
internal void OnDragLeave()
{
if (NoDrop)
{
return;
}
Parent.Actions.Add(new InventoryAction { Action = "Drag Leave", Item = this.Item, Index = this.Index });
}
internal void OnDrop()
{
if (NoDrop)
{
return;
}
this.Item = Parent.CurrentDragItem;
Parent.Actions.Add(new InventoryAction { Action = "Drop", Item = this.Item, Index = this.Index });
}
private void OnDragStart()
{
Parent.CurrentDragItem = this.Item;
Parent.Actions.Add(new InventoryAction { Action = "Drag Start", Item = this.Item, Index = this.Index });
}
}
}

@ -0,0 +1,10 @@
.item {
width: 64px;
height: 64px;
border: 1px solid;
display: flex;
justify-content: center;
background: #8b8b8b;
box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff;
}

@ -0,0 +1,11 @@
using BlazorApp.Models;
namespace BlazorApp.Components
{
public class ItemInInventory
{
public int Index { get; set; }
public Item? Item { 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>

@ -1,12 +1,14 @@
namespace BlazorApp.Pages;

using BlazorApp.Components;
using BlazorApp.Models;
using BlazorApp.Services;
using Microsoft.AspNetCore.Components;
public partial class Index
namespace BlazorApp.Pages
{
public partial class Index
{
[Inject]
public IDataService DataService { get; set; }
@ -28,4 +30,5 @@ public partial class Index
StateHasChanged();
}
}
}

@ -0,0 +1,8 @@
@page "/inventory"
@using System.Globalization
@using BlazorApp.Components
<h1>My Inventory</h1>
<InventoryComponent />

@ -0,0 +1,31 @@

using BlazorApp.Components;
using BlazorApp.Models;
using BlazorApp.Services;
using Microsoft.AspNetCore.Components;
namespace BlazorApp.Pages
{
public partial class Inventory
{
[Inject]
public IDataService DataService { get; set; }
public List<Item> Items { get; set; } = new List<Item>();
protected override async Task OnAfterRenderAsync(bool firstRender)
{
base.OnAfterRenderAsync(firstRender);
if (!firstRender)
{
return;
}
Items = await DataService.getAll();
StateHasChanged();
}
}
}

@ -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="">BlazorAppClean</a>
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
@ -10,28 +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 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="counter">
<span class="oi oi-plus" aria-hidden="true"></span> Counter
<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="fetchdata">
<span class="oi oi-list-rich" aria-hidden="true"></span> Fetch data
<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="list">
<span class="oi oi-list-rich" aria-hidden="true"></span> List
<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="episodes">
<span class="oi oi-list-rich" aria-hidden="true"></span> Episodes
<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

File diff suppressed because one or more lines are too long

@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
},
"projects": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",

@ -8,77 +8,89 @@ build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = BlazorApp
build_property.RootNamespace = BlazorApp
build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\
build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp
build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp
build_property._RazorSourceGeneratorDebug =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/App.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/App.razor]
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQmxhem9yUm91dGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/List.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW52ZW50b3J5LnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/List.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEN1bHR1cmVTZWxlY3Rvci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFRhYmxlVGVtcGxhdGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/_Imports.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-0c7vkjpwvp
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZ0l0ZW0ucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-syyk20fth2
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlDb21wb25lbnQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-hwopnmcvyc
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlJdGVtLnJhem9y
build_metadata.AdditionalFiles.CssScope = b-qvaqnp1p6p
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-3dsd3z3yec
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-7cxxmz0cwl
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnonv3/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
[C:/Users/delan/Source/Repos/minecraft_compagnonv99/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =

@ -1 +1 @@
98971a0792c5a5dc01918a0ed182a9ef045d55d1
5efcc892527fe2bcc530cc00312b29acb0d37372

@ -198,3 +198,55 @@ C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\ob
C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.AssemblyReference.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.Ressources.Pages.List.fr-FR.resources
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.GenerateResource.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfoInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.AssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CoreCompileInputs.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.RazorAssemblyInfo.cs
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\refint\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.Development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\appsettings.json
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.staticwebassets.runtime.json
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.exe
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.deps.json
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.runtimeconfig.json
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\BlazorApp.pdb
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.LocalStorage.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazored.Modal.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Bootstrap.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.DataGrid.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\Microsoft.JSInterop.WebAssembly.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\bin\Debug\net6.0\System.IO.Pipelines.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\fr-FR\BlazorApp.resources.dll
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\Crafting.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\CraftingItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryComponent.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Components\InventoryItem.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\bundle\BlazorApp.styles.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.csproj.CopyComplete
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\BlazorApp.genruntimeconfig.cache
C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\BlazorApp\BlazorApp\obj\Debug\net6.0\ref\BlazorApp.dll

@ -1 +1 @@
2fe5461b10f471cb885b7eb915b4e3582ee166ab
520817c999ebce68318a90e784f68124d73c7f62

@ -28,6 +28,70 @@
overflow: hidden;
display:inline;
}
/* _content/BlazorApp/Components/InventoryComponent.razor.rz.scp.css */
.css-grid[b-hwopnmcvyc] {
grid-template-columns: repeat(1,minmax(0,1fr));
gap: 10px;
display: grid;
width: 500px;
}
h1[b-hwopnmcvyc] {
margin: 5px 10px;
padding-inline-end: 300px;
font-family: 'VT323', monospace;
font-size: 24px;
color: #404040;
}
.content[b-hwopnmcvyc] {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.slotSpace[b-hwopnmcvyc] {
margin: 10px 10px;
display: flex;
flex-wrap: wrap;
}
.css-inv[b-hwopnmcvyc] {
grid-template-columns: repeat(6,minmax(0,1fr));
gap: 10px;
width: 410px;
background: #c6c6c6;
border-radius: 3px;
box-shadow: 5px 5px 0px #555555, inset 4px 4px 0px #fefefe;
padding-top: 5px;
padding-left: 5px;
margin-bottom: 10px;
}
.actions[b-hwopnmcvyc] {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
.body[b-hwopnmcvyc] {
display: flex;
background: #ccc;
box-sizing: border-box;
width: 100%;
height: 80vh;
}
/* _content/BlazorApp/Components/InventoryItem.razor.rz.scp.css */
.item[b-qvaqnp1p6p] {
width: 64px;
height: 64px;
border: 1px solid;
display: flex;
justify-content: center;
background: #8b8b8b;
box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;

@ -26,6 +26,70 @@
overflow: hidden;
display:inline;
}
/* _content/BlazorApp/Components/InventoryComponent.razor.rz.scp.css */
.css-grid[b-hwopnmcvyc] {
grid-template-columns: repeat(1,minmax(0,1fr));
gap: 10px;
display: grid;
width: 500px;
}
h1[b-hwopnmcvyc] {
margin: 5px 10px;
padding-inline-end: 300px;
font-family: 'VT323', monospace;
font-size: 24px;
color: #404040;
}
.content[b-hwopnmcvyc] {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.slotSpace[b-hwopnmcvyc] {
margin: 10px 10px;
display: flex;
flex-wrap: wrap;
}
.css-inv[b-hwopnmcvyc] {
grid-template-columns: repeat(6,minmax(0,1fr));
gap: 10px;
width: 410px;
background: #c6c6c6;
border-radius: 3px;
box-shadow: 5px 5px 0px #555555, inset 4px 4px 0px #fefefe;
padding-top: 5px;
padding-left: 5px;
margin-bottom: 10px;
}
.actions[b-hwopnmcvyc] {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
.body[b-hwopnmcvyc] {
display: flex;
background: #ccc;
box-sizing: border-box;
width: 100%;
height: 80vh;
}
/* _content/BlazorApp/Components/InventoryItem.razor.rz.scp.css */
.item[b-qvaqnp1p6p] {
width: 64px;
height: 64px;
border: 1px solid;
display: flex;
justify-content: center;
background: #8b8b8b;
box-shadow: inset 1.5px 1.5px 0px rgba(55, 55, 55, 0.8), inset -2px -2px 0px #ffffff;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;

@ -1,6 +1,6 @@
{
"Version": 1,
"Hash": "bNQTdB3DWu/47GrSzzPIbvDtrS9JJXxVeRhmPTtYCPM=",
"Hash": "GRZ3O/wlvOucXPJPCh/3d2YvQEOrV5pvB6CVgXyGfcI=",
"Source": "BlazorApp",
"BasePath": "_content/BlazorApp",
"Mode": "Default",
@ -10,7 +10,7 @@
{
"Name": "BlazorApp\\wwwroot",
"Source": "BlazorApp",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"Pattern": "**"
}
@ -680,10 +680,10 @@
"OriginalItemSpec": "C:\\Users\\delan\\.nuget\\packages\\blazorise\\1.1.3.1\\staticwebassets\\vendors\\Pickr.js"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "Components/Crafting.razor.js",
"AssetKind": "All",
@ -697,10 +697,27 @@
"OriginalItemSpec": "Components\\Crafting.razor.js"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\Components\\InventoryComponent.razor.js",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "Components/InventoryComponent.razor.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "Components\\InventoryComponent.razor.js"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css",
"SourceId": "BlazorApp",
"SourceType": "Computed",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "BlazorApp.styles.css",
"AssetKind": "All",
@ -711,13 +728,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css"
"OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css",
"SourceId": "BlazorApp",
"SourceType": "Computed",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "BlazorApp.bundle.scp.css",
"AssetKind": "All",
@ -728,13 +745,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css"
"OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/bootstrap/bootstrap.min.css",
"AssetKind": "All",
@ -748,10 +765,10 @@
"OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/bootstrap/bootstrap.min.css.map",
"AssetKind": "All",
@ -765,10 +782,10 @@
"OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css.map"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min.css",
"AssetKind": "All",
@ -782,10 +799,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.eot",
"AssetKind": "All",
@ -799,10 +816,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.otf",
"AssetKind": "All",
@ -816,10 +833,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.svg",
"AssetKind": "All",
@ -833,10 +850,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.ttf",
"AssetKind": "All",
@ -850,10 +867,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.woff",
"AssetKind": "All",
@ -867,10 +884,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/FONT-LICENSE",
"AssetKind": "All",
@ -884,10 +901,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\FONT-LICENSE"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/ICON-LICENSE",
"AssetKind": "All",
@ -901,10 +918,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\ICON-LICENSE"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/README.md",
"AssetKind": "All",
@ -918,10 +935,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\README.md"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/site.css",
"AssetKind": "All",
@ -935,10 +952,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "fake-data.json",
"AssetKind": "All",
@ -952,10 +969,10 @@
"OriginalItemSpec": "wwwroot\\fake-data.json"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "favicon.ico",
"AssetKind": "All",
@ -969,10 +986,10 @@
"OriginalItemSpec": "wwwroot\\favicon.ico"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "images/bbb.png",
"AssetKind": "All",
@ -986,10 +1003,10 @@
"OriginalItemSpec": "wwwroot\\images\\bbb.png"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "images/default.png",
"AssetKind": "All",
@ -1003,10 +1020,10 @@
"OriginalItemSpec": "wwwroot\\images\\default.png"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "images/lefel.png",
"AssetKind": "All",
@ -1020,10 +1037,10 @@
"OriginalItemSpec": "wwwroot\\images\\lefel.png"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html",
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "index.html",
"AssetKind": "All",

File diff suppressed because one or more lines are too long

@ -851,11 +851,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",

@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "Vdh0sgl/GbWQTg33McLQpbe85S9IHQoQxrCJxshzEQsivcNGk1wYktrp6SnwuTPMLGNlWqChEDPytlrdPUc7VA==",
"dgSpecHash": "T9P77CF8YZ9iyLRsQv9OYXhwlODkBsWig0HQuMZ9jlh4wTAYhaddMPoZ+rUcLt2exwqg0ZIm+SFWI7450vSzrw==",
"success": true,
"projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"expectedPackageFiles": [
"C:\\Users\\delan\\.nuget\\packages\\blazored.localstorage\\4.3.0\\blazored.localstorage.4.3.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\blazored.modal\\7.1.0\\blazored.modal.7.1.0.nupkg.sha512",

@ -8,9 +8,9 @@ build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Minecraft.Crafting.Api
build_property.RootNamespace = Minecraft.Crafting.Api
build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\Minecraft.Crafting.Api\
build_property.ProjectDir = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\Minecraft.Crafting.Api\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv3\Sources\Minecraft.Crafting.Api
build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnonv99\Sources\Minecraft.Crafting.Api
build_property._RazorSourceGeneratorDebug =

@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {}
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {}
},
"projects": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectName": "Minecraft.Crafting.Api",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\obj\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",

@ -358,11 +358,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectName": "Minecraft.Crafting.Api",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\obj\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\delan\\AppData\\Roaming\\NuGet\\NuGet.Config",

@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "dIR3HLI8rJhyZPaqt07qik7cDgKs0H4qdXDllhbTiSb8SznM4as3pCwTpJeQQddBILjWDwA6Jglla7JdpbhA/Q==",
"dgSpecHash": "3yrEsMFi+j0jdEEZ7+Op8IZV4R38B+xchDtw/ks5zoK1RUNxaRAZDJLzrpyrSHArTWs824F4ygP4T17DCPTWxg==",
"success": true,
"projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv3\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnonv99\\Sources\\Minecraft.Crafting.Api\\Minecraft.Crafting.Api.csproj",
"expectedPackageFiles": [
"C:\\Users\\delan\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
"C:\\Users\\delan\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",

Loading…
Cancel
Save