Skip to content

Commit

Permalink
API-1661 AzUrlShortener update to .NET 8.0 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
davecw2 authored Aug 29, 2024
1 parent b6ca2fc commit 25fceca
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
AZURE_FUNCTIONAPP_NAME: "Dev-STORIS-URL-Redirect"
AZURE_FUNCTIONAPP_PACKAGE_PATH: "."
DOTNET_VERSION: "6.0.x"
DOTNET_VERSION: "8.0.x"

jobs:
build-and-deploy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
AZURE_FUNCTIONAPP_NAME: "Prod-STORIS-URL-Redirect"
AZURE_FUNCTIONAPP_PACKAGE_PATH: "."
DOTNET_VERSION: "6.0.x"
DOTNET_VERSION: "8.0.x"

jobs:
build-and-deploy:
Expand Down
12 changes: 6 additions & 6 deletions shortenerTools.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="cronos" Version="0.7.1" />
<PackageReference Include="cronos" Version="0.8.4" />
<PackageReference Include="Microsoft.Azure.Cosmos.Table" Version="1.0.8" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.0.12" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.3.0" OutputItemType="Analyzer" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.6.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.2" OutputItemType="Analyzer" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.21.0" />
<PackageReference Include="NLog" Version="5.1.2" />
<PackageReference Include="NLog.Target.Datadog" Version="1.0.11" />
</ItemGroup>
Expand Down

0 comments on commit 25fceca

Please sign in to comment.