How can we help you today? How can we help you today?
Akshay

Activity overview

Latest activity by Akshay

Thanks for the infromation. I did same what it been there in link and on devops pipleline I could see exe obsacation. But not those exe published by clickonce. Please see the below screen shot artificate s and yaml script. Please help me on this. [image] yaml Script: # .NET Desktop # Build and run tests for .NET Desktop or Windows classic desktop solutions. # Add steps that publish symbols, save build artifacts, and more: # https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net trigger: - master pool:   vmImage: 'windows-latest'   name: Azure Pipelines variables:   solution: '**/*.sln'   buildPlatform: 'Any CPU'   buildConfiguration: 'Release' steps: - task: NuGetToolInstaller@1 - task: NuGetCommand@2   inputs:     restoreSolution: '$(solution)' ### SmartAssembly start ### - task: NuGetCommand@2   displayName: 'SmartAssembly download'   inputs:     command: 'custom'     arguments: 'install RedGate.SmartAssembly.Installer /OutputDirectory $(System.DefaultWorkingDirectory)' - task: PowerShell@2   displayName: 'SmartAssembly installation'   inputs:     targetType: 'inline'     script: |       $saExtractPath = "$(System.DefaultWorkingDirectory)\RedGate.SmartAssembly.Installer*\tools\"       $saInstallLocation = "$(System.DefaultWorkingDirectory)\tools\SA\"        "##[debug] Installing SmartAssembly..."       $msiPath = (Get-ChildItem "$saExtractPath\SmartAssembly_*_x64.msi").FullName       echo $msiPath       $p = Start-Process -FilePath msiexec -Args "/qn /i `"$msiPath`" INSTALLDIR=`"$saInstallLocation`" RG_LICENSE=`"862-753-061946-92B4`" RG_WARNING=`"Ignore`" REBOOT=`"ReallySuppress`" RG_I=`"Red Gate Software Ltd.`"" -Wait -Verbose -PassThru       if ($p.ExitCode -ne 0) {         throw "SmartAssembly installation failed. Installer exited with code: $($p.ExitCode)"       }       "##[debug] Installing SmartAssembly Done..." - task: VSBuild@1   inputs:     solution: '$(solution)'     msbuildArgs: '/target:publish'     platform: '$(buildPlatform)'     configuration: '$(buildConfiguration)' - task: PowerShell@2   displayName: 'SmartAssembly execution'   inputs:     targetType: 'inline'     script: |       $saInstallLocation = "$(System.DefaultWorkingDirectory)\Tools\SA\"       $saComPath = "$saInstallLocation\SmartAssembly.com"       echo $(Build.SourcesDirectory)       echo $(Build.SourcesDirectory)\ClickOnceWindows.saproj       "##[debug] Executing SmartAssembly..."       & $saComPath /build "ClickOnceWindows/ClickOnceWindows.saproj" # replace with path to your .saproj file         "##[debug] Executing SmartAssembly done..." - task: CopyFiles@2   displayName: 'Copy Files to: $(build.artifactstagingdirectory)'   inputs:     SourceFolder: '$(system.defaultworkingdirectory)'     Contents: '**\bin\$(BuildConfiguration)\**'     TargetFolder: '$(build.artifactstagingdirectory)'   condition: succeededOrFailed()       - task: PublishBuildArtifacts@1   displayName: 'Publish Artifact: drop'   inputs:     PathtoPublish: '$(build.artifactstagingdirectory)'   condition: succeededOrFailed()   / comments
Thanks for the infromation. I did same what it been there in link and on devops pipleline I could see exe obsacation. But not those exe published by clickonce.Please see the below screen shot artif...
0 votes
trail version of smart assembly
Hi Team, I am unable to download trail version of smart assembly on devops pipe line. I am looking for license key to test some scenarios..if everything works then thinking to but the product..coul...
0 followers 0 comments 0 votes
trail version of smart assembly on devops pipe line
Hi Team, I am unable to download trail version of smart assembly on devops pipe line. I am looking for license key to test some scenarios..if everything works then thinking to but the product..coul...
3 followers 8 comments 0 votes