affichage image list

lucas
Lucas DELANIER 3 years ago
parent 3cb13830d8
commit e047351717

Binary file not shown.

@ -8,6 +8,6 @@
@if (Item != null)
{
@Item.DisplayName
<img src="data:image/png;base64, @(Item.ImageBase64)" class="img-thumbnail" title="@Item.DisplayName" alt="@Item.DisplayName" style="min-width: 50px; max-width: 150px" />
}
</div>

@ -2,8 +2,9 @@
public class ItemModel
{
public int Id { get; set; }
{
public int Id { get; set; }
[Required]
[StringLength(50, ErrorMessage = "The display name must not exceed 50 characters.")]
@ -32,4 +33,7 @@
[Required(ErrorMessage = "The image of the item is mandatory!")]
public string ImageBase64 { get; set; }
[Required(ErrorMessage = "L'image de l'item est obligatoire !")]
public byte[] ImageContent { get; set; }
}

@ -19,13 +19,13 @@
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="#" />
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Image">
<DisplayTemplate>
@if (!string.IsNullOrWhiteSpace(context.ImageBase64))
@if (File.Exists($"{WebHostEnvironment.WebRootPath}/images/{context.Name}.png"))
{
<img src="data:image/png;base64, @(context.ImageBase64)" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style="min-width: 50px; max-width: 150px" />
<img src="images/@(context.Name).png" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style="max-width: 150px"/>
}
else
{
<img src="images/default.png" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style="max-width: 150px" />
<img src="images/default.png" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style="max-width: 150px"/>
}
</DisplayTemplate>
</DataGridColumn>

@ -1,376 +1,376 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"BlazorApp/1.0.0": {
"dependencies": {
"Blazored.LocalStorage": "4.3.0",
"Blazored.Modal": "7.1.0",
"Blazorise.Bootstrap": "1.1.3.1",
"Blazorise.DataGrid": "1.1.3.1",
"Blazorise.Icons.FontAwesome": "1.1.3.1"
},
"runtime": {
"BlazorApp.dll": {}
},
"resources": {
"fr-FR/BlazorApp.resources.dll": {
"locale": "fr-FR"
}
}
},
"Blazored.LocalStorage/4.3.0": {
"dependencies": {
"Microsoft.AspNetCore.Components.Web": "6.0.9"
},
"runtime": {
"lib/net6.0/Blazored.LocalStorage.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
},
"Blazored.Modal/7.1.0": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.JSInterop.WebAssembly": "6.0.3"
},
"runtime": {
"lib/net6.0/Blazored.Modal.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
},
"Blazorise/1.1.3.1": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.3"
},
"runtime": {
"lib/net6.0/Blazorise.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"Blazorise.Bootstrap/1.1.3.1": {
"dependencies": {
"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"
},
"runtime": {
"lib/net6.0/Blazorise.Bootstrap.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"Blazorise.DataGrid/1.1.3.1": {
"dependencies": {
"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"
},
"runtime": {
"lib/net6.0/Blazorise.DataGrid.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"Blazorise.Icons.FontAwesome/1.1.3.1": {
"dependencies": {
"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"
},
"runtime": {
"lib/net6.0/Blazorise.Icons.FontAwesome.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"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"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Components/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Authorization": "6.0.9",
"Microsoft.AspNetCore.Components.Analyzers": "6.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.9": {},
"Microsoft.AspNetCore.Components.Forms/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Components.Web/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Forms": "6.0.9",
"Microsoft.Extensions.DependencyInjection": "6.0.0",
"Microsoft.JSInterop": "6.0.9",
"System.IO.Pipelines": "6.0.3"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Metadata/6.0.9": {
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.1122.52304"
}
}
},
"Microsoft.Extensions.Options/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.Primitives/6.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"Microsoft.JSInterop/6.0.9": {
"runtime": {
"lib/net6.0/Microsoft.JSInterop.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.JSInterop.WebAssembly/6.0.3": {
"dependencies": {
"Microsoft.JSInterop": "6.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {
"assemblyVersion": "6.0.3.0",
"fileVersion": "6.0.322.12401"
}
}
},
"System.IO.Pipelines/6.0.3": {
"runtime": {
"lib/net6.0/System.IO.Pipelines.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.522.21309"
}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {}
}
},
"libraries": {
"BlazorApp/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Blazored.LocalStorage/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CfHp9SWN45cM/TM8uw4pELQBfCRtMssCMSOjsEXVWibeYBn36TLpzw+J1vsC2Su2BEQ3Et19A5+GqK1S3kHbTQ==",
"path": "blazored.localstorage/4.3.0",
"hashPath": "blazored.localstorage.4.3.0.nupkg.sha512"
},
"Blazored.Modal/7.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ft5bX5barhyzpQc9jjU029ByrAQXgqSMItwhmEbr0pb7r+of8XH0E/OyS8K6O6Disq5R+p4wpt+W+NGg3/OTMA==",
"path": "blazored.modal/7.1.0",
"hashPath": "blazored.modal.7.1.0.nupkg.sha512"
},
"Blazorise/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HeCfUVSjWetHruRTj3oK9FVSN+i/HQ2sxNGdqVtWjvzqZKPS4QURI4ieee8HA2pYsPQjwMuBLA2GT39lCrMUHg==",
"path": "blazorise/1.1.3.1",
"hashPath": "blazorise.1.1.3.1.nupkg.sha512"
},
"Blazorise.Bootstrap/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+ioBDlURgSJGdVVwpgd4bJEekFxI4oZ9tfIoIkAKQK5jJwZP1adKziB/XtAaQnEiYv6hnAHC6+jPrnEC7R0Eow==",
"path": "blazorise.bootstrap/1.1.3.1",
"hashPath": "blazorise.bootstrap.1.1.3.1.nupkg.sha512"
},
"Blazorise.DataGrid/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9dZeR8uo726neR/SZdzfICLe/LCg7XxRD/GqM7FknmMkryogopw6pturJ4iTX47a6YthpqCD8XbOY0p3UGf2XQ==",
"path": "blazorise.datagrid/1.1.3.1",
"hashPath": "blazorise.datagrid.1.1.3.1.nupkg.sha512"
},
"Blazorise.Icons.FontAwesome/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JoIxzJsYUJoFUaymZ/K2kQOwPi/e1XABewXQo4jKyEkZDX7S2zkpen4U2ngN6aa/mb4RcJQ13X+86b9bju9jzA==",
"path": "blazorise.icons.fontawesome/1.1.3.1",
"hashPath": "blazorise.icons.fontawesome.1.1.3.1.nupkg.sha512"
},
"Microsoft.AspNetCore.Authorization/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-paH0Zgo6yWMhVwaWZ0wqyY5az7zv89C5AlRfrpAAjAyKLvgBuTIQIK9kPSIGAoOhvt56fxcDTLws3cckauWOWw==",
"path": "microsoft.aspnetcore.authorization/6.0.9",
"hashPath": "microsoft.aspnetcore.authorization.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ueQkgDVg30fWLRrHiK/yaDEH2J8UUZ8+5KykWTupiHoLxHBcdx60lxelmJWrLzHsiA/1aoZMhPF2r5sGDPd8nw==",
"path": "microsoft.aspnetcore.components/6.0.9",
"hashPath": "microsoft.aspnetcore.components.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yVI41+FbLzNhBUEPWNTEwFCz3+JkzCfiD1K+8MLFa66+yDSDWBUbzXtTxzVb2I8RstANXalR/6BFUvmdYjruAQ==",
"path": "microsoft.aspnetcore.components.analyzers/6.0.9",
"hashPath": "microsoft.aspnetcore.components.analyzers.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Forms/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uPFeDc3Ur8lReE6J5k+8Y+8xIhXiUHKBB3w2IV37bBh2vOSTpoMq9RkcKC8omeulqGRD4iPyzGxEA7OIIXqC0A==",
"path": "microsoft.aspnetcore.components.forms/6.0.9",
"hashPath": "microsoft.aspnetcore.components.forms.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Web/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fNb8IGYDYYaWrt20ObNhwXkh5AhYyiphrIZDpNegvbtLtlJMsz2OaJztgpVDGNLmb7x20TQ3GlnGQiqHChcmeA==",
"path": "microsoft.aspnetcore.components.web/6.0.9",
"hashPath": "microsoft.aspnetcore.components.web.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Metadata/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cQET2vOT72zW+kOd71KQE80qBSQJEnWs86HfJEZPzHgTfn/o5UyzHHRosP1EQX8iPQ9ESxmd+AJedggkSxN93Q==",
"path": "microsoft.aspnetcore.metadata/6.0.9",
"hashPath": "microsoft.aspnetcore.metadata.6.0.9.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
"path": "microsoft.extensions.dependencyinjection/6.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"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"
},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"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"
},
"Microsoft.Extensions.Options/6.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"
},
"Microsoft.Extensions.Primitives/6.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"
},
"Microsoft.JSInterop/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6SRDR3QEhnT3WuNittrXn0yKM2a2J7E22GAdSuKzC8tPcAjA25tHJeyFcRIJFZBmsIE0tuJzXopLrvG4sTacAg==",
"path": "microsoft.jsinterop/6.0.9",
"hashPath": "microsoft.jsinterop.6.0.9.nupkg.sha512"
},
"Microsoft.JSInterop.WebAssembly/6.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4B7RdZ01eKShey9MllKrVjEJZN/Y1Hvku/qTwVKSwt/n+KgFmyYEkEMbSdKDWB7MbvCPZykCQbkKnKfLzML9sg==",
"path": "microsoft.jsinterop.webassembly/6.0.3",
"hashPath": "microsoft.jsinterop.webassembly.6.0.3.nupkg.sha512"
},
"System.IO.Pipelines/6.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
"path": "system.io.pipelines/6.0.3",
"hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
"path": "system.runtime.compilerservices.unsafe/6.0.0",
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
}
}
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"BlazorApp/1.0.0": {
"dependencies": {
"Blazored.LocalStorage": "4.3.0",
"Blazored.Modal": "7.1.0",
"Blazorise.Bootstrap": "1.1.3.1",
"Blazorise.DataGrid": "1.1.3.1",
"Blazorise.Icons.FontAwesome": "1.1.3.1"
},
"runtime": {
"BlazorApp.dll": {}
},
"resources": {
"fr-FR/BlazorApp.resources.dll": {
"locale": "fr-FR"
}
}
},
"Blazored.LocalStorage/4.3.0": {
"dependencies": {
"Microsoft.AspNetCore.Components.Web": "6.0.9"
},
"runtime": {
"lib/net6.0/Blazored.LocalStorage.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
},
"Blazored.Modal/7.1.0": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.JSInterop.WebAssembly": "6.0.3"
},
"runtime": {
"lib/net6.0/Blazored.Modal.dll": {
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
}
}
},
"Blazorise/1.1.3.1": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.3"
},
"runtime": {
"lib/net6.0/Blazorise.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"Blazorise.Bootstrap/1.1.3.1": {
"dependencies": {
"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"
},
"runtime": {
"lib/net6.0/Blazorise.Bootstrap.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"Blazorise.DataGrid/1.1.3.1": {
"dependencies": {
"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"
},
"runtime": {
"lib/net6.0/Blazorise.DataGrid.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"Blazorise.Icons.FontAwesome/1.1.3.1": {
"dependencies": {
"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"
},
"runtime": {
"lib/net6.0/Blazorise.Icons.FontAwesome.dll": {
"assemblyVersion": "1.1.3.1",
"fileVersion": "1.1.3.1"
}
}
},
"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"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Components/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Authorization": "6.0.9",
"Microsoft.AspNetCore.Components.Analyzers": "6.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.9": {},
"Microsoft.AspNetCore.Components.Forms/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Components.Web/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Forms": "6.0.9",
"Microsoft.Extensions.DependencyInjection": "6.0.0",
"Microsoft.JSInterop": "6.0.9",
"System.IO.Pipelines": "6.0.3"
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.AspNetCore.Metadata/6.0.9": {
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.1122.52304"
}
}
},
"Microsoft.Extensions.Options/6.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
}
},
"Microsoft.Extensions.Primitives/6.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
}
},
"Microsoft.JSInterop/6.0.9": {
"runtime": {
"lib/net6.0/Microsoft.JSInterop.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41926"
}
}
},
"Microsoft.JSInterop.WebAssembly/6.0.3": {
"dependencies": {
"Microsoft.JSInterop": "6.0.9"
},
"runtime": {
"lib/net6.0/Microsoft.JSInterop.WebAssembly.dll": {
"assemblyVersion": "6.0.3.0",
"fileVersion": "6.0.322.12401"
}
}
},
"System.IO.Pipelines/6.0.3": {
"runtime": {
"lib/net6.0/System.IO.Pipelines.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.522.21309"
}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {}
}
},
"libraries": {
"BlazorApp/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Blazored.LocalStorage/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CfHp9SWN45cM/TM8uw4pELQBfCRtMssCMSOjsEXVWibeYBn36TLpzw+J1vsC2Su2BEQ3Et19A5+GqK1S3kHbTQ==",
"path": "blazored.localstorage/4.3.0",
"hashPath": "blazored.localstorage.4.3.0.nupkg.sha512"
},
"Blazored.Modal/7.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ft5bX5barhyzpQc9jjU029ByrAQXgqSMItwhmEbr0pb7r+of8XH0E/OyS8K6O6Disq5R+p4wpt+W+NGg3/OTMA==",
"path": "blazored.modal/7.1.0",
"hashPath": "blazored.modal.7.1.0.nupkg.sha512"
},
"Blazorise/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HeCfUVSjWetHruRTj3oK9FVSN+i/HQ2sxNGdqVtWjvzqZKPS4QURI4ieee8HA2pYsPQjwMuBLA2GT39lCrMUHg==",
"path": "blazorise/1.1.3.1",
"hashPath": "blazorise.1.1.3.1.nupkg.sha512"
},
"Blazorise.Bootstrap/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+ioBDlURgSJGdVVwpgd4bJEekFxI4oZ9tfIoIkAKQK5jJwZP1adKziB/XtAaQnEiYv6hnAHC6+jPrnEC7R0Eow==",
"path": "blazorise.bootstrap/1.1.3.1",
"hashPath": "blazorise.bootstrap.1.1.3.1.nupkg.sha512"
},
"Blazorise.DataGrid/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9dZeR8uo726neR/SZdzfICLe/LCg7XxRD/GqM7FknmMkryogopw6pturJ4iTX47a6YthpqCD8XbOY0p3UGf2XQ==",
"path": "blazorise.datagrid/1.1.3.1",
"hashPath": "blazorise.datagrid.1.1.3.1.nupkg.sha512"
},
"Blazorise.Icons.FontAwesome/1.1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JoIxzJsYUJoFUaymZ/K2kQOwPi/e1XABewXQo4jKyEkZDX7S2zkpen4U2ngN6aa/mb4RcJQ13X+86b9bju9jzA==",
"path": "blazorise.icons.fontawesome/1.1.3.1",
"hashPath": "blazorise.icons.fontawesome.1.1.3.1.nupkg.sha512"
},
"Microsoft.AspNetCore.Authorization/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-paH0Zgo6yWMhVwaWZ0wqyY5az7zv89C5AlRfrpAAjAyKLvgBuTIQIK9kPSIGAoOhvt56fxcDTLws3cckauWOWw==",
"path": "microsoft.aspnetcore.authorization/6.0.9",
"hashPath": "microsoft.aspnetcore.authorization.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ueQkgDVg30fWLRrHiK/yaDEH2J8UUZ8+5KykWTupiHoLxHBcdx60lxelmJWrLzHsiA/1aoZMhPF2r5sGDPd8nw==",
"path": "microsoft.aspnetcore.components/6.0.9",
"hashPath": "microsoft.aspnetcore.components.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yVI41+FbLzNhBUEPWNTEwFCz3+JkzCfiD1K+8MLFa66+yDSDWBUbzXtTxzVb2I8RstANXalR/6BFUvmdYjruAQ==",
"path": "microsoft.aspnetcore.components.analyzers/6.0.9",
"hashPath": "microsoft.aspnetcore.components.analyzers.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Forms/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uPFeDc3Ur8lReE6J5k+8Y+8xIhXiUHKBB3w2IV37bBh2vOSTpoMq9RkcKC8omeulqGRD4iPyzGxEA7OIIXqC0A==",
"path": "microsoft.aspnetcore.components.forms/6.0.9",
"hashPath": "microsoft.aspnetcore.components.forms.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Components.Web/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fNb8IGYDYYaWrt20ObNhwXkh5AhYyiphrIZDpNegvbtLtlJMsz2OaJztgpVDGNLmb7x20TQ3GlnGQiqHChcmeA==",
"path": "microsoft.aspnetcore.components.web/6.0.9",
"hashPath": "microsoft.aspnetcore.components.web.6.0.9.nupkg.sha512"
},
"Microsoft.AspNetCore.Metadata/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cQET2vOT72zW+kOd71KQE80qBSQJEnWs86HfJEZPzHgTfn/o5UyzHHRosP1EQX8iPQ9ESxmd+AJedggkSxN93Q==",
"path": "microsoft.aspnetcore.metadata/6.0.9",
"hashPath": "microsoft.aspnetcore.metadata.6.0.9.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
"path": "microsoft.extensions.dependencyinjection/6.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"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"
},
"Microsoft.Extensions.Logging.Abstractions/6.0.3": {
"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"
},
"Microsoft.Extensions.Options/6.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"
},
"Microsoft.Extensions.Primitives/6.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"
},
"Microsoft.JSInterop/6.0.9": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6SRDR3QEhnT3WuNittrXn0yKM2a2J7E22GAdSuKzC8tPcAjA25tHJeyFcRIJFZBmsIE0tuJzXopLrvG4sTacAg==",
"path": "microsoft.jsinterop/6.0.9",
"hashPath": "microsoft.jsinterop.6.0.9.nupkg.sha512"
},
"Microsoft.JSInterop.WebAssembly/6.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4B7RdZ01eKShey9MllKrVjEJZN/Y1Hvku/qTwVKSwt/n+KgFmyYEkEMbSdKDWB7MbvCPZykCQbkKnKfLzML9sg==",
"path": "microsoft.jsinterop.webassembly/6.0.3",
"hashPath": "microsoft.jsinterop.webassembly.6.0.3.nupkg.sha512"
},
"System.IO.Pipelines/6.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
"path": "system.io.pipelines/6.0.3",
"hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
"path": "system.runtime.compilerservices.unsafe/6.0.0",
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
}
}
}

@ -1,19 +1,19 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.GC.Server": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.GC.Server": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

File diff suppressed because one or more lines are too long

@ -1,88 +1,91 @@
{
"format": 1,
"restore": {
"C:\\Users\\felix\\Documents\\BUT2\\Blazor\\TP\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
},
"projects": {
"C:\\Users\\felix\\Documents\\BUT2\\Blazor\\TP\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\felix\\Documents\\BUT2\\Blazor\\TP\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\felix\\Documents\\BUT2\\Blazor\\TP\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\felix\\.nuget\\packages\\",
"outputPath": "C:\\Users\\felix\\Documents\\BUT2\\Blazor\\TP\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\felix\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Blazored.LocalStorage": {
"target": "Package",
"version": "[4.3.0, )"
},
"Blazored.Modal": {
"target": "Package",
"version": "[7.1.0, )"
},
"Blazorise.Bootstrap": {
"target": "Package",
"version": "[1.1.3.1, )"
},
"Blazorise.DataGrid": {
"target": "Package",
"version": "[1.1.3.1, )"
},
"Blazorise.Icons.FontAwesome": {
"target": "Package",
"version": "[1.1.3.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
}
}
}
}
{
"format": 1,
"restore": {
"C:\\Users\\ludelanier\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {}
},
"projects": {
"C:\\Users\\ludelanier\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ludelanier\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"projectName": "BlazorApp",
"projectPath": "C:\\Users\\ludelanier\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"packagesPath": "C:\\Users\\ludelanier\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ludelanier\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\ludelanier\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Blazored.LocalStorage": {
"target": "Package",
"version": "[4.3.0, )"
},
"Blazored.Modal": {
"target": "Package",
"version": "[7.1.0, )"
},
"Blazorise.Bootstrap": {
"target": "Package",
"version": "[1.1.3.1, )"
},
"Blazorise.DataGrid": {
"target": "Package",
"version": "[1.1.3.1, )"
},
"Blazorise.Icons.FontAwesome": {
"target": "Package",
"version": "[1.1.3.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -1,21 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\felix\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\felix\.nuget\packages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)blazorise\1.1.3.1\buildTransitive\Blazorise.props" Condition="Exists('$(NuGetPackageRoot)blazorise\1.1.3.1\buildTransitive\Blazorise.props')" />
<Import Project="$(NuGetPackageRoot)blazorise.datagrid\1.1.3.1\buildTransitive\Blazorise.DataGrid.props" Condition="Exists('$(NuGetPackageRoot)blazorise.datagrid\1.1.3.1\buildTransitive\Blazorise.DataGrid.props')" />
<Import Project="$(NuGetPackageRoot)blazorise.bootstrap\1.1.3.1\buildTransitive\Blazorise.Bootstrap.props" Condition="Exists('$(NuGetPackageRoot)blazorise.bootstrap\1.1.3.1\buildTransitive\Blazorise.Bootstrap.props')" />
<Import Project="$(NuGetPackageRoot)blazored.modal\7.1.0\buildTransitive\Blazored.Modal.props" Condition="Exists('$(NuGetPackageRoot)blazored.modal\7.1.0\buildTransitive\Blazored.Modal.props')" />
</ImportGroup>
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ludelanier\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\ludelanier\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)blazorise\1.1.3.1\buildTransitive\Blazorise.props" Condition="Exists('$(NuGetPackageRoot)blazorise\1.1.3.1\buildTransitive\Blazorise.props')" />
<Import Project="$(NuGetPackageRoot)blazorise.datagrid\1.1.3.1\buildTransitive\Blazorise.DataGrid.props" Condition="Exists('$(NuGetPackageRoot)blazorise.datagrid\1.1.3.1\buildTransitive\Blazorise.DataGrid.props')" />
<Import Project="$(NuGetPackageRoot)blazorise.bootstrap\1.1.3.1\buildTransitive\Blazorise.Bootstrap.props" Condition="Exists('$(NuGetPackageRoot)blazorise.bootstrap\1.1.3.1\buildTransitive\Blazorise.Bootstrap.props')" />
<Import Project="$(NuGetPackageRoot)blazored.modal\7.1.0\buildTransitive\Blazored.Modal.props" Condition="Exists('$(NuGetPackageRoot)blazored.modal\7.1.0\buildTransitive\Blazored.Modal.props')" />
</ImportGroup>
</Project>

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

@ -1 +1 @@
530904b53a71829fd3493ff0e93e87b6b5b1d1da
530904b53a71829fd3493ff0e93e87b6b5b1d1da

@ -1,132 +1,132 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = BlazorApp
build_property.RootNamespace = BlazorApp
build_property.ProjectDir = C:\Users\felix\Documents\BUT2\Blazor\TP\Sources\BlazorApp\BlazorApp\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\felix\Documents\BUT2\Blazor\TP\Sources\BlazorApp\BlazorApp
build_property._RazorSourceGeneratorDebug =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/App.razor]
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Components/Card.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDYXJkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Components/ShowItems.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xTaG93SXRlbXMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Components/TestRenderFragment.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xUZXN0UmVuZGVyRnJhZ21lbnQucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQmxhem9yUm91dGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Counter.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ291bnRlci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Episodes.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXBpc29kZXMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/FetchData.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRmV0Y2hEYXRhLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/List.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Pets1.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czEucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Pets2.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czIucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Pets3.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Pets4.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czQucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEN1bHR1cmVTZWxlY3Rvci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Shared/DoctorWhoLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXERvY3Rvcldob0xheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Shared/SurveyPrompt.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFN1cnZleVByb21wdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFRhYmxlVGVtcGxhdGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-0c7vkjpwvp
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZ0l0ZW0ucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-syyk20fth2
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-3dsd3z3yec
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-7cxxmz0cwl
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/felix/Documents/BUT2/Blazor/TP/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = BlazorApp
build_property.RootNamespace = BlazorApp
build_property.ProjectDir = C:\Users\ludelanier\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\ludelanier\Source\Repos\minecraft_compagnon\Sources\BlazorApp\BlazorApp
build_property._RazorSourceGeneratorDebug =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/App.razor]
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/Card.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDYXJkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/ShowItems.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xTaG93SXRlbXMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/TestRenderFragment.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xUZXN0UmVuZGVyRnJhZ21lbnQucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Modals/DeleteConfirmation.razor]
build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Add.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/BlazorRoute.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQmxhem9yUm91dGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Counter.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ291bnRlci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Edit.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Episodes.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXBpc29kZXMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/FetchData.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRmV0Y2hEYXRhLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/List.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Pets1.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czEucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Pets2.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czIucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Pets3.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Pets4.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUGV0czQucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/CultureSelector.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEN1bHR1cmVTZWxlY3Rvci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/DoctorWhoLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXERvY3Rvcldob0xheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/SurveyPrompt.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFN1cnZleVByb21wdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/TableTemplate.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFRhYmxlVGVtcGxhdGUucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/Crafting.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-0c7vkjpwvp
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Components/CraftingItem.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDcmFmdGluZ0l0ZW0ucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-syyk20fth2
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-3dsd3z3yec
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Shared/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-7cxxmz0cwl
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/_Host.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
[C:/Users/ludelanier/Source/Repos/minecraft_compagnon/Sources/BlazorApp/BlazorApp/Pages/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =

@ -1,17 +1,17 @@
// <auto-generated/>
global using global::Microsoft.AspNetCore.Builder;
global using global::Microsoft.AspNetCore.Hosting;
global using global::Microsoft.AspNetCore.Http;
global using global::Microsoft.AspNetCore.Routing;
global using global::Microsoft.Extensions.Configuration;
global using global::Microsoft.Extensions.DependencyInjection;
global using global::Microsoft.Extensions.Hosting;
global using global::Microsoft.Extensions.Logging;
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Net.Http.Json;
global using global::System.Threading;
global using global::System.Threading.Tasks;
// <auto-generated/>
global using global::Microsoft.AspNetCore.Builder;
global using global::Microsoft.AspNetCore.Hosting;
global using global::Microsoft.AspNetCore.Http;
global using global::Microsoft.AspNetCore.Routing;
global using global::Microsoft.Extensions.Configuration;
global using global::Microsoft.Extensions.DependencyInjection;
global using global::Microsoft.Extensions.Hosting;
global using global::Microsoft.Extensions.Logging;
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Net.Http.Json;
global using global::System.Threading;
global using global::System.Threading.Tasks;

@ -1 +1 @@
5860763757f4f08c7ebdea1b3a94a18109f17861
5860763757f4f08c7ebdea1b3a94a18109f17861

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

@ -1 +1 @@
39274d75b57d84777f566ef84223f08050df1afc
a701b455e2f40792acc16ace14e18c84189502df

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

@ -1 +1 @@
39300ed4498ab15545f8e8ddf50c181f657982eb
fee453e997400c7eb1fce242a8dfb219be5112bf

@ -1,163 +1,163 @@
@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
/* _content/BlazorApp/Components/Crafting.razor.rz.scp.css */
.css-grid[b-0c7vkjpwvp] {
grid-template-columns: repeat(4,minmax(0,1fr));
gap: 10px;
display: grid;
width: 286px;
}
.css-recipe[b-0c7vkjpwvp] {
grid-template-columns: repeat(3,minmax(0,1fr));
gap: 10px;
display: grid;
width: 212px;
}
.actions[b-0c7vkjpwvp] {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
/* _content/BlazorApp/Components/CraftingItem.razor.rz.scp.css */
.item[b-syyk20fth2] {
width: 64px;
height: 64px;
border: 1px solid;
overflow: hidden;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;
display: flex;
flex-direction: column;
}
main[b-3dsd3z3yec] {
flex: 1;
}
.sidebar[b-3dsd3z3yec] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-3dsd3z3yec] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-3dsd3z3yec] a, .top-row .btn-link[b-3dsd3z3yec] {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child[b-3dsd3z3yec] {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-3dsd3z3yec] {
display: none;
}
.top-row.auth[b-3dsd3z3yec] {
justify-content: space-between;
}
.top-row a[b-3dsd3z3yec], .top-row .btn-link[b-3dsd3z3yec] {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-3dsd3z3yec] {
flex-direction: row;
}
.sidebar[b-3dsd3z3yec] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-3dsd3z3yec] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row[b-3dsd3z3yec], article[b-3dsd3z3yec] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* _content/BlazorApp/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-7cxxmz0cwl] {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row[b-7cxxmz0cwl] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand[b-7cxxmz0cwl] {
font-size: 1.1rem;
}
.oi[b-7cxxmz0cwl] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item[b-7cxxmz0cwl] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type[b-7cxxmz0cwl] {
padding-top: 1rem;
}
.nav-item:last-of-type[b-7cxxmz0cwl] {
padding-bottom: 1rem;
}
.nav-item[b-7cxxmz0cwl] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item[b-7cxxmz0cwl] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item[b-7cxxmz0cwl] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler[b-7cxxmz0cwl] {
display: none;
}
.collapse[b-7cxxmz0cwl] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}
@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
/* _content/BlazorApp/Components/Crafting.razor.rz.scp.css */
.css-grid[b-0c7vkjpwvp] {
grid-template-columns: repeat(4,minmax(0,1fr));
gap: 10px;
display: grid;
width: 286px;
}
.css-recipe[b-0c7vkjpwvp] {
grid-template-columns: repeat(3,minmax(0,1fr));
gap: 10px;
display: grid;
width: 212px;
}
.actions[b-0c7vkjpwvp] {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
/* _content/BlazorApp/Components/CraftingItem.razor.rz.scp.css */
.item[b-syyk20fth2] {
width: 64px;
height: 64px;
border: 1px solid;
overflow: hidden;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;
display: flex;
flex-direction: column;
}
main[b-3dsd3z3yec] {
flex: 1;
}
.sidebar[b-3dsd3z3yec] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-3dsd3z3yec] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-3dsd3z3yec] a, .top-row .btn-link[b-3dsd3z3yec] {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child[b-3dsd3z3yec] {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-3dsd3z3yec] {
display: none;
}
.top-row.auth[b-3dsd3z3yec] {
justify-content: space-between;
}
.top-row a[b-3dsd3z3yec], .top-row .btn-link[b-3dsd3z3yec] {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-3dsd3z3yec] {
flex-direction: row;
}
.sidebar[b-3dsd3z3yec] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-3dsd3z3yec] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row[b-3dsd3z3yec], article[b-3dsd3z3yec] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* _content/BlazorApp/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-7cxxmz0cwl] {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row[b-7cxxmz0cwl] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand[b-7cxxmz0cwl] {
font-size: 1.1rem;
}
.oi[b-7cxxmz0cwl] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item[b-7cxxmz0cwl] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type[b-7cxxmz0cwl] {
padding-top: 1rem;
}
.nav-item:last-of-type[b-7cxxmz0cwl] {
padding-bottom: 1rem;
}
.nav-item[b-7cxxmz0cwl] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item[b-7cxxmz0cwl] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item[b-7cxxmz0cwl] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler[b-7cxxmz0cwl] {
display: none;
}
.collapse[b-7cxxmz0cwl] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}

@ -1,161 +1,161 @@
/* _content/BlazorApp/Components/Crafting.razor.rz.scp.css */
.css-grid[b-0c7vkjpwvp] {
grid-template-columns: repeat(4,minmax(0,1fr));
gap: 10px;
display: grid;
width: 286px;
}
.css-recipe[b-0c7vkjpwvp] {
grid-template-columns: repeat(3,minmax(0,1fr));
gap: 10px;
display: grid;
width: 212px;
}
.actions[b-0c7vkjpwvp] {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
/* _content/BlazorApp/Components/CraftingItem.razor.rz.scp.css */
.item[b-syyk20fth2] {
width: 64px;
height: 64px;
border: 1px solid;
overflow: hidden;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;
display: flex;
flex-direction: column;
}
main[b-3dsd3z3yec] {
flex: 1;
}
.sidebar[b-3dsd3z3yec] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-3dsd3z3yec] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-3dsd3z3yec] a, .top-row .btn-link[b-3dsd3z3yec] {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child[b-3dsd3z3yec] {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-3dsd3z3yec] {
display: none;
}
.top-row.auth[b-3dsd3z3yec] {
justify-content: space-between;
}
.top-row a[b-3dsd3z3yec], .top-row .btn-link[b-3dsd3z3yec] {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-3dsd3z3yec] {
flex-direction: row;
}
.sidebar[b-3dsd3z3yec] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-3dsd3z3yec] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row[b-3dsd3z3yec], article[b-3dsd3z3yec] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* _content/BlazorApp/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-7cxxmz0cwl] {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row[b-7cxxmz0cwl] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand[b-7cxxmz0cwl] {
font-size: 1.1rem;
}
.oi[b-7cxxmz0cwl] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item[b-7cxxmz0cwl] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type[b-7cxxmz0cwl] {
padding-top: 1rem;
}
.nav-item:last-of-type[b-7cxxmz0cwl] {
padding-bottom: 1rem;
}
.nav-item[b-7cxxmz0cwl] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item[b-7cxxmz0cwl] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item[b-7cxxmz0cwl] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler[b-7cxxmz0cwl] {
display: none;
}
.collapse[b-7cxxmz0cwl] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}
/* _content/BlazorApp/Components/Crafting.razor.rz.scp.css */
.css-grid[b-0c7vkjpwvp] {
grid-template-columns: repeat(4,minmax(0,1fr));
gap: 10px;
display: grid;
width: 286px;
}
.css-recipe[b-0c7vkjpwvp] {
grid-template-columns: repeat(3,minmax(0,1fr));
gap: 10px;
display: grid;
width: 212px;
}
.actions[b-0c7vkjpwvp] {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
/* _content/BlazorApp/Components/CraftingItem.razor.rz.scp.css */
.item[b-syyk20fth2] {
width: 64px;
height: 64px;
border: 1px solid;
overflow: hidden;
}
/* _content/BlazorApp/Shared/MainLayout.razor.rz.scp.css */
.page[b-3dsd3z3yec] {
position: relative;
display: flex;
flex-direction: column;
}
main[b-3dsd3z3yec] {
flex: 1;
}
.sidebar[b-3dsd3z3yec] {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row[b-3dsd3z3yec] {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-3dsd3z3yec] a, .top-row .btn-link[b-3dsd3z3yec] {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child[b-3dsd3z3yec] {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-3dsd3z3yec] {
display: none;
}
.top-row.auth[b-3dsd3z3yec] {
justify-content: space-between;
}
.top-row a[b-3dsd3z3yec], .top-row .btn-link[b-3dsd3z3yec] {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-3dsd3z3yec] {
flex-direction: row;
}
.sidebar[b-3dsd3z3yec] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-3dsd3z3yec] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row[b-3dsd3z3yec], article[b-3dsd3z3yec] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
/* _content/BlazorApp/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-7cxxmz0cwl] {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row[b-7cxxmz0cwl] {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand[b-7cxxmz0cwl] {
font-size: 1.1rem;
}
.oi[b-7cxxmz0cwl] {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item[b-7cxxmz0cwl] {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type[b-7cxxmz0cwl] {
padding-top: 1rem;
}
.nav-item:last-of-type[b-7cxxmz0cwl] {
padding-bottom: 1rem;
}
.nav-item[b-7cxxmz0cwl] a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item[b-7cxxmz0cwl] a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item[b-7cxxmz0cwl] a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler[b-7cxxmz0cwl] {
display: none;
}
.collapse[b-7cxxmz0cwl] {
/* Never collapse the sidebar for wide screens */
display: block;
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -1,30 +1,30 @@
{
"version": 2,
"dgSpecHash": "fcVTcE1NlT5Km6x23L8hNo3svHyILiKIcA/1w2pL7kFJChiWythcgifRnyPq/BB9AForspiA8sYHZhxTRLempA==",
"success": true,
"projectFilePath": "C:\\Users\\felix\\Documents\\BUT2\\Blazor\\TP\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"expectedPackageFiles": [
"C:\\Users\\felix\\.nuget\\packages\\blazored.localstorage\\4.3.0\\blazored.localstorage.4.3.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\blazored.modal\\7.1.0\\blazored.modal.7.1.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\blazorise\\1.1.3.1\\blazorise.1.1.3.1.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\blazorise.bootstrap\\1.1.3.1\\blazorise.bootstrap.1.1.3.1.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\blazorise.datagrid\\1.1.3.1\\blazorise.datagrid.1.1.3.1.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\blazorise.icons.fontawesome\\1.1.3.1\\blazorise.icons.fontawesome.1.1.3.1.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.aspnetcore.authorization\\6.0.9\\microsoft.aspnetcore.authorization.6.0.9.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.aspnetcore.components\\6.0.9\\microsoft.aspnetcore.components.6.0.9.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\6.0.9\\microsoft.aspnetcore.components.analyzers.6.0.9.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\6.0.9\\microsoft.aspnetcore.components.forms.6.0.9.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.aspnetcore.components.web\\6.0.9\\microsoft.aspnetcore.components.web.6.0.9.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.aspnetcore.metadata\\6.0.9\\microsoft.aspnetcore.metadata.6.0.9.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.3\\microsoft.extensions.logging.abstractions.6.0.3.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.jsinterop\\6.0.9\\microsoft.jsinterop.6.0.9.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\microsoft.jsinterop.webassembly\\6.0.3\\microsoft.jsinterop.webassembly.6.0.3.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
"C:\\Users\\felix\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
],
"logs": []
{
"version": 2,
"dgSpecHash": "5DejLQ/JkuICk4VuNrGS54VtNTYW6Q7cy1ryYR3uo7BknGKGGNbTVUNR7YbSseRA5jhF5XEcGDlzzX/V7kQjBg==",
"success": true,
"projectFilePath": "C:\\Users\\ludelanier\\Source\\Repos\\minecraft_compagnon\\Sources\\BlazorApp\\BlazorApp\\BlazorApp.csproj",
"expectedPackageFiles": [
"C:\\Users\\ludelanier\\.nuget\\packages\\blazored.localstorage\\4.3.0\\blazored.localstorage.4.3.0.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\blazored.modal\\7.1.0\\blazored.modal.7.1.0.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\blazorise\\1.1.3.1\\blazorise.1.1.3.1.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\blazorise.bootstrap\\1.1.3.1\\blazorise.bootstrap.1.1.3.1.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\blazorise.datagrid\\1.1.3.1\\blazorise.datagrid.1.1.3.1.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\blazorise.icons.fontawesome\\1.1.3.1\\blazorise.icons.fontawesome.1.1.3.1.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.aspnetcore.authorization\\6.0.9\\microsoft.aspnetcore.authorization.6.0.9.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.aspnetcore.components\\6.0.9\\microsoft.aspnetcore.components.6.0.9.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\6.0.9\\microsoft.aspnetcore.components.analyzers.6.0.9.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\6.0.9\\microsoft.aspnetcore.components.forms.6.0.9.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.aspnetcore.components.web\\6.0.9\\microsoft.aspnetcore.components.web.6.0.9.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.aspnetcore.metadata\\6.0.9\\microsoft.aspnetcore.metadata.6.0.9.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.3\\microsoft.extensions.logging.abstractions.6.0.3.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.jsinterop\\6.0.9\\microsoft.jsinterop.6.0.9.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\microsoft.jsinterop.webassembly\\6.0.3\\microsoft.jsinterop.webassembly.6.0.3.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
"C:\\Users\\ludelanier\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
],
"logs": []
}

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save