The `<DesktopBuildPackageLocation>` property in `IISProfile.pubxml` was updated to remove the hardcoded `net8` subdirectory. The path now dynamically uses the `$(Version)` variable directly under the `API` directory, improving flexibility and reducing the need for manual updates when versions change.
17 lines
807 B
XML
17 lines
807 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>420218ad-3c27-4003-9a84-36c92352f175</ProjectGuid>
|
|
<DesktopBuildPackageLocation>P:\Install .Net\0 DD - Smart UP\ReC\API\$(Version)\Rec.API.zip</DesktopBuildPackageLocation>
|
|
<PackageAsSingleFile>true</PackageAsSingleFile>
|
|
<DeployIisAppPath>Rec.API</DeployIisAppPath>
|
|
<_TargetId>IISWebDeployPackage</_TargetId>
|
|
</PropertyGroup>
|
|
</Project> |