From 94c24955159e100400518fed6b9d83fc21d9a297 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 5 Aug 2026 09:30:20 +0200 Subject: [PATCH] Add IIS publish profile for .NET 8.0 web application Added a new `IISProfile.pubxml` configuration file to enable publishing the web application as a package. Configured the build to use the `Release` configuration and `Any CPU` platform. Set the target framework to `.NET 8.0` and defined the IIS deployment path as `JobRunner.WebCron`. The package is created as a single file and includes the `App_Data` folder. Specified the desktop build package location and added a unique project GUID for identification. --- .../PublishProfiles/IISProfile.pubxml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ECMJobRunner.WebCron/Properties/PublishProfiles/IISProfile.pubxml diff --git a/ECMJobRunner.WebCron/Properties/PublishProfiles/IISProfile.pubxml b/ECMJobRunner.WebCron/Properties/PublishProfiles/IISProfile.pubxml new file mode 100644 index 0000000..40962cc --- /dev/null +++ b/ECMJobRunner.WebCron/Properties/PublishProfiles/IISProfile.pubxml @@ -0,0 +1,18 @@ + + + + + Package + Release + Any CPU + + true + false + c60bc965-d293-ea64-b153-1941f0648df4 + M:\App&Service\0 DD - Smart UP\JobRunner\PreRelease\WebCron\net8\$(Version)\JobRunner.WebCron.zip + true + JobRunner.WebCron + <_TargetId>IISWebDeployPackage + net8.0 + + \ No newline at end of file