Add IIS publish profile for Web Deploy packaging Added `IISProfile.pubxml` to configure publishing via Web Deploy. Set the publish method to `Package` and specified build settings (`Release`, `Any CPU`). Configured the output package location, enabled single-file packaging, and set the IIS app path to `DocumentOperator.API`. Target framework updated to .NET 8.0.
18 lines
882 B
XML
18 lines
882 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- https://go.microsoft.com/fwlink/?LinkID=208121. -->
|
|
<Project>
|
|
<PropertyGroup>
|
|
<WebPublishMethod>Package</WebPublishMethod>
|
|
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
|
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
|
<SiteUrlToLaunchAfterPublish />
|
|
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
|
<ExcludeApp_Data>false</ExcludeApp_Data>
|
|
<ProjectGuid>c60bc965-d293-ea64-b153-1941f0648df4</ProjectGuid>
|
|
<DesktopBuildPackageLocation>M:\App&Service\0 DD - Smart UP\DocumentOperator\PreRelease\API\net8\$(Version)\DocumentOperator.API.zip</DesktopBuildPackageLocation>
|
|
<PackageAsSingleFile>true</PackageAsSingleFile>
|
|
<DeployIisAppPath>DocumentOperator.API</DeployIisAppPath>
|
|
<_TargetId>IISWebDeployPackage</_TargetId>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
</PropertyGroup>
|
|
</Project> |