我正在尝试使用Azure开发人员操作来构建和部署Asp.net 4.0应用程序。我想为每个aspx页面创建一个单独的dll。因此,在管道的构建参数中,我有以下内容
/t:Rebuild /p:OutputPath=bin /p:DeployOnBuild=True /p:WebPublishMethod="FileSystem"
/p:PublishProvider="FileSystem" /p:PrecompileBeforePublish=True /p:EnableUpdateable=False
**/p:DebugSymbols=True /p:UseMerge=True /p:DeleteAppCodeCompiledFiles=True
/p:DeleteExistingFiles=True /p:WDPMergeOption="CreateSeparateAssembly"** /p:UseFixedNames=True
/p:SkipInvalidConfigurations=True /p:Configuration=Release /p:LastUsedPlatform="Any CPU"
/p:PackageAsSingleFile=True
/p:PackageLocation="$(build.artifactstagingdirectory)\\"
尽管设置创建单独的程序集,但我无法为每个aspx页面看到单独的dll。有人可以帮忙吗