Skip to content

Commit

Permalink
Build fix and update version to 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
EricJohnson327 committed Jan 18, 2024
1 parent 98d05b2 commit 0c664dd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
35 changes: 18 additions & 17 deletions build/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ parameters:
- release

variables:
MSIXVersion: '0.900'
MSIXVersion: '0.1000'
solution: '**/GitHubExtension.sln'
appxPackageDir: 'AppxPackages'
testOutputArtifactDir: 'TestResults'
Expand Down Expand Up @@ -189,22 +189,23 @@ extends:
MaxConcurrency: '50'
MaxRetryAttempts: '5'

- task: AzureKeyVault@1
inputs:
azureSubscription: 'DevHomeAzureServiceConnection'
KeyVaultName: 'DevHomeKeyVault'
SecretsFilter: 'ApiScanConnectionString'
RunAsPreJob: false

- task: APIScan@2
inputs:
softwareFolder: '$(Build.StagingDirectory)'
softwareName: 'Dev Home GitHub Extension'
softwareVersionNum: '1.0'
softwareBuildNum: '$(Build.BuildId)'
symbolsFolder: 'SRV*http://symweb'
env:
AzureServicesAuthConnectionString: $(ApiScanConnectionString)
# Commented out until our implementation is fixed
# - task: AzureKeyVault@1
# inputs:
# azureSubscription: 'DevHomeAzureServiceConnection'
# KeyVaultName: 'DevHomeKeyVault'
# SecretsFilter: 'ApiScanConnectionString'
# RunAsPreJob: false

# - task: APIScan@2
# inputs:
# softwareFolder: '$(Build.StagingDirectory)'
# softwareName: 'Dev Home GitHub Extension'
# softwareVersionNum: '1.0'
# softwareBuildNum: '$(Build.BuildId)'
# symbolsFolder: 'SRV*http://symweb'
# env:
# AzureServicesAuthConnectionString: $(ApiScanConnectionString)

- task: Windows Application Driver@0
condition: and(always(), ne('${{ platform}}', 'arm64'))
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/CreateBuildInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Param(
)

$Major = "0"
$Minor = "9"
$Minor = "10"
$Patch = "99" # default to 99 for local builds

$versionSplit = $Version.Split(".");
Expand Down

0 comments on commit 0c664dd

Please sign in to comment.