AdminPanel/Netina.AdminPanel.PWA/Netina.AdminPanel.PWA.csproj

125 lines
5.2 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
2024-01-21 08:33:37 +03:30
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
Refactor and enhance product and order handling - Updated `DiscountActionDialogBoxViewModel` and `FastProductCreateDialogBoxViewModel` to create command objects directly from properties and improved error handling. - Added meta tag management UI and logic in `ProductActionDialogBox.razor` and `ProductActionDialogBoxViewModel`. - Increased max file read stream size to 8 MB in `StorageDialogBoxViewModel`. - Incremented `AssemblyVersion` and `FileVersion` to `1.7.20.34` in `Netina.AdminPanel.PWA.csproj`. - Updated `BrandsPage.razor` and `BrandsPageViewModel` for pagination and service injection. - Updated `CategoriesPageViewModel` to create command objects directly from properties. - Updated `ProductsPage.razor` for service injection and added a button for product details. - Updated `ICrudApiRest` and `ICrudDtoApiRest` interfaces to use generic `Create` methods. - Updated `appsettings.Development.json` for `StorageBaseUrl` and commented out `IsShop`. - Added new project `AppHost.csproj` targeting .NET 8.0 with Aspire hosting. - Added new `appsettings.Development.json` and `appsettings.json` for logging. - Added new `Program.cs` to create and run a distributed application. - Added new `launchSettings.json` for application launch settings. - Added `Extensions.cs` for common .NET Aspire services. - Added new project `ServiceDefaults.csproj` for shared service defaults. - Introduced `ProductMetaTag` class and related migration for meta tag handling. - Updated `OrderController.cs` for additional authorization requirements. - Updated target frameworks to `net8.0` in various projects. - Enhanced `SiteMapService.cs` to include brand site maps. - Added new properties to DTOs for customer and meta tag handling. - Enhanced `Product` class with meta tag management methods. - Refactored `OrderMapper.g.cs` and `ProductMapper.g.cs` for improved mapping logic. - Enhanced command handlers to manage meta tags. - Added `ICurrentUserService` for user permissions in query handlers. - Refactored `StorageService.cs` for paginated storage file fetching.
2024-12-06 17:37:40 +03:30
<AssemblyVersion>1.7.20.34</AssemblyVersion>
<FileVersion>1.7.20.34</FileVersion>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
2024-01-21 08:33:37 +03:30
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="npm run buildcss" />
</Target>
<ItemGroup>
<Content Remove="wwwroot\assets\fonts\Shabnam-Bold.ttf" />
</ItemGroup>
<ItemGroup>
<None Remove="tailwind.config.js" />
</ItemGroup>
<ItemGroup>
<Content Include="tailwind.config.js">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="wwwroot\assets\fonts\Shabnam-Bold.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
2024-08-06 12:38:57 +03:30
<ItemGroup>
<None Include="wwwroot\assets\vendor\ckeditor5.css.map" />
<None Include="wwwroot\assets\vendor\ckeditor5.js" />
<None Include="wwwroot\assets\vendor\ckeditor5.js.map" />
</ItemGroup>
2024-01-21 08:33:37 +03:30
<ItemGroup>
2024-03-01 16:16:05 +03:30
<PackageReference Include="Append.Blazor.Printing" Version="6.3.0" />
2024-01-21 08:33:37 +03:30
<PackageReference Include="Blazored.LocalStorage" Version="4.4.0" />
<PackageReference Include="Blazorise.LottieAnimation" Version="1.4.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.1" PrivateAssets="all" />
2024-04-17 16:19:43 +03:30
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.JSInterop.WebAssembly" Version="8.0.1" />
<PackageReference Include="MudBlazor" Version="6.13.0" />
2024-01-21 08:33:37 +03:30
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Radzen.Blazor" Version="4.24.2" />
2024-01-21 08:33:37 +03:30
<PackageReference Include="Refit" Version="7.0.0" />
<PackageReference Include="Refit.HttpClientFactory" Version="7.0.0" />
<PackageReference Include="Refit.Newtonsoft.Json" Version="7.0.0" />
<PackageReference Include="Syncfusion.Pdf.Net.Core" Version="24.2.8" />
2024-01-21 08:33:37 +03:30
<PackageReference Include="Toolbelt.Blazor.PWA.Updater" Version="2.1.0.1" />
</ItemGroup>
<ItemGroup>
2024-08-05 23:23:32 +03:30
<ProjectReference Include="..\..\Api\Netina.Domain\Netina.Domain.csproj" />
</ItemGroup>
2024-01-21 08:33:37 +03:30
<ItemGroup>
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>
<ItemGroup>
<Using Include="Blazored.LocalStorage" />
2024-04-17 16:19:43 +03:30
<Using Include="Mapster" />
<Using Include="Microsoft.AspNetCore.Components" />
<Using Include="Microsoft.IdentityModel.Tokens" />
<Using Include="Microsoft.JSInterop" />
<Using Include="MudBlazor" />
2024-04-17 16:19:43 +03:30
<Using Include="Netina.AdminPanel.PWA.Dialogs" />
<Using Include="Netina.AdminPanel.PWA.Dialogs.Originals" />
<Using Include="Netina.AdminPanel.PWA.Extensions" />
<Using Include="Netina.AdminPanel.PWA.Models" />
<Using Include="Netina.AdminPanel.PWA.Models.Api" />
<Using Include="Netina.AdminPanel.PWA.Services.RestServices" />
<Using Include="Netina.AdminPanel.PWA.Utilities" />
<Using Include="Netina.AdminPanel.PWA.Utilities.Models" />
<Using Include="Netina.Common.Extensions" />
<Using Include="Netina.Common.Models.Api" />
<Using Include="Netina.Common.Models.Exception" />
<Using Include="Netina.Domain.CommandQueries.Commands" />
<Using Include="Netina.Domain.Dtos.DashboardDtos" />
<Using Include="Netina.Domain.Dtos.FilterDtos" />
2024-04-17 16:19:43 +03:30
<Using Include="Netina.Domain.Dtos.LargDtos" />
<Using Include="Netina.Domain.Dtos.RequestDtos" />
<Using Include="Netina.Domain.Dtos.ResponseDtos" />
<Using Include="Netina.Domain.Dtos.SmallDtos" />
<Using Include="Netina.Domain.Entities.ProductCategories" />
<Using Include="Netina.Domain.Entities.Products" />
<Using Include="Netina.Domain.Enums" />
<Using Include="Netina.Domain.Extensions" />
2024-04-17 16:19:43 +03:30
<Using Include="Netina.Domain.MartenEntities.Pages" />
<Using Include="Netina.Domain.MartenEntities.Settings" />
2024-04-17 16:19:43 +03:30
<Using Include="Netina.Domain.Models.Districts" />
<Using Include="Newtonsoft.Json" />
<Using Include="Refit" />
<Using Include="System.Collections.ObjectModel" />
<Using Include="System.Net" />
</ItemGroup>
<ItemGroup>
<Content Update="version.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\appsettings.Development.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\appsettings.Production.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2024-01-21 08:33:37 +03:30
</Project>