Baptiste BAVEREL 3 years ago
parent 2c19a574b5
commit 22ecdd32e1

Binary file not shown.

Binary file not shown.

@ -6,4 +6,11 @@
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="Blazored.LocalStorage" Version="4.2.0" />
<PackageReference Include="Blazorise.Bootstrap" Version="1.1.2" />
<PackageReference Include="Blazorise.DataGrid" Version="1.1.2" />
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.1.2" />
</ItemGroup>
</Project> </Project>

@ -0,0 +1,37 @@
using System.ComponentModel.DataAnnotations;
namespace BlazorApp1.Models
{
public class ItemModel
{
public int Id { get; set; }
[Required]
[StringLength(50, ErrorMessage = "The display name must not exceed 50 characters.")]
public string DisplayName { get; set; }
[Required]
[StringLength(50, ErrorMessage = "The name must not exceed 50 characters.")]
[RegularExpression(@"^[a-z''-'\s]{1,40}$", ErrorMessage = "Only lowercase characters are accepted.")]
public string Name { get; set; }
[Required]
[Range(1, 64)]
public int StackSize { get; set; }
[Required]
[Range(1, 125)]
public int MaxDurability { get; set; }
public List<string> EnchantCategories { get; set; }
public List<string> RepairWith { get; set; }
[Required]
[Range(typeof(bool), "true", "true", ErrorMessage = "You must agree to the terms.")]
public bool AcceptCondition { get; set; }
[Required(ErrorMessage = "The image of the item is mandatory!")]
public byte[] ImageContent { get; set; }
}
}

@ -0,0 +1,69 @@
@page "/add"
<h3>Add</h3>
<EditForm Model="@itemModel" OnValidSubmit="@HandleValidSubmit">
<DataAnnotationsValidator />
<ValidationSummary />
<p>
<label for="display-name">
Display name:
<InputText id="display-name" @bind-Value="itemModel.DisplayName" />
</label>
</p>
<p>
<label for="name">
Name:
<InputText id="name" @bind-Value="itemModel.Name" />
</label>
</p>
<p>
<label for="stack-size">
Stack size:
<InputNumber id="stack-size" @bind-Value="itemModel.StackSize" />
</label>
</p>
<p>
<label for="max-durability">
Max durability:
<InputNumber id="max-durability" @bind-Value="itemModel.MaxDurability" />
</label>
</p>
<p>
Enchant categories:
<div>
@foreach (var item in enchantCategories)
{
<label>
<input type="checkbox" @onchange="@(e => OnEnchantCategoriesChange(item, e.Value))" />@item
</label>
}
</div>
</p>
<p>
Repair with:
<div>
@foreach (var item in repairWith)
{
<label>
<input type="checkbox" @onchange="@(e => OnRepairWithChange(item, e.Value))" />@item
</label>
}
</div>
</p>
<p>
<label>
Item image:
<InputFile OnChange="@LoadImage" accept=".png" />
</label>
</p>
<p>
<label>
Accept Condition:
<InputCheckbox @bind-Value="itemModel.AcceptCondition" />
</label>
</p>
<button type="submit">Submit</button>
</EditForm>

@ -0,0 +1,89 @@
using BlazorApp1.Models;
using BlazorApp1.Sevices;
using Blazored.LocalStorage;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Forms;
namespace BlazorApp1.Pages
{
public partial class Add
{
/// <summary>
/// The default enchant categories.
/// </summary>
private List<string> enchantCategories = new List<string>() { "armor", "armor_head", "armor_chest", "weapon", "digger", "breakable", "vanishable" };
/// <summary>
/// The current item model
/// </summary>
private ItemModel itemModel = new()
{
EnchantCategories = new List<string>(),
RepairWith = new List<string>()
};
/// <summary>
/// The default repair with.
/// </summary>
private List<string> repairWith = new List<string>() { "oak_planks", "spruce_planks", "birch_planks", "jungle_planks", "acacia_planks", "dark_oak_planks", "crimson_planks", "warped_planks" };
[Inject]
public IDataService DataService { get; set; }
[Inject]
public NavigationManager NavigationManager { get; set; }
private async void HandleValidSubmit()
{
await DataService.Add(itemModel);
NavigationManager.NavigateTo("list");
}
private async Task LoadImage(InputFileChangeEventArgs e)
{
// Set the content of the image to the model
using (var memoryStream = new MemoryStream())
{
await e.File.OpenReadStream().CopyToAsync(memoryStream);
itemModel.ImageContent = memoryStream.ToArray();
}
}
private void OnEnchantCategoriesChange(string item, object checkedValue)
{
if ((bool)checkedValue)
{
if (!itemModel.EnchantCategories.Contains(item))
{
itemModel.EnchantCategories.Add(item);
}
return;
}
if (itemModel.EnchantCategories.Contains(item))
{
itemModel.EnchantCategories.Remove(item);
}
}
private void OnRepairWithChange(string item, object checkedValue)
{
if ((bool)checkedValue)
{
if (!itemModel.RepairWith.Contains(item))
{
itemModel.RepairWith.Add(item);
}
return;
}
if (itemModel.RepairWith.Contains(item))
{
itemModel.RepairWith.Remove(item);
}
}
}
}

@ -0,0 +1,5 @@
@page "/edit/{Id:int}"
<h3>Edit</h3>
<div>My paremeter: @Id</div>

@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Components;
namespace BlazorApp1.Pages
{
public partial class Edit
{
[Parameter]
public int Id { get; set; }
}
}

@ -1,11 +1,50 @@
@page "/List" @page "/List"
<h2>List</h2> <h3>List</h3>
@if (items != null) <div>
{ <NavLink class="btn btn-primary" href="Add" Match="NavLinkMatch.All">
foreach (var item in items) <i class="fa fa-plus"></i> Ajouter
{ </NavLink>
<div>@item.Id</div> </div>
}
} <DataGrid TItem="Item"
Data="@items"
ReadData="@OnReadData"
TotalItems="@totalItem"
PageSize="10"
ShowPager
Responsive>
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="#" />
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Image">
<DisplayTemplate>
@if (File.Exists($"{WebHostEnvironment.WebRootPath}/images/{context.Name}.png"))
{
<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"/>
}
</DisplayTemplate>
</DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.DisplayName)" Caption="Display name" />
<DataGridColumn TItem="Item" Field="@nameof(Item.StackSize)" Caption="Stack size" />
<DataGridColumn TItem="Item" Field="@nameof(Item.MaxDurability)" Caption="Maximum durability" />
<DataGridColumn TItem="Item" Field="@nameof(Item.EnchantCategories)" Caption="Enchant categories">
<DisplayTemplate>
@(string.Join(", ", ((Item)context).EnchantCategories))
</DisplayTemplate>
</DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.RepairWith)" Caption="Repair with">
<DisplayTemplate>
@(string.Join(", ", ((Item)context).RepairWith))
</DisplayTemplate>
</DataGridColumn>
<DataGridColumn TItem="Item" Field="@nameof(Item.CreatedDate)" Caption="Created date" DisplayFormat="{0:d}" DisplayFormatProvider="@System.Globalization.CultureInfo.GetCultureInfo("fr-FR")" />
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Action">
<DisplayTemplate>
<a href="Edit/@(context.Id)" class="btn btn-primary"><i class="fa fa-edit"></i> Editer</a>
</DisplayTemplate>
</DataGridColumn>
</DataGrid>

@ -1,20 +1,90 @@
using Microsoft.AspNetCore.Components; using BlazorApp1.Sevices;
using Blazored.LocalStorage;
using Blazorise.DataGrid;
using Microsoft.AspNetCore.Components;
namespace BlazorApp1.Pages namespace BlazorApp1.Pages
{ {
public partial class List public partial class List
{ {
private Item[] items; private List<Item> items;
private int totalItem;
[Inject]
public IDataService DataService { get; set; }
[Inject]
public IWebHostEnvironment WebHostEnvironment { get; set; }
private async Task OnReadData(DataGridReadDataEventArgs<Item> e)
{
if (e.CancellationToken.IsCancellationRequested)
{
return;
}
if (!e.CancellationToken.IsCancellationRequested)
{
items = await DataService.List(e.Page, e.PageSize);
totalItem = await DataService.Count();
}
}
}
/*public partial class List
{
private List<Item> items;
private int totalItem;
[Inject] [Inject]
public HttpClient Http { get; set; } public HttpClient Http { get; set; }
[Inject]
public ILocalStorageService LocalStorage { get; set; }
[Inject]
public IWebHostEnvironment WebHostEnvironment { get; set; }
[Inject] [Inject]
public NavigationManager NavigationManager { get; set; } public NavigationManager NavigationManager { get; set; }
protected override async Task OnInitializedAsync() protected override async Task OnAfterRenderAsync(bool firstRender)
{
// Do not treat this action if is not the first render
if (!firstRender)
{
return;
}
var currentData = await LocalStorage.GetItemAsync<Item[]>("data");
// Check if data exist in the local storage
if (currentData == null)
{
// this code add in the local storage the fake data (we load the data sync for initialize the data before load the OnReadData method)
var originalData = Http.GetFromJsonAsync<Item[]>($"{NavigationManager.BaseUri}fake-data.json").Result;
await LocalStorage.SetItemAsync("data", originalData);
}
}
private async Task OnReadData(DataGridReadDataEventArgs<Item> e)
{ {
items = await Http.GetFromJsonAsync<Item[]>($"{NavigationManager.BaseUri}fake-data.json"); if (e.CancellationToken.IsCancellationRequested)
{
return;
}
// When you use a real API, we use this follow code
//var response = await Http.GetJsonAsync<Data[]>( $"http://my-api/api/data?page={e.Page}&pageSize={e.PageSize}" );
var response = (await LocalStorage.GetItemAsync<Item[]>("data")).Skip((e.Page - 1) * e.PageSize).Take(e.PageSize).ToList();
if (!e.CancellationToken.IsCancellationRequested)
{
totalItem = (await LocalStorage.GetItemAsync<List<Item>>("data")).Count;
items = new List<Item>(response); // an actual data for the current page
}
} }
} }*/
} }

@ -0,0 +1,13 @@
@page "/RouteParameter/{text?}"
<h1>Blazor is @Text!</h1>
@code {
[Parameter]
public string? Text { get; set; }
protected override void OnInitialized()
{
Text = Text ?? "fantastic";
}
}

@ -28,5 +28,10 @@
</div> </div>
<script src="_framework/blazor.server.js"></script> <script src="_framework/blazor.server.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link href="_content/Blazorise/blazorise.css" rel="stylesheet" />
<link href="_content/Blazorise.Bootstrap/blazorise.bootstrap.css" rel="stylesheet" />
</body> </body>
</html> </html>

@ -1,4 +1,10 @@
using BlazorApp1.Data; using BlazorApp1.Data;
using BlazorApp1.Sevices;
using Blazored.LocalStorage;
using Blazorise;
using Blazorise.Bootstrap;
using Blazorise.DataGrid;
using Blazorise.Icons.FontAwesome;
using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.Web;
@ -9,8 +15,18 @@ builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor(); builder.Services.AddServerSideBlazor();
builder.Services.AddSingleton<WeatherForecastService>(); builder.Services.AddSingleton<WeatherForecastService>();
builder.Services.AddScoped<IDataService, DataLocalService>();
builder.Services.AddHttpClient(); builder.Services.AddHttpClient();
builder.Services
.AddBlazorise()
.AddBootstrapProviders()
.AddFontAwesomeIcons();
builder.Services.AddBlazoredLocalStorage();
var app = builder.Build(); var app = builder.Build();
// Configure the HTTP request pipeline. // Configure the HTTP request pipeline.

@ -0,0 +1,157 @@
using BlazorApp1.Models;
using Blazored.LocalStorage;
using Microsoft.AspNetCore.Components;
namespace BlazorApp1.Sevices
{
public class DataLocalService : IDataService
{
private readonly HttpClient _http;
private readonly ILocalStorageService _localStorage;
private readonly NavigationManager _navigationManager;
private readonly IWebHostEnvironment _webHostEnvironment;
public DataLocalService(
ILocalStorageService localStorage,
HttpClient http,
IWebHostEnvironment webHostEnvironment,
NavigationManager navigationManager)
{
_localStorage = localStorage;
_http = http;
_webHostEnvironment = webHostEnvironment;
_navigationManager = navigationManager;
}
public async Task Add(ItemModel model)
{
// Get the current data
var currentData = await _localStorage.GetItemAsync<List<Item>>("data");
// Simulate the Id
model.Id = currentData.Max(s => s.Id) + 1;
// Add the item to the current data
currentData.Add(new Item
{
Id = model.Id,
DisplayName = model.DisplayName,
Name = model.Name,
RepairWith = model.RepairWith,
EnchantCategories = model.EnchantCategories,
MaxDurability = model.MaxDurability,
StackSize = model.StackSize,
CreatedDate = DateTime.Now
});
// Save the image
var imagePathInfo = new DirectoryInfo($"{_webHostEnvironment.WebRootPath}/images");
// Check if the folder "images" exist
if (!imagePathInfo.Exists)
{
imagePathInfo.Create();
}
// Determine the image name
var fileName = new FileInfo($"{imagePathInfo}/{model.Name}.png");
// Write the file content
await File.WriteAllBytesAsync(fileName.FullName, model.ImageContent);
// Save the data
await _localStorage.SetItemAsync("data", currentData);
}
public async Task<int> Count()
{
return (await _localStorage.GetItemAsync<Item[]>("data")).Length;
}
public async Task<List<Item>> List(int currentPage, int pageSize)
{
// Load data from the local storage
var currentData = await _localStorage.GetItemAsync<Item[]>("data");
// Check if data exist in the local storage
if (currentData == null)
{
// this code add in the local storage the fake data
var originalData = await _http.GetFromJsonAsync<Item[]>($"{_navigationManager.BaseUri}fake-data.json");
await _localStorage.SetItemAsync("data", originalData);
}
return (await _localStorage.GetItemAsync<Item[]>("data")).Skip((currentPage - 1) * pageSize).Take(pageSize).ToList();
}
public async Task<Item> GetById(int id)
{
// Get the current data
var currentData = await _localStorage.GetItemAsync<List<Item>>("data");
// Get the item int the list
var item = currentData.FirstOrDefault(w => w.Id == id);
// Check if item exist
if (item == null)
{
throw new Exception($"Unable to found the item with ID: {id}");
}
return item;
}
public async Task Update(int id, ItemModel model)
{
// Get the current data
var currentData = await _localStorage.GetItemAsync<List<Item>>("data");
// Get the item int the list
var item = currentData.FirstOrDefault(w => w.Id == id);
// Check if item exist
if (item == null)
{
throw new Exception($"Unable to found the item with ID: {id}");
}
// Save the image
var imagePathInfo = new DirectoryInfo($"{_webHostEnvironment.WebRootPath}/images");
// Check if the folder "images" exist
if (!imagePathInfo.Exists)
{
imagePathInfo.Create();
}
// Delete the previous image
if (item.Name != model.Name)
{
var oldFileName = new FileInfo($"{imagePathInfo}/{item.Name}.png");
if (oldFileName.Exists)
{
File.Delete(oldFileName.FullName);
}
}
// Determine the image name
var fileName = new FileInfo($"{imagePathInfo}/{model.Name}.png");
// Write the file content
await File.WriteAllBytesAsync(fileName.FullName, model.ImageContent);
// Modify the content of the item
item.DisplayName = model.DisplayName;
item.Name = model.Name;
item.RepairWith = model.RepairWith;
item.EnchantCategories = model.EnchantCategories;
item.MaxDurability = model.MaxDurability;
item.StackSize = model.StackSize;
item.UpdatedDate = DateTime.Now;
// Save the data
await _localStorage.SetItemAsync("data", currentData);
}
}
}

@ -0,0 +1,17 @@
using BlazorApp1.Models;
namespace BlazorApp1.Sevices
{
public interface IDataService
{
Task Add(ItemModel model);
Task<int> Count();
Task<List<Item>> List(int currentPage, int pageSize);
Task<Item> GetById(int id);
Task Update(int id, ItemModel model);
}
}

@ -8,3 +8,4 @@
@using Microsoft.JSInterop @using Microsoft.JSInterop
@using BlazorApp1 @using BlazorApp1
@using BlazorApp1.Shared @using BlazorApp1.Shared
@using Blazorise.DataGrid

@ -7,10 +7,185 @@
"targets": { "targets": {
".NETCoreApp,Version=v6.0": { ".NETCoreApp,Version=v6.0": {
"BlazorApp1/1.0.0": { "BlazorApp1/1.0.0": {
"dependencies": {
"Blazored.LocalStorage": "4.2.0",
"Blazorise.Bootstrap": "1.1.2",
"Blazorise.DataGrid": "1.1.2",
"Blazorise.Icons.FontAwesome": "1.1.2"
},
"runtime": { "runtime": {
"BlazorApp1.dll": {} "BlazorApp1.dll": {}
} }
} },
"Blazored.LocalStorage/4.2.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"
}
}
},
"Blazorise/1.1.2": {
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"runtime": {
"lib/net6.0/Blazorise.dll": {
"assemblyVersion": "1.1.2.0",
"fileVersion": "1.1.2.0"
}
}
},
"Blazorise.Bootstrap/1.1.2": {
"dependencies": {
"Blazorise": "1.1.2",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"runtime": {
"lib/net6.0/Blazorise.Bootstrap.dll": {
"assemblyVersion": "1.1.2.0",
"fileVersion": "1.1.2.0"
}
}
},
"Blazorise.DataGrid/1.1.2": {
"dependencies": {
"Blazorise": "1.1.2",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"runtime": {
"lib/net6.0/Blazorise.DataGrid.dll": {
"assemblyVersion": "1.1.2.0",
"fileVersion": "1.1.2.0"
}
}
},
"Blazorise.Icons.FontAwesome/1.1.2": {
"dependencies": {
"Blazorise": "1.1.2",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"runtime": {
"lib/net6.0/Blazorise.Icons.FontAwesome.dll": {
"assemblyVersion": "1.1.2.0",
"fileVersion": "1.1.2.0"
}
}
},
"Microsoft.AspNetCore.Authorization/6.0.9": {
"dependencies": {
"Microsoft.AspNetCore.Metadata": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2",
"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.2": {
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.0.922.41905"
}
}
},
"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"
}
}
},
"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": { "libraries": {
@ -18,6 +193,139 @@
"type": "project", "type": "project",
"serviceable": false, "serviceable": false,
"sha512": "" "sha512": ""
},
"Blazored.LocalStorage/4.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cn6h0QrLw0AIwkx/LiogtBycBFHIeqT/ptXIt871/07qTCvIGXCQZpc1s38wpmTfYLvpha5+5yn6TvIaY9ziyg==",
"path": "blazored.localstorage/4.2.0",
"hashPath": "blazored.localstorage.4.2.0.nupkg.sha512"
},
"Blazorise/1.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UGlSOaSiyg3kIN2KbwioNrAoR6Z653NCazo8Tkc5xXoWQKJvkcumhLCZmTbY9pePkOOCU7ey/BSY+cnKYMfhCQ==",
"path": "blazorise/1.1.2",
"hashPath": "blazorise.1.1.2.nupkg.sha512"
},
"Blazorise.Bootstrap/1.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+5LSbmSCcPaWM3KEireQa/37z/7q76Kvkx244t6bd8FUkQT9wdxIru5JrKRyn48lz7wGYFqiKYSr2EDgcXLVIw==",
"path": "blazorise.bootstrap/1.1.2",
"hashPath": "blazorise.bootstrap.1.1.2.nupkg.sha512"
},
"Blazorise.DataGrid/1.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hqBiSAqNXp322MLKnAuAENVs3M2I45rtCFs5TPHHYP7z7Lmkg4TzDstZIv95/cn3DWKqVtzvdBs6GFqK+2p6fg==",
"path": "blazorise.datagrid/1.1.2",
"hashPath": "blazorise.datagrid.1.1.2.nupkg.sha512"
},
"Blazorise.Icons.FontAwesome/1.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Di2jXYKffeZ+2u76JCi+BgH5M00lzoX+JUktw6wJozdksbfuPRLIVuodyzZz9WGd5bZCdYKHctrTjEWme/8lw==",
"path": "blazorise.icons.fontawesome/1.1.2",
"hashPath": "blazorise.icons.fontawesome.1.1.2.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.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pwXCZKaA7m5wgmCj49dW+H1RPSY7U62SKLTQYCcavf/k3Nyt/WnBgAjG4jMGnwy9rElfAZ2KvxvM5CJzJWG0hg==",
"path": "microsoft.extensions.logging.abstractions/6.0.2",
"hashPath": "microsoft.extensions.logging.abstractions.6.0.2.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"
},
"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"
} }
} }
} }

File diff suppressed because one or more lines are too long

@ -43,6 +43,24 @@
"frameworks": { "frameworks": {
"net6.0": { "net6.0": {
"targetAlias": "net6.0", "targetAlias": "net6.0",
"dependencies": {
"Blazored.LocalStorage": {
"target": "Package",
"version": "[4.2.0, )"
},
"Blazorise.Bootstrap": {
"target": "Package",
"version": "[1.1.2, )"
},
"Blazorise.DataGrid": {
"target": "Package",
"version": "[1.1.2, )"
},
"Blazorise.Icons.FontAwesome": {
"target": "Package",
"version": "[1.1.2, )"
}
},
"imports": [ "imports": [
"net461", "net461",
"net462", "net462",

@ -13,4 +13,9 @@
<SourceRoot Include="C:\Users\babaverel\.nuget\packages\" /> <SourceRoot Include="C:\Users\babaverel\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup> </ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)blazorise\1.1.2\buildTransitive\Blazorise.props" Condition="Exists('$(NuGetPackageRoot)blazorise\1.1.2\buildTransitive\Blazorise.props')" />
<Import Project="$(NuGetPackageRoot)blazorise.datagrid\1.1.2\buildTransitive\Blazorise.DataGrid.props" Condition="Exists('$(NuGetPackageRoot)blazorise.datagrid\1.1.2\buildTransitive\Blazorise.DataGrid.props')" />
<Import Project="$(NuGetPackageRoot)blazorise.bootstrap\1.1.2\buildTransitive\Blazorise.Bootstrap.props" Condition="Exists('$(NuGetPackageRoot)blazorise.bootstrap\1.1.2\buildTransitive\Blazorise.Bootstrap.props')" />
</ImportGroup>
</Project> </Project>

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

@ -19,6 +19,10 @@ build_property._RazorSourceGeneratorDebug =
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =
[C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Pages/Add.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Pages/Admin/Admin.razor] [C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Pages/Admin/Admin.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRtaW5cQWRtaW4ucmF6b3I= build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRtaW5cQWRtaW4ucmF6b3I=
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =
@ -31,6 +35,10 @@ build_metadata.AdditionalFiles.CssScope =
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ291bnRlci5yYXpvcg== build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ291bnRlci5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =
[C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Pages/Edit.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Pages/FetchData.razor] [C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Pages/FetchData.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRmV0Y2hEYXRhLnJhem9y build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRmV0Y2hEYXRhLnJhem9y
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =
@ -43,6 +51,10 @@ build_metadata.AdditionalFiles.CssScope =
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg== build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTGlzdC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =
[C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Pages/RouteParameter.razor]
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUm91dGVQYXJhbWV0ZXIucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Shared/AdminLayout.razor] [C:/Users/babaverel/Source/Repos/Blazor/BlazorApp1/Shared/AdminLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEFkbWluTGF5b3V0LnJhem9y build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEFkbWluTGF5b3V0LnJhem9y
build_metadata.AdditionalFiles.CssScope = build_metadata.AdditionalFiles.CssScope =

@ -1 +1 @@
2eae5b1a109fd35eb19cf9420d0281c4b3cbb61d c0feac9b06aeb07d0970069a084861810e18935f

@ -25,3 +25,17 @@ C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\refint\Blazor
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\BlazorApp1.pdb C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\BlazorApp1.pdb
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\BlazorApp1.genruntimeconfig.cache C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\BlazorApp1.genruntimeconfig.cache
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\ref\BlazorApp1.dll C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\ref\BlazorApp1.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Blazorise.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Blazorise.Bootstrap.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Blazorise.DataGrid.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Blazorise.Icons.FontAwesome.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Microsoft.JSInterop.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\System.IO.Pipelines.dll
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\obj\Debug\net6.0\BlazorApp1.csproj.CopyComplete
C:\Users\babaverel\Source\Repos\Blazor\BlazorApp1\bin\Debug\net6.0\Blazored.LocalStorage.dll

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
{ {
"Version": 1, "Version": 1,
"Hash": "hwIqOdlWngoGV9viiwuJuM7X/nPcT8KlqN0WYsxNeQw=", "Hash": "GM64XbvdvgMofTFk4ztnuWY+78wv/5Wr3AefJQe/95E=",
"Source": "BlazorApp1", "Source": "BlazorApp1",
"BasePath": "_content/BlazorApp1", "BasePath": "_content/BlazorApp1",
"Mode": "Default", "Mode": "Default",
@ -16,6 +16,635 @@
} }
], ],
"Assets": [ "Assets": [
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\blazorise.bootstrap.css",
"SourceId": "Blazorise.Bootstrap",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise.Bootstrap",
"RelativePath": "blazorise.bootstrap.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\blazorise.bootstrap.css"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\blazorise.bootstrap.min.css",
"SourceId": "Blazorise.Bootstrap",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise.Bootstrap",
"RelativePath": "blazorise.bootstrap.min.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\blazorise.bootstrap.min.css"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\modal.js",
"SourceId": "Blazorise.Bootstrap",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise.Bootstrap",
"RelativePath": "modal.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\modal.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\tooltip.js",
"SourceId": "Blazorise.Bootstrap",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise.Bootstrap",
"RelativePath": "tooltip.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\staticwebassets\\tooltip.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.datagrid\\1.1.2\\staticwebassets\\datagrid.js",
"SourceId": "Blazorise.DataGrid",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.datagrid\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise.DataGrid",
"RelativePath": "datagrid.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise.datagrid\\1.1.2\\staticwebassets\\datagrid.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\blazorise.css",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "blazorise.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\blazorise.css"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\blazorise.min.css",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "blazorise.min.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\blazorise.min.css"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\breakpoint.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "breakpoint.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\breakpoint.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\button.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "button.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\button.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\closable.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "closable.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\closable.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\colorPicker.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "colorPicker.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\colorPicker.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\datePicker.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "datePicker.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\datePicker.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\dragDrop.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "dragDrop.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\dragDrop.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\dropdown.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "dropdown.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\dropdown.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\fileEdit.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "fileEdit.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\fileEdit.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\filePicker.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "filePicker.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\filePicker.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\inputMask.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "inputMask.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\inputMask.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\io.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "io.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\io.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\memoEdit.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "memoEdit.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\memoEdit.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\numericPicker.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "numericPicker.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\numericPicker.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\observer.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "observer.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\observer.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\popper.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "popper.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\popper.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\table.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "table.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\table.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\textEdit.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "textEdit.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\textEdit.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\theme.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "theme.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\theme.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\timePicker.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "timePicker.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\timePicker.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\tooltip.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "tooltip.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\tooltip.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\utilities.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "utilities.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\utilities.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\DateTimeMaskValidator.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "validators/DateTimeMaskValidator.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\DateTimeMaskValidator.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\NoValidator.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "validators/NoValidator.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\NoValidator.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\NumericMaskValidator.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "validators/NumericMaskValidator.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\NumericMaskValidator.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\RegExMaskValidator.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "validators/RegExMaskValidator.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\validators\\RegExMaskValidator.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\autoNumeric.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "vendors/autoNumeric.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\autoNumeric.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\Behave.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "vendors/Behave.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\Behave.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\flatpickr.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "vendors/flatpickr.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\flatpickr.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\inputmask.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "vendors/inputmask.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\inputmask.js"
},
{
"Identity": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\Pickr.js",
"SourceId": "Blazorise",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\",
"BasePath": "_content/Blazorise",
"RelativePath": "vendors/Pickr.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\staticwebassets\\vendors\\Pickr.js"
},
{ {
"Identity": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp1.styles.css", "Identity": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\obj\\Debug\\net6.0\\scopedcss\\bundle\\BlazorApp1.styles.css",
"SourceId": "BlazorApp1", "SourceId": "BlazorApp1",
@ -287,6 +916,57 @@
"CopyToOutputDirectory": "Never", "CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest", "CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\favicon.ico" "OriginalItemSpec": "wwwroot\\favicon.ico"
},
{
"Identity": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\wwwroot\\images\\default.png",
"SourceId": "BlazorApp1",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\wwwroot\\",
"BasePath": "_content/BlazorApp1",
"RelativePath": "images/default.png",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\default.png"
},
{
"Identity": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\wwwroot\\images\\fezfez.png",
"SourceId": "BlazorApp1",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\wwwroot\\",
"BasePath": "_content/BlazorApp1",
"RelativePath": "images/fezfez.png",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\fezfez.png"
},
{
"Identity": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\wwwroot\\images\\lelel.png",
"SourceId": "BlazorApp1",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\wwwroot\\",
"BasePath": "_content/BlazorApp1",
"RelativePath": "images/lelel.png",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\lelel.png"
} }
] ]
} }

File diff suppressed because one or more lines are too long

@ -1,11 +1,718 @@
{ {
"version": 3, "version": 3,
"targets": { "targets": {
"net6.0": {} "net6.0": {
"Blazored.LocalStorage/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.AspNetCore.Components.Web": "6.0.0"
},
"compile": {
"lib/net6.0/Blazored.LocalStorage.dll": {}
},
"runtime": {
"lib/net6.0/Blazored.LocalStorage.dll": {}
}
},
"Blazorise/1.1.2": {
"type": "package",
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"compile": {
"lib/net6.0/Blazorise.dll": {}
},
"runtime": {
"lib/net6.0/Blazorise.dll": {}
},
"build": {
"buildTransitive/Blazorise.props": {}
},
"buildMultiTargeting": {
"buildMultiTargeting/Blazorise.props": {}
}
},
"Blazorise.Bootstrap/1.1.2": {
"type": "package",
"dependencies": {
"Blazorise": "1.1.2",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"compile": {
"lib/net6.0/Blazorise.Bootstrap.dll": {}
},
"runtime": {
"lib/net6.0/Blazorise.Bootstrap.dll": {}
},
"build": {
"buildTransitive/Blazorise.Bootstrap.props": {}
},
"buildMultiTargeting": {
"buildMultiTargeting/Blazorise.Bootstrap.props": {}
}
},
"Blazorise.DataGrid/1.1.2": {
"type": "package",
"dependencies": {
"Blazorise": "1.1.2",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"compile": {
"lib/net6.0/Blazorise.DataGrid.dll": {}
},
"runtime": {
"lib/net6.0/Blazorise.DataGrid.dll": {}
},
"build": {
"buildTransitive/Blazorise.DataGrid.props": {}
},
"buildMultiTargeting": {
"buildMultiTargeting/Blazorise.DataGrid.props": {}
}
},
"Blazorise.Icons.FontAwesome/1.1.2": {
"type": "package",
"dependencies": {
"Blazorise": "1.1.2",
"Microsoft.AspNetCore.Components": "6.0.9",
"Microsoft.AspNetCore.Components.Web": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2"
},
"compile": {
"lib/net6.0/Blazorise.Icons.FontAwesome.dll": {}
},
"runtime": {
"lib/net6.0/Blazorise.Icons.FontAwesome.dll": {}
}
},
"Microsoft.AspNetCore.Authorization/6.0.9": {
"type": "package",
"dependencies": {
"Microsoft.AspNetCore.Metadata": "6.0.9",
"Microsoft.Extensions.Logging.Abstractions": "6.0.2",
"Microsoft.Extensions.Options": "6.0.0"
},
"compile": {
"lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {}
}
},
"Microsoft.AspNetCore.Components/6.0.9": {
"type": "package",
"dependencies": {
"Microsoft.AspNetCore.Authorization": "6.0.9",
"Microsoft.AspNetCore.Components.Analyzers": "6.0.9"
},
"compile": {
"lib/net6.0/Microsoft.AspNetCore.Components.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.dll": {}
}
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.9": {
"type": "package",
"build": {
"buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {}
}
},
"Microsoft.AspNetCore.Components.Forms/6.0.9": {
"type": "package",
"dependencies": {
"Microsoft.AspNetCore.Components": "6.0.9"
},
"compile": {
"lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll": {}
}
},
"Microsoft.AspNetCore.Components.Web/6.0.9": {
"type": "package",
"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"
},
"compile": {
"lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Components.Web.dll": {}
}
},
"Microsoft.AspNetCore.Metadata/6.0.9": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/6.0.2": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Microsoft.Extensions.Options/6.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
"Microsoft.Extensions.Primitives": "6.0.0"
},
"compile": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
},
"runtime": {
"lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/6.0.0": {
"type": "package",
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"Microsoft.JSInterop/6.0.9": {
"type": "package",
"compile": {
"lib/net6.0/Microsoft.JSInterop.dll": {}
},
"runtime": {
"lib/net6.0/Microsoft.JSInterop.dll": {}
}
},
"System.IO.Pipelines/6.0.3": {
"type": "package",
"compile": {
"lib/net6.0/System.IO.Pipelines.dll": {}
},
"runtime": {
"lib/net6.0/System.IO.Pipelines.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
}
}
}
},
"libraries": {
"Blazored.LocalStorage/4.2.0": {
"sha512": "cn6h0QrLw0AIwkx/LiogtBycBFHIeqT/ptXIt871/07qTCvIGXCQZpc1s38wpmTfYLvpha5+5yn6TvIaY9ziyg==",
"type": "package",
"path": "blazored.localstorage/4.2.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"blazored.localstorage.4.2.0.nupkg.sha512",
"blazored.localstorage.nuspec",
"icon.png",
"lib/net5.0/Blazored.LocalStorage.dll",
"lib/net6.0/Blazored.LocalStorage.dll",
"lib/netstandard2.1/Blazored.LocalStorage.dll"
]
},
"Blazorise/1.1.2": {
"sha512": "UGlSOaSiyg3kIN2KbwioNrAoR6Z653NCazo8Tkc5xXoWQKJvkcumhLCZmTbY9pePkOOCU7ey/BSY+cnKYMfhCQ==",
"type": "package",
"path": "blazorise/1.1.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Blazorise.png",
"LICENSE.md",
"blazorise.1.1.2.nupkg.sha512",
"blazorise.nuspec",
"build/Blazorise.props",
"build/Microsoft.AspNetCore.StaticWebAssets.props",
"buildMultiTargeting/Blazorise.props",
"buildTransitive/Blazorise.props",
"lib/net6.0/Blazorise.dll",
"lib/net6.0/Blazorise.xml",
"lib/net7.0/Blazorise.dll",
"lib/net7.0/Blazorise.xml",
"staticwebassets/blazorise.css",
"staticwebassets/blazorise.min.css",
"staticwebassets/breakpoint.js",
"staticwebassets/button.js",
"staticwebassets/closable.js",
"staticwebassets/colorPicker.js",
"staticwebassets/datePicker.js",
"staticwebassets/dragDrop.js",
"staticwebassets/dropdown.js",
"staticwebassets/fileEdit.js",
"staticwebassets/filePicker.js",
"staticwebassets/inputMask.js",
"staticwebassets/io.js",
"staticwebassets/memoEdit.js",
"staticwebassets/numericPicker.js",
"staticwebassets/observer.js",
"staticwebassets/popper.js",
"staticwebassets/table.js",
"staticwebassets/textEdit.js",
"staticwebassets/theme.js",
"staticwebassets/timePicker.js",
"staticwebassets/tooltip.js",
"staticwebassets/utilities.js",
"staticwebassets/validators/DateTimeMaskValidator.js",
"staticwebassets/validators/NoValidator.js",
"staticwebassets/validators/NumericMaskValidator.js",
"staticwebassets/validators/RegExMaskValidator.js",
"staticwebassets/vendors/Behave.js",
"staticwebassets/vendors/Pickr.js",
"staticwebassets/vendors/autoNumeric.js",
"staticwebassets/vendors/flatpickr.js",
"staticwebassets/vendors/inputmask.js"
]
},
"Blazorise.Bootstrap/1.1.2": {
"sha512": "+5LSbmSCcPaWM3KEireQa/37z/7q76Kvkx244t6bd8FUkQT9wdxIru5JrKRyn48lz7wGYFqiKYSr2EDgcXLVIw==",
"type": "package",
"path": "blazorise.bootstrap/1.1.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Blazorise.png",
"LICENSE.md",
"blazorise.bootstrap.1.1.2.nupkg.sha512",
"blazorise.bootstrap.nuspec",
"build/Blazorise.Bootstrap.props",
"build/Microsoft.AspNetCore.StaticWebAssets.props",
"buildMultiTargeting/Blazorise.Bootstrap.props",
"buildTransitive/Blazorise.Bootstrap.props",
"lib/net6.0/Blazorise.Bootstrap.dll",
"lib/net7.0/Blazorise.Bootstrap.dll",
"staticwebassets/blazorise.bootstrap.css",
"staticwebassets/blazorise.bootstrap.min.css",
"staticwebassets/modal.js",
"staticwebassets/tooltip.js"
]
},
"Blazorise.DataGrid/1.1.2": {
"sha512": "hqBiSAqNXp322MLKnAuAENVs3M2I45rtCFs5TPHHYP7z7Lmkg4TzDstZIv95/cn3DWKqVtzvdBs6GFqK+2p6fg==",
"type": "package",
"path": "blazorise.datagrid/1.1.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Blazorise.png",
"LICENSE.md",
"blazorise.datagrid.1.1.2.nupkg.sha512",
"blazorise.datagrid.nuspec",
"build/Blazorise.DataGrid.props",
"build/Microsoft.AspNetCore.StaticWebAssets.props",
"buildMultiTargeting/Blazorise.DataGrid.props",
"buildTransitive/Blazorise.DataGrid.props",
"lib/net6.0/Blazorise.DataGrid.dll",
"lib/net6.0/Blazorise.DataGrid.xml",
"lib/net7.0/Blazorise.DataGrid.dll",
"lib/net7.0/Blazorise.DataGrid.xml",
"staticwebassets/datagrid.js"
]
},
"Blazorise.Icons.FontAwesome/1.1.2": {
"sha512": "3Di2jXYKffeZ+2u76JCi+BgH5M00lzoX+JUktw6wJozdksbfuPRLIVuodyzZz9WGd5bZCdYKHctrTjEWme/8lw==",
"type": "package",
"path": "blazorise.icons.fontawesome/1.1.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Blazorise.png",
"LICENSE.md",
"blazorise.icons.fontawesome.1.1.2.nupkg.sha512",
"blazorise.icons.fontawesome.nuspec",
"lib/net6.0/Blazorise.Icons.FontAwesome.dll",
"lib/net7.0/Blazorise.Icons.FontAwesome.dll"
]
},
"Microsoft.AspNetCore.Authorization/6.0.9": {
"sha512": "paH0Zgo6yWMhVwaWZ0wqyY5az7zv89C5AlRfrpAAjAyKLvgBuTIQIK9kPSIGAoOhvt56fxcDTLws3cckauWOWw==",
"type": "package",
"path": "microsoft.aspnetcore.authorization/6.0.9",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.AspNetCore.Authorization.dll",
"lib/net461/Microsoft.AspNetCore.Authorization.xml",
"lib/net6.0/Microsoft.AspNetCore.Authorization.dll",
"lib/net6.0/Microsoft.AspNetCore.Authorization.xml",
"lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
"lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
"microsoft.aspnetcore.authorization.6.0.9.nupkg.sha512",
"microsoft.aspnetcore.authorization.nuspec"
]
},
"Microsoft.AspNetCore.Components/6.0.9": {
"sha512": "ueQkgDVg30fWLRrHiK/yaDEH2J8UUZ8+5KykWTupiHoLxHBcdx60lxelmJWrLzHsiA/1aoZMhPF2r5sGDPd8nw==",
"type": "package",
"path": "microsoft.aspnetcore.components/6.0.9",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.txt",
"lib/net6.0/Microsoft.AspNetCore.Components.dll",
"lib/net6.0/Microsoft.AspNetCore.Components.xml",
"microsoft.aspnetcore.components.6.0.9.nupkg.sha512",
"microsoft.aspnetcore.components.nuspec"
]
},
"Microsoft.AspNetCore.Components.Analyzers/6.0.9": {
"sha512": "yVI41+FbLzNhBUEPWNTEwFCz3+JkzCfiD1K+8MLFa66+yDSDWBUbzXtTxzVb2I8RstANXalR/6BFUvmdYjruAQ==",
"type": "package",
"path": "microsoft.aspnetcore.components.analyzers/6.0.9",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.txt",
"analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll",
"build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets",
"buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets",
"microsoft.aspnetcore.components.analyzers.6.0.9.nupkg.sha512",
"microsoft.aspnetcore.components.analyzers.nuspec"
]
},
"Microsoft.AspNetCore.Components.Forms/6.0.9": {
"sha512": "uPFeDc3Ur8lReE6J5k+8Y+8xIhXiUHKBB3w2IV37bBh2vOSTpoMq9RkcKC8omeulqGRD4iPyzGxEA7OIIXqC0A==",
"type": "package",
"path": "microsoft.aspnetcore.components.forms/6.0.9",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.txt",
"lib/net6.0/Microsoft.AspNetCore.Components.Forms.dll",
"lib/net6.0/Microsoft.AspNetCore.Components.Forms.xml",
"microsoft.aspnetcore.components.forms.6.0.9.nupkg.sha512",
"microsoft.aspnetcore.components.forms.nuspec"
]
},
"Microsoft.AspNetCore.Components.Web/6.0.9": {
"sha512": "fNb8IGYDYYaWrt20ObNhwXkh5AhYyiphrIZDpNegvbtLtlJMsz2OaJztgpVDGNLmb7x20TQ3GlnGQiqHChcmeA==",
"type": "package",
"path": "microsoft.aspnetcore.components.web/6.0.9",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.txt",
"lib/net6.0/Microsoft.AspNetCore.Components.Web.dll",
"lib/net6.0/Microsoft.AspNetCore.Components.Web.xml",
"microsoft.aspnetcore.components.web.6.0.9.nupkg.sha512",
"microsoft.aspnetcore.components.web.nuspec"
]
},
"Microsoft.AspNetCore.Metadata/6.0.9": {
"sha512": "cQET2vOT72zW+kOd71KQE80qBSQJEnWs86HfJEZPzHgTfn/o5UyzHHRosP1EQX8iPQ9ESxmd+AJedggkSxN93Q==",
"type": "package",
"path": "microsoft.aspnetcore.metadata/6.0.9",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.AspNetCore.Metadata.dll",
"lib/net461/Microsoft.AspNetCore.Metadata.xml",
"lib/net6.0/Microsoft.AspNetCore.Metadata.dll",
"lib/net6.0/Microsoft.AspNetCore.Metadata.xml",
"lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
"lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
"microsoft.aspnetcore.metadata.6.0.9.nupkg.sha512",
"microsoft.aspnetcore.metadata.nuspec"
]
},
"Microsoft.Extensions.DependencyInjection/6.0.0": {
"sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.DependencyInjection.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.xml",
"lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
"lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
"microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
"microsoft.extensions.dependencyinjection.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
"sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
"type": "package",
"path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
"microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Logging.Abstractions/6.0.2": {
"sha512": "pwXCZKaA7m5wgmCj49dW+H1RPSY7U62SKLTQYCcavf/k3Nyt/WnBgAjG4jMGnwy9rElfAZ2KvxvM5CJzJWG0hg==",
"type": "package",
"path": "microsoft.extensions.logging.abstractions/6.0.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
"analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
"analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
"analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
"build/Microsoft.Extensions.Logging.Abstractions.targets",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
"microsoft.extensions.logging.abstractions.6.0.2.nupkg.sha512",
"microsoft.extensions.logging.abstractions.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Options/6.0.0": {
"sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
"type": "package",
"path": "microsoft.extensions.options/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net461/Microsoft.Extensions.Options.dll",
"lib/net461/Microsoft.Extensions.Options.xml",
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
"lib/netstandard2.1/Microsoft.Extensions.Options.dll",
"lib/netstandard2.1/Microsoft.Extensions.Options.xml",
"microsoft.extensions.options.6.0.0.nupkg.sha512",
"microsoft.extensions.options.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.Extensions.Primitives/6.0.0": {
"sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
"type": "package",
"path": "microsoft.extensions.primitives/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/Microsoft.Extensions.Primitives.dll",
"lib/net461/Microsoft.Extensions.Primitives.xml",
"lib/net6.0/Microsoft.Extensions.Primitives.dll",
"lib/net6.0/Microsoft.Extensions.Primitives.xml",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
"lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
"microsoft.extensions.primitives.6.0.0.nupkg.sha512",
"microsoft.extensions.primitives.nuspec",
"useSharedDesignerContext.txt"
]
},
"Microsoft.JSInterop/6.0.9": {
"sha512": "6SRDR3QEhnT3WuNittrXn0yKM2a2J7E22GAdSuKzC8tPcAjA25tHJeyFcRIJFZBmsIE0tuJzXopLrvG4sTacAg==",
"type": "package",
"path": "microsoft.jsinterop/6.0.9",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"THIRD-PARTY-NOTICES.TXT",
"lib/net6.0/Microsoft.JSInterop.dll",
"lib/net6.0/Microsoft.JSInterop.xml",
"microsoft.jsinterop.6.0.9.nupkg.sha512",
"microsoft.jsinterop.nuspec"
]
},
"System.IO.Pipelines/6.0.3": {
"sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
"type": "package",
"path": "system.io.pipelines/6.0.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.IO.Pipelines.dll",
"lib/net461/System.IO.Pipelines.xml",
"lib/net6.0/System.IO.Pipelines.dll",
"lib/net6.0/System.IO.Pipelines.xml",
"lib/netcoreapp3.1/System.IO.Pipelines.dll",
"lib/netcoreapp3.1/System.IO.Pipelines.xml",
"lib/netstandard2.0/System.IO.Pipelines.dll",
"lib/netstandard2.0/System.IO.Pipelines.xml",
"system.io.pipelines.6.0.3.nupkg.sha512",
"system.io.pipelines.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
"type": "package",
"path": "system.runtime.compilerservices.unsafe/6.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
"buildTransitive/netcoreapp3.1/_._",
"lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
"system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
"system.runtime.compilerservices.unsafe.nuspec",
"useSharedDesignerContext.txt"
]
}
}, },
"libraries": {},
"projectFileDependencyGroups": { "projectFileDependencyGroups": {
"net6.0": [] "net6.0": [
"Blazored.LocalStorage >= 4.2.0",
"Blazorise.Bootstrap >= 1.1.2",
"Blazorise.DataGrid >= 1.1.2",
"Blazorise.Icons.FontAwesome >= 1.1.2"
]
}, },
"packageFolders": { "packageFolders": {
"C:\\Users\\babaverel\\.nuget\\packages\\": {}, "C:\\Users\\babaverel\\.nuget\\packages\\": {},
@ -50,6 +757,24 @@
"frameworks": { "frameworks": {
"net6.0": { "net6.0": {
"targetAlias": "net6.0", "targetAlias": "net6.0",
"dependencies": {
"Blazored.LocalStorage": {
"target": "Package",
"version": "[4.2.0, )"
},
"Blazorise.Bootstrap": {
"target": "Package",
"version": "[1.1.2, )"
},
"Blazorise.DataGrid": {
"target": "Package",
"version": "[1.1.2, )"
},
"Blazorise.Icons.FontAwesome": {
"target": "Package",
"version": "[1.1.2, )"
}
},
"imports": [ "imports": [
"net461", "net461",
"net462", "net462",

@ -1,8 +1,28 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "+WGPLxT6w2s3Dg0Zj9S6lZmyhVPaAGRAn1YV1mxilVt4HYzxclX7UEgrCPPQL//glRztkWsBStFOC1i/AYvAyg==", "dgSpecHash": "W/1RkHWui7njzuhcVzHK0Af2S2YG/2t3peTwrz3Fxjcn4SImRVMhfS8pLj5D0np7Pye7WAPCgstn+wOIbp7How==",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\BlazorApp1.csproj", "projectFilePath": "C:\\Users\\babaverel\\Source\\Repos\\Blazor\\BlazorApp1\\BlazorApp1.csproj",
"expectedPackageFiles": [], "expectedPackageFiles": [
"C:\\Users\\babaverel\\.nuget\\packages\\blazored.localstorage\\4.2.0\\blazored.localstorage.4.2.0.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\blazorise\\1.1.2\\blazorise.1.1.2.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\blazorise.bootstrap\\1.1.2\\blazorise.bootstrap.1.1.2.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\blazorise.datagrid\\1.1.2\\blazorise.datagrid.1.1.2.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\blazorise.icons.fontawesome\\1.1.2\\blazorise.icons.fontawesome.1.1.2.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.aspnetcore.authorization\\6.0.9\\microsoft.aspnetcore.authorization.6.0.9.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.aspnetcore.components\\6.0.9\\microsoft.aspnetcore.components.6.0.9.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\6.0.9\\microsoft.aspnetcore.components.analyzers.6.0.9.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\6.0.9\\microsoft.aspnetcore.components.forms.6.0.9.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.aspnetcore.components.web\\6.0.9\\microsoft.aspnetcore.components.web.6.0.9.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.aspnetcore.metadata\\6.0.9\\microsoft.aspnetcore.metadata.6.0.9.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.2\\microsoft.extensions.logging.abstractions.6.0.2.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\microsoft.jsinterop\\6.0.9\\microsoft.jsinterop.6.0.9.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
"C:\\Users\\babaverel\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
],
"logs": [] "logs": []
} }

@ -24,3 +24,13 @@
2.0 2.0
2.0 2.0
2.0 2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0
2.0

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Loading…
Cancel
Save