Skip to content

Commit 25fceca

Browse files
authored
API-1661 AzUrlShortener update to .NET 8.0 (#8)
1 parent b6ca2fc commit 25fceca

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/deploy-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
AZURE_FUNCTIONAPP_NAME: "Dev-STORIS-URL-Redirect"
1111
AZURE_FUNCTIONAPP_PACKAGE_PATH: "."
12-
DOTNET_VERSION: "6.0.x"
12+
DOTNET_VERSION: "8.0.x"
1313

1414
jobs:
1515
build-and-deploy:

.github/workflows/deploy-prod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
AZURE_FUNCTIONAPP_NAME: "Prod-STORIS-URL-Redirect"
1010
AZURE_FUNCTIONAPP_PACKAGE_PATH: "."
11-
DOTNET_VERSION: "6.0.x"
11+
DOTNET_VERSION: "8.0.x"
1212

1313
jobs:
1414
build-and-deploy:

shortenerTools.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
55
<AssemblyVersion>1.0.0.0</AssemblyVersion>
66
<OutputType>Exe</OutputType>
77
</PropertyGroup>
88
<ItemGroup>
9-
<PackageReference Include="cronos" Version="0.7.1" />
9+
<PackageReference Include="cronos" Version="0.8.4" />
1010
<PackageReference Include="Microsoft.Azure.Cosmos.Table" Version="1.0.8" />
11-
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.0.12" />
12-
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.3.0" OutputItemType="Analyzer" />
13-
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.6.0" />
11+
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
12+
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.2" OutputItemType="Analyzer" />
13+
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.21.0" />
1414
<PackageReference Include="NLog" Version="5.1.2" />
1515
<PackageReference Include="NLog.Target.Datadog" Version="1.0.11" />
1616
</ItemGroup>

0 commit comments

Comments
 (0)