From bca0b09cf4cbd33dec6055903efbc13056225355 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 1 Jun 2026 10:02:29 +0200 Subject: [PATCH] Add IIS publish profile for .NET 8.0 deployment A new publish profile `IISProfileNet8.pubxml` was added to configure deployment settings for a .NET project targeting the `net8.0` framework. Key settings include: - `WebPublishMethod` set to `Package` for deployment packaging. - `LastUsedBuildConfiguration` set to `Release`. - `DesktopBuildPackageLocation` specifies the output path with a version placeholder. - `PackageAsSingleFile` set to `true` for single-file packaging. - `DeployIisAppPath` set to `EnvelopeGenerator` for IIS deployment. - `TargetFramework` specified as `net8.0`. This profile streamlines the deployment process and ensures compatibility with .NET 8.0. --- .../PublishProfiles/IISProfileNet8.pubxml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 EnvelopeGenerator.API/Properties/PublishProfiles/IISProfileNet8.pubxml diff --git a/EnvelopeGenerator.API/Properties/PublishProfiles/IISProfileNet8.pubxml b/EnvelopeGenerator.API/Properties/PublishProfiles/IISProfileNet8.pubxml new file mode 100644 index 00000000..a976ef89 --- /dev/null +++ b/EnvelopeGenerator.API/Properties/PublishProfiles/IISProfileNet8.pubxml @@ -0,0 +1,20 @@ + + + + + Package + Release + Any CPU + + true + false + 5e0e17c0-ff5a-4246-bf87-1add85376a27 + M:\App&Service\0 DD - Smart UP\signFLOW\API\net8\$(Version)\EnvelopeGenerator.API.zip + true + EnvelopeGenerator + <_TargetId>IISWebDeployPackage + net8.0 + + \ No newline at end of file