Added `<Nullable>enable</Nullable>` to improve code safety. Included metadata properties for NuGet packaging, such as `<PackageId>`, `<Authors>`, `<Company>`, `<Product>`, and more, to support package creation and distribution. Updated the `<Description>` to detail the project's purpose and technologies. Specified versioning details to ensure proper version control and compatibility.
40 lines
2.2 KiB
XML
40 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<WasmBuildNative>true</WasmBuildNative>
|
|
|
|
<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> |