Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.413
dotnet-version: 8.0.414
- name: Build
shell: pwsh
run: |
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.413
dotnet-version: 8.0.414
- name: Build
shell: pwsh
run: |
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.413
dotnet-version: 8.0.414
- name: Build
shell: pwsh
run: |
Expand Down
6 changes: 6 additions & 0 deletions .pipelines/Package-Official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ parameters: # parameters are shown up in ADO UI in a build queue time
displayName: 'Enable debug output'
type: boolean
default: false
- name: disableNetworkIsolation
type: boolean
default: false

variables:
- name: CDP_DEFINITION_BUILD_COUNT
Expand All @@ -25,6 +28,8 @@ variables:
value: $[format('{0:yyyyMMdd}-{1}', pipeline.startTime,variables['Build.SourceBranch'])]
- name: branchCounter
value: $[counter(variables['branchCounterKey'], 1)]
- name: disableNetworkIsolation
value: ${{ parameters.disableNetworkIsolation }}

resources:
pipelines:
Expand Down Expand Up @@ -53,6 +58,7 @@ extends:
WindowsHostVersion:
Version: 2022
Network: KS3
disableNetworkIsolation: ${{ variables.disableNetworkIsolation }}
globalSdl:
disableLegacyManifest: true
# disabled Armorty as we dont have any ARM templates to scan. It fails on some sample ARM templates.
Expand Down
6 changes: 6 additions & 0 deletions .pipelines/Release-Official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ parameters: # parameters are shown up in ADO UI in a build queue time
displayName: 'Publish artifacts'
type: boolean
default: true
- name: disableNetworkIsolation
type: boolean
default: false

variables:
- name: CDP_DEFINITION_BUILD_COUNT
Expand All @@ -21,6 +24,8 @@ variables:
value: 'onebranch.azurecr.io/windows/ltsc2022/vse2022:latest'
- name: LinuxContainerImage
value: mcr.microsoft.com/onebranch/azurelinux/build:3.0
- name: disableNetworkIsolation
value: ${{ parameters.disableNetworkIsolation }}

resources:
repositories:
Expand Down Expand Up @@ -50,6 +55,7 @@ extends:
WindowsHostVersion:
Version: 2022
Network: KS3
disableNetworkIsolation: ${{ variables.disableNetworkIsolation }}
globalSdl:
asyncSdl:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.413"
"version": "8.0.414"
}
}
4 changes: 2 additions & 2 deletions shell/AIShell.Integration/AIShell.psd1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@{
RootModule = 'AIShell.psm1'
NestedModules = @("AIShell.Integration.dll")
ModuleVersion = '1.0.7'
ModuleVersion = '1.0.8'
GUID = 'ECB8BEE0-59B9-4DAE-9D7B-A990B480279A'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Expand All @@ -14,5 +14,5 @@
VariablesToExport = '*'
AliasesToExport = @('aish', 'askai', 'fixit', 'airun')
HelpInfoURI = 'https://aka.ms/aishell-help'
PrivateData = @{ PSData = @{ Prerelease = 'preview7'; ProjectUri = 'https://github.com/PowerShell/AIShell' } }
PrivateData = @{ PSData = @{ Prerelease = 'preview8'; ProjectUri = 'https://github.com/PowerShell/AIShell' } }
}
2 changes: 1 addition & 1 deletion shell/shell.common.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>12.0</LangVersion>
<Version>1.0.0-preview.7</Version>
<Version>1.0.0-preview.8</Version>

<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down