Final Front Design
continuous-integration/drone/push Build is passing Details

Projet
Dorian HODIN 3 years ago
parent 2361cf2938
commit 3e1a00572c

Binary file not shown.

@ -16,7 +16,7 @@ namespace ProjetBlazor.Components
public bool NoDrop { get; set; }
[CascadingParameter]
public ItemsList? Parent { get; set; }
public ItemsList Parent { get; set; }
internal void OnDragEnter()
{
@ -46,7 +46,6 @@ namespace ProjetBlazor.Components
}
this.Item = Parent.CurrentDragItem;
Parent.ItemsInventory[this.Index] = this.Item;
Parent.Actions.Add(new ItemInInventory { Item = this.Item, Index = this.Index });

@ -0,0 +1,7 @@
.item {
margin: 10% 10% 10% 10%;
width: 100px;
height: 100px;
border: 1px solid;
overflow: hidden;
}

@ -1,10 +0,0 @@
using ProjetBlazor.Models;
namespace ProjetBlazor.Components
{
public class ItemInventory
{
public Item Give { get; set; }
}
}

@ -1,61 +1,39 @@
@using Models
<CascadingValue Value="@this">
<div class="container">
<div class="row">
<div class="col-6">
<div>All items:</div>
<div>
<div class="css-grid">
<DataGrid TItem="Item"
Data="@items"
ReadData="@OnReadData"
TotalItems="@totalItem"
PageSize="10"
ShowPager
Responsive>
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Image">
<DisplayTemplate>
@if (!string.IsNullOrWhiteSpace(context.ImageBase64))
{
<img src="data:image/png;base64, @(context.ImageBase64)" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style ="min-width: 50px; 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="Nom" />
<DataGridColumn TItem="Item" Field="@nameof(Item.StackSize)" Caption="Taille Stack" />
</DataGrid>
</div>
</div>
</div>
<div class="col-6">
<div>Inventaire</div>
<div>
<div class="css-recipe">
@for (int i = 0; i < 36; i++)
<div class="css-grid">
<div><h1>List of items :</h1></div>
<DataGrid TItem="Item"
Data="@items"
ReadData="@OnReadData"
TotalItems="@totalItem"
PageSize="8"
ShowPager
Responsive>
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="Image">
<DisplayTemplate>
@if (!string.IsNullOrWhiteSpace(context.ImageBase64))
{
<CraftingItem Index="@i" />
<img src="data:image/png;base64, @(context.ImageBase64)" class="img-thumbnail" title="@context.DisplayName" alt="@context.DisplayName" style ="min-width: 50px; max-width: 150px" />
}
</div>
</div>
</div>
<div class="col-18">
<div>Actions</div>
<div class="actions" id="actions">
</div>
</div>
</div>
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="Nom" />
<DataGridColumn TItem="Item" Field="@nameof(Item.StackSize)" Caption="Taille Stack" />
</DataGrid>
</div>
<div><h1>My Inventory :</h1></div>
<div class="css-recipe">
@for (int i = 0; i < 27; i++)
{
<GetItemInInventory Index="@i" />
}
</div>
</CascadingValue>

@ -19,7 +19,7 @@ namespace ProjetBlazor.Components
{
Actions = new ObservableCollection<ItemInInventory>();
Actions.CollectionChanged += OnActionsCollectionChanged;
this.ItemsInventory= new List<Item> { null, null, null, null, null, null, null, null, null };
this.ItemsInventory= new List<ItemInInventory> {};
}
public ObservableCollection<ItemInInventory> Actions { get; set; }
@ -28,8 +28,8 @@ namespace ProjetBlazor.Components
[Parameter]
public List<Item> Items { get; set; }
public List<Item> ItemsInventory { get; set; }
public List<ItemInInventory> ItemsInventory { get; set; }
/// <summary>
/// Gets or sets the java script runtime.

@ -0,0 +1,17 @@
.css-grid {
float: right;
width: 48%;
}
.css-recipe {
display: grid;
grid-template-columns: repeat(9,minmax(0,1fr));
width: 48%;
float: left;
}
.actions {
border: 1px solid black;
height: 250px;
clear: both;
}

@ -8,5 +8,5 @@
<div>
<ItemsList Inventory="Inventory" Items="Items"/>
<ItemsList Items="Items"/>
</div>

@ -12,8 +12,6 @@ namespace ProjetBlazor.Pages
public List<Item> Items { get; set; } = new List<Item>();
private List<ItemInventory> ItemInventory { get; set; } = new List<ItemInventory>();
protected override async Task OnAfterRenderAsync(bool firstRender)
{
_ = base.OnAfterRenderAsync(firstRender);

@ -50,10 +50,5 @@ namespace ProjetBlazor.Services
{
await _http.DeleteAsync($"https://localhost:7234/api/Crafting/{id}");
}
public async Task<List<ItemInventory>> GetInventory()
{
return await _http.GetFromJsonAsync<List<ItemInventory>>("https://localhost:7234/api/Crafting/recipe");
}
}
}

@ -173,19 +173,5 @@ namespace ProjetBlazor.Services
// Save the data
await _localStorage.SetItemAsync("data", currentData);
}
public Task<List<ItemInventory>> GetInventory()
{
var items = new List<ItemInventory>
{
new ItemInventory
{
Give = new Item { DisplayName = "Diamond", Name = "diamond" },
}
};
return Task.FromResult(items);
}
}
}

@ -16,7 +16,5 @@ namespace ProjetBlazor.Services
Task Update(int id, ItemModel model);
Task Delete(int id);
Task<List<ItemInventory>> GetInventory();
}
}

@ -7,10 +7,9 @@
<main>
<div class="top-row px-4">
<img src="/images/minecraft.png" height="31px"/>
<a href="https://www.minecraft.net/fr-fr" target="_blank">Minecraft Website</a>
</div>
<article class="content px-4">
@Body
</article>

@ -9,63 +9,14 @@ main {
flex: 1;
}
.sidebar {
background-image: linear-gradient(180deg, #3B8526 10%, #171615 90%);
}
.top-row {
background-image: linear-gradient(90deg, #3B8526 10%, #171615 90%);
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row ::deep a, .top-row .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth) {
display: none;
}
.top-row.auth {
justify-content: space-between;
}
.top-row a, .top-row .btn-link {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page {
flex-direction: row;
}
.sidebar {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row {
position: sticky;
top: 0;
z-index: 1;
}
.top-row, article {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
article{
background-image: url("../wwwroot/images/background.png");
}

File diff suppressed because one or more lines are too long

@ -20,14 +20,6 @@ build_property._RazorSourceGeneratorDebug =
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Components/GetItemInInventory.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xHZXRJdGVtSW5JbnZlbnRvcnkucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Components/ItemsList.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJdGVtc0xpc3QucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Modals/DeleteConfirmation.razor]
build_metadata.AdditionalFiles.TargetPath = TW9kYWxzXERlbGV0ZUNvbmZpcm1hdGlvbi5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
@ -40,6 +32,14 @@ build_metadata.AdditionalFiles.CssScope =
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Components/GetItemInInventory.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xHZXRJdGVtSW5JbnZlbnRvcnkucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-qx2dj81qjg
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Components/ItemsList.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xJdGVtc0xpc3QucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-7ik5rr5b8g
[C:/Users/Dorian/Documents/Blazor/Code/ProjetBlazor/Shared/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
build_metadata.AdditionalFiles.CssScope = b-6fq4tjte4h

@ -1 +1 @@
f933fda716cfd53fcaf7cf10a863274c5b653351
229bd16bb9b4923f80464bcfeab9862ed937a469

@ -89,3 +89,5 @@ C:\Users\Dorian\Documents\Blazor\Code\ProjetBlazor\bin\Debug\net6.0\Microsoft.Ex
C:\Users\Dorian\Documents\Blazor\Code\ProjetBlazor\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll
C:\Users\Dorian\Documents\Blazor\Code\ProjetBlazor\bin\Debug\net6.0\Microsoft.Extensions.Logging.Configuration.dll
C:\Users\Dorian\Documents\Blazor\Code\ProjetBlazor\bin\Debug\net6.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll
C:\Users\Dorian\Documents\Blazor\Code\ProjetBlazor\obj\Debug\net6.0\scopedcss\Components\ItemsList.razor.rz.scp.css
C:\Users\Dorian\Documents\Blazor\Code\ProjetBlazor\obj\Debug\net6.0\scopedcss\Components\GetItemInInventory.razor.rz.scp.css

File diff suppressed because one or more lines are too long

@ -0,0 +1,7 @@
.item[b-qx2dj81qjg] {
margin: 10% 10% 10% 10%;
width: 100px;
height: 100px;
border: 1px solid;
overflow: hidden;
}

@ -0,0 +1,17 @@
.css-grid[b-7ik5rr5b8g] {
float: right;
width: 48%;
}
.css-recipe[b-7ik5rr5b8g] {
display: grid;
grid-template-columns: repeat(9,minmax(0,1fr));
width: 48%;
float: left;
}
.actions[b-7ik5rr5b8g] {
border: 1px solid black;
height: 250px;
clear: both;
}

@ -9,63 +9,14 @@ main[b-6fq4tjte4h] {
flex: 1;
}
.sidebar[b-6fq4tjte4h] {
background-image: linear-gradient(180deg, #3B8526 10%, #171615 90%);
}
.top-row[b-6fq4tjte4h] {
background-image: linear-gradient(90deg, #3B8526 10%, #171615 90%);
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-6fq4tjte4h] a, .top-row .btn-link[b-6fq4tjte4h] {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child[b-6fq4tjte4h] {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-6fq4tjte4h] {
display: none;
}
.top-row.auth[b-6fq4tjte4h] {
justify-content: space-between;
}
.top-row a[b-6fq4tjte4h], .top-row .btn-link[b-6fq4tjte4h] {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-6fq4tjte4h] {
flex-direction: row;
}
.sidebar[b-6fq4tjte4h] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-6fq4tjte4h] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row[b-6fq4tjte4h], article[b-6fq4tjte4h] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
article[b-6fq4tjte4h]{
background-image: url("../wwwroot/images/background.png");
}

@ -1,5 +1,31 @@
@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
/* _content/ProjetBlazor/Components/GetItemInInventory.razor.rz.scp.css */
.item[b-qx2dj81qjg] {
margin: 10% 10% 10% 10%;
width: 100px;
height: 100px;
border: 1px solid;
overflow: hidden;
}
/* _content/ProjetBlazor/Components/ItemsList.razor.rz.scp.css */
.css-grid[b-7ik5rr5b8g] {
float: right;
width: 48%;
}
.css-recipe[b-7ik5rr5b8g] {
display: grid;
grid-template-columns: repeat(9,minmax(0,1fr));
width: 48%;
float: left;
}
.actions[b-7ik5rr5b8g] {
border: 1px solid black;
height: 250px;
clear: both;
}
/* _content/ProjetBlazor/Shared/MainLayout.razor.rz.scp.css */
.page[b-6fq4tjte4h] {
position: relative;
@ -12,63 +38,14 @@ main[b-6fq4tjte4h] {
flex: 1;
}
.sidebar[b-6fq4tjte4h] {
background-image: linear-gradient(180deg, #3B8526 10%, #171615 90%);
}
.top-row[b-6fq4tjte4h] {
background-image: linear-gradient(90deg, #3B8526 10%, #171615 90%);
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-6fq4tjte4h] a, .top-row .btn-link[b-6fq4tjte4h] {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child[b-6fq4tjte4h] {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-6fq4tjte4h] {
display: none;
}
.top-row.auth[b-6fq4tjte4h] {
justify-content: space-between;
}
.top-row a[b-6fq4tjte4h], .top-row .btn-link[b-6fq4tjte4h] {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-6fq4tjte4h] {
flex-direction: row;
}
.sidebar[b-6fq4tjte4h] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-6fq4tjte4h] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row[b-6fq4tjte4h], article[b-6fq4tjte4h] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
article[b-6fq4tjte4h]{
background-image: url("../wwwroot/images/background.png");
}

@ -1,3 +1,29 @@
/* _content/ProjetBlazor/Components/GetItemInInventory.razor.rz.scp.css */
.item[b-qx2dj81qjg] {
margin: 10% 10% 10% 10%;
width: 100px;
height: 100px;
border: 1px solid;
overflow: hidden;
}
/* _content/ProjetBlazor/Components/ItemsList.razor.rz.scp.css */
.css-grid[b-7ik5rr5b8g] {
float: right;
width: 48%;
}
.css-recipe[b-7ik5rr5b8g] {
display: grid;
grid-template-columns: repeat(9,minmax(0,1fr));
width: 48%;
float: left;
}
.actions[b-7ik5rr5b8g] {
border: 1px solid black;
height: 250px;
clear: both;
}
/* _content/ProjetBlazor/Shared/MainLayout.razor.rz.scp.css */
.page[b-6fq4tjte4h] {
position: relative;
@ -10,63 +36,14 @@ main[b-6fq4tjte4h] {
flex: 1;
}
.sidebar[b-6fq4tjte4h] {
background-image: linear-gradient(180deg, #3B8526 10%, #171615 90%);
}
.top-row[b-6fq4tjte4h] {
background-image: linear-gradient(90deg, #3B8526 10%, #171615 90%);
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row[b-6fq4tjte4h] a, .top-row .btn-link[b-6fq4tjte4h] {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child[b-6fq4tjte4h] {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth)[b-6fq4tjte4h] {
display: none;
}
.top-row.auth[b-6fq4tjte4h] {
justify-content: space-between;
}
.top-row a[b-6fq4tjte4h], .top-row .btn-link[b-6fq4tjte4h] {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page[b-6fq4tjte4h] {
flex-direction: row;
}
.sidebar[b-6fq4tjte4h] {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row[b-6fq4tjte4h] {
position: sticky;
top: 0;
z-index: 1;
}
.top-row[b-6fq4tjte4h], article[b-6fq4tjte4h] {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
article[b-6fq4tjte4h]{
background-image: url("../wwwroot/images/background.png");
}

@ -1,6 +1,6 @@
{
"Version": 1,
"Hash": "YymTMCeFxk/Mg5hVY77l1jSMPgaFdx5P4+jc4BRFNwk=",
"Hash": "1dERKwUQFmxFoMkn7U18Y5/CzwUo1DpIhe8FHM3UHt4=",
"Source": "ProjetBlazor",
"BasePath": "_content/ProjetBlazor",
"Mode": "Default",
@ -1003,12 +1003,12 @@
"OriginalItemSpec": "wwwroot\\favicon.ico"
},
{
"Identity": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\default.png",
"Identity": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\background.png",
"SourceId": "ProjetBlazor",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\",
"BasePath": "_content/ProjetBlazor",
"RelativePath": "images/default.png",
"RelativePath": "images/background.png",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@ -1017,7 +1017,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\default.png"
"OriginalItemSpec": "wwwroot\\images\\background.png"
},
{
"Identity": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\minecraft.png",
@ -1035,23 +1035,6 @@
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\minecraft.png"
},
{
"Identity": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\planks.png",
"SourceId": "ProjetBlazor",
"SourceType": "Discovered",
"ContentRoot": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\",
"BasePath": "_content/ProjetBlazor",
"RelativePath": "images/planks.png",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
"RelatedAsset": "",
"AssetTraitName": "",
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "wwwroot\\images\\planks.png"
}
]
}

File diff suppressed because one or more lines are too long

@ -65,17 +65,13 @@
"PackagePath": "staticwebassets\\favicon.ico"
},
{
"Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\default.png",
"PackagePath": "staticwebassets\\images\\default.png"
"Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\background.png",
"PackagePath": "staticwebassets\\images\\background.png"
},
{
"Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\minecraft.png",
"PackagePath": "staticwebassets\\images\\minecraft.png"
},
{
"Id": "C:\\Users\\Dorian\\Documents\\Blazor\\Code\\ProjetBlazor\\wwwroot\\images\\planks.png",
"PackagePath": "staticwebassets\\images\\planks.png"
},
{
"Id": "obj\\Debug\\net6.0\\staticwebassets\\msbuild.ProjetBlazor.Microsoft.AspNetCore.StaticWebAssets.props",
"PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"

@ -240,12 +240,12 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\default.png))">
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\background.png))">
<SourceType>Package</SourceType>
<SourceId>ProjetBlazor</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/ProjetBlazor</BasePath>
<RelativePath>images/default.png</RelativePath>
<RelativePath>images/background.png</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
@ -254,7 +254,7 @@
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\default.png))</OriginalItemSpec>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\background.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\minecraft.png))">
<SourceType>Package</SourceType>
@ -272,22 +272,6 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\minecraft.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\planks.png))">
<SourceType>Package</SourceType>
<SourceId>ProjetBlazor</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/ProjetBlazor</BasePath>
<RelativePath>images/planks.png</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\planks.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\ProjetBlazor.bundle.scp.css))">
<SourceType>Package</SourceType>
<SourceId>ProjetBlazor</SourceId>

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 B

Loading…
Cancel
Save