Skip to content

Commit 265d8a2

Browse files
committed
test changes
1 parent 8759b00 commit 265d8a2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.azdo/pipelines/steps/package-signing.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ steps:
1111
- task: UseDotNet@2
1212
displayName: 'Use .NET Core sdk (for code signing)'
1313
inputs:
14-
packageType: sdk
15-
version: 3.1.x
14+
useGlobalJson: true
1615

1716
# Expand packages as zip
1817
- task: PowerShell@2

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.114",
3+
"version": "8.0.12",
44
"rollForward": "latestFeature"
55
}
66
}

samples/Quickstart/infra/azureFunction.bicep

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,11 @@ resource functionApp 'Microsoft.Web/sites@2021-03-01' = {
5252
reserved: true
5353
clientAffinityEnabled: false
5454
siteConfig: {
55-
netFrameworkVersion: 'v8.0'
55+
//netFrameworkVersion: 'v8.0'
5656
//linuxFxVersion: 'dotnet-isolated|8.0'
57-
//use32BitWorkerProcess: false
57+
windowsFxVersion: 'dotnetisolated|8.0'
58+
netFrameworkVersion: 'v8.0'
59+
use32BitWorkerProcess: false
5860
alwaysOn: true
5961
}
6062
}

src/Microsoft.AzureHealth.DataServices.Core/Pipelines/AzureFunctionExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Net;
66
using System.Net.Http;
77
using System.Net.Http.Headers;
8-
using System.Net.Mime;
98
using System.Security.Claims;
109
using System.Threading.Tasks;
1110
using Microsoft.Azure.Functions.Worker.Http;

0 commit comments

Comments
 (0)