Updated EnvelopeGenerator.ReceiverUI.csproj to enable native WebAssembly builds and load all globalization data for improved localization support. Refactored ReportViewer.razor to enhance layout calculations for the signature section: - Introduced constants for better readability and maintainability. - Dynamically adjusted band height and padding to fit content without overlap. - Updated control positioning and sizing using calculated values. - Changed font style of the signature label to regular and reordered control additions for clarity.
42 lines
2.3 KiB
XML
42 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<WasmBuildNative>true</WasmBuildNative>
|
|
<InvariantGlobalization>false</InvariantGlobalization>
|
|
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
|
|
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>EnvelopeGenerator.ReceiverUI</PackageId>
|
|
<Authors>Digital Data GmbH</Authors>
|
|
<Company>Digital Data GmbH</Company>
|
|
<Product>EnvelopeGenerator.ReceiverUI</Product>
|
|
<PackageIcon>Assets\icon.ico</PackageIcon>
|
|
<PackageTags>digital data envelope generator web</PackageTags>
|
|
<Description>EnvelopeGenerator.ReceiverUI is a Blazor WebAssembly application developed to manage signing processes. It uses Entity Framework Core (EF Core) for database operations. The user interface for signing processes is developed with Razor View Engine (.cshtml files) and JavaScript under wwwroot, integrated with PSPDFKit. This integration allows users to view and sign documents seamlessly.</Description>
|
|
<Version>1.0.1</Version>
|
|
<!-- NuGet package version -->
|
|
<AssemblyVersion>1.0.1.0</AssemblyVersion>
|
|
<!-- Assembly version for API compatibility -->
|
|
<FileVersion>1.0.1.0</FileVersion>
|
|
<!-- Windows file version -->
|
|
<Copyright>Copyright © 2026 Digital Data GmbH. All rights reserved.</Copyright>
|
|
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="HarfBuzzSharp.NativeAssets.WebAssembly" Version="8.3.1.2" />
|
|
<PackageReference Include="SkiaSharp.NativeAssets.WebAssembly" Version="3.119.1" />
|
|
<PackageReference Include="SkiaSharp.Views.Blazor" Version="3.119.1" />
|
|
<NativeFileReference Include="$(HarfBuzzSharpStaticLibraryPath)\2.0.23\*.a" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.11" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.11" PrivateAssets="all" />
|
|
<PackageReference Include="DevExpress.Drawing.Skia" Version="25.2.3" />
|
|
<PackageReference Include="DevExpress.Blazor.Reporting.JSBasedControls" Version="25.2.3" />
|
|
<PackageReference Include="DevExpress.Blazor.Reporting.Viewer" Version="25.2.3" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Properties\PublishProfiles\" />
|
|
</ItemGroup>
|
|
</Project> |