master
Lucas Delanier 2 years ago
parent adf93d240c
commit 8d4eb3eeff

@ -19,6 +19,7 @@
<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>
@ -30,4 +31,10 @@
<None Include="Modals\DeleteConfirmation.razor" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Ressources\Pages.List.fr-FR.resx">
<Generator></Generator>
</EmbeddedResource>
</ItemGroup>
</Project>

@ -54,7 +54,7 @@
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="" Filterable=false />
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="" Filterable=false>
<DisplayTemplate>
<InventoryItem Item="@context"/>
<InventoryItem Item="@context" NoDrop="true"/>
</DisplayTemplate>
</DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.DisplayName)" Caption="Display name" Filterable />

@ -1,8 +1,10 @@
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;
@ -14,6 +16,8 @@ namespace BlazorApp.Components
[Inject]
public IDataService DataService { get; set; }
private int totalItem;
public Item CurrentDragItem { get; set; }
@ -76,11 +80,13 @@ namespace BlazorApp.Components
{
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" });
}
}

@ -1,7 +1,7 @@
@page "/inventory"
@using System.Globalization
@using BlazorApp.Components
<h1>My Inventory</h1>
<h1>@Localizer["Title"]</h1>
<InventoryComponent Items="Items" />

@ -5,17 +5,20 @@ using BlazorApp.Models;
using BlazorApp.Services;
using Blazorise.DataGrid;
using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Localization;
namespace BlazorApp.Pages
{
namespace BlazorApp.Pages;
public partial class Inventory
{
[Inject]
public IDataService DataService { get; set; }
private int totalItem;
[Inject]
public IStringLocalizer<List> Localizer { get; set; }
public List<Item> Items { get; set; } = new List<Item>();
private string? title;
public List<Item> Items { get; set; } = new List<Item>();
protected override async Task OnAfterRenderAsync(bool firstRender)
{
@ -25,8 +28,7 @@ namespace BlazorApp.Pages
{
return;
}
Items = await DataService.List(0, await DataService.Count());
Items = await DataService.List(0, await DataService.Count());
StateHasChanged();
}
@ -44,4 +46,4 @@ namespace BlazorApp.Pages
}
}
}
}

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

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<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>List of elements</value>
</data>
</root>

@ -1,6 +1,6 @@
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="">BlazorAppClean</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>

@ -12,12 +12,16 @@
"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": {}
},
"resources": {
"en-US/BlazorApp.resources.dll": {
"locale": "en-US"
},
"fr-FR/BlazorApp.resources.dll": {
"locale": "fr-FR"
}
@ -38,7 +42,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 +56,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 +70,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 +84,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 +98,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 +110,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 +169,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 +361,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_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
"C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
},
"projects": {
"C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectUniqueName": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectPath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"outputPath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\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,89 +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_compagnon\Sources\BlazorApp\BlazorApp\
build_property.ProjectDir = C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp
build_property.MSBuildProjectDirectory = C:\Users\delan\source\repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp
build_property._RazorSourceGeneratorDebug =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/App.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/App.razor]
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQmxhem9yUm91dGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Inventory.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW52ZW50b3J5LnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/List.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/List.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEN1bHR1cmVTZWxlY3Rvci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFRhYmxlVGVtcGxhdGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/_Imports.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-0c7vkjpwvp
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZ0l0ZW0ucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-syyk20fth2
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/InventoryComponent.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlDb21wb25lbnQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-hwopnmcvyc
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/InventoryItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJbnZlbnRvcnlJdGVtLnJhem9y
build_metadata.AdditionalFiles.CssScope = b-qvaqnp1p6p
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-3dsd3z3yec
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-7cxxmz0cwl
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/delan/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
[C:/Users/delan/source/repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =

@ -1 +1 @@
5efcc892527fe2bcc530cc00312b29acb0d37372
c48aeeb310f8a48dba7b738a3d0a441c5edcf556

@ -354,3 +354,11 @@ C:\Users\delan\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\obj\
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

@ -1 +1 @@
3bd2ce163888310fbc4f5c47b05f484b65d01014
01965f02295829bb3bf67ef34e4c6aef53236c55

@ -1,6 +1,6 @@
{
"Version": 1,
"Hash": "fSmoLNMVstWrYJ3XV7dtOjNpHmPvkkXIiWiwP0kRNGs=",
"Hash": "UVXlrQcymugyuSuhlD/MvWBrn515o4KZUU3hEH98rtw=",
"Source": "BlazorApp",
"BasePath": "_content/BlazorApp",
"Mode": "Default",
@ -10,7 +10,7 @@
{
"Name": "BlazorApp\\wwwroot",
"Source": "BlazorApp",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\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_compagnon\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\Components\\Crafting.razor.js",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "Components/Crafting.razor.js",
"AssetKind": "All",
@ -697,10 +697,10 @@
"OriginalItemSpec": "Components\\Crafting.razor.js"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\Components\\InventoryComponent.razor.js",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\Components\\InventoryComponent.razor.js",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "Components/InventoryComponent.razor.js",
"AssetKind": "All",
@ -714,10 +714,10 @@
"OriginalItemSpec": "Components\\InventoryComponent.razor.js"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css",
"SourceId": "BlazorApp",
"SourceType": "Computed",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "BlazorApp.styles.css",
"AssetKind": "All",
@ -728,13 +728,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css"
"OriginalItemSpec": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp.styles.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css",
"SourceId": "BlazorApp",
"SourceType": "Computed",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "BlazorApp.bundle.scp.css",
"AssetKind": "All",
@ -745,13 +745,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css"
"OriginalItemSpec": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/bootstrap/bootstrap.min.css",
"AssetKind": "All",
@ -765,10 +765,10 @@
"OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/bootstrap/bootstrap.min.css.map",
"AssetKind": "All",
@ -782,10 +782,10 @@
"OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css.map"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\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_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min.css",
"AssetKind": "All",
@ -799,10 +799,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.eot",
"AssetKind": "All",
@ -816,10 +816,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.otf",
"AssetKind": "All",
@ -833,10 +833,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.svg",
"AssetKind": "All",
@ -850,10 +850,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.ttf",
"AssetKind": "All",
@ -867,10 +867,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/font/fonts/open-iconic.woff",
"AssetKind": "All",
@ -884,10 +884,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\FONT-LICENSE",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/FONT-LICENSE",
"AssetKind": "All",
@ -901,10 +901,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\FONT-LICENSE"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\ICON-LICENSE",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/ICON-LICENSE",
"AssetKind": "All",
@ -918,10 +918,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\ICON-LICENSE"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\open-iconic\\README.md",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/open-iconic/README.md",
"AssetKind": "All",
@ -935,10 +935,10 @@
"OriginalItemSpec": "wwwroot\\css\\open-iconic\\README.md"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\css\\site.css",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "css/site.css",
"AssetKind": "All",
@ -952,10 +952,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\fake-data.json",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "fake-data.json",
"AssetKind": "All",
@ -969,10 +969,10 @@
"OriginalItemSpec": "wwwroot\\fake-data.json"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\favicon.ico",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "favicon.ico",
"AssetKind": "All",
@ -986,10 +986,10 @@
"OriginalItemSpec": "wwwroot\\favicon.ico"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\bbb.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "images/bbb.png",
"AssetKind": "All",
@ -1003,10 +1003,10 @@
"OriginalItemSpec": "wwwroot\\images\\bbb.png"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\default.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "images/default.png",
"AssetKind": "All",
@ -1020,10 +1020,10 @@
"OriginalItemSpec": "wwwroot\\images\\default.png"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\images\\lefel.png",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"BasePath": "_content/BlazorApp",
"RelativePath": "images/lefel.png",
"AssetKind": "All",
@ -1037,10 +1037,10 @@
"OriginalItemSpec": "wwwroot\\images\\lefel.png"
},
{
"Identity": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html",
"Identity": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\index.html",
"SourceId": "BlazorApp",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\wwwroot\\",
"ContentRoot": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\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_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectUniqueName": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectPath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\delan\\.nuget\\packages\\",
"outputPath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"outputPath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\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": "OewcA/bPRBIL4lyeU04DTh/dA2q1Hr+Pg2EiCzz16C1SqpgWzipmwiJJX8OgohSyEmUzYp5hmpxEYvkVco/wKA==",
"dgSpecHash": "nNpzn3r1lnxuSbobhCoOaNyhS4YPU2ChQxrX+aFpgBT5mad2dZu2+nVv8me+6gMt/CaytMnw4xRArLzEtflfUQ==",
"success": true,
"projectFilePath": "C:\\Users\\delan\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectFilePath": "C:\\Users\\delan\\source\\repos\\minecraft_compagnon\\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",

@ -182,3 +182,30 @@
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

Loading…
Cancel
Save