File tree Expand file tree Collapse file tree 15 files changed +24
-24
lines changed 
Tests/ApiTemplate.IntegrationTest 
Tests/GraphQLTemplate.IntegrationTest 
Tests/Boxed.Templates.FunctionalTest Expand file tree Collapse file tree 15 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 5252    <PackageReference  Include =" FluentValidation.AspNetCore"   Version =" 11.3.0"   />
5353    <PackageReference  Include =" Microsoft.ApplicationInsights.AspNetCore"   Version =" 2.21.0"   Condition =" '$(ApplicationInsights)' == 'true'"   />
5454    <PackageReference  Include =" Microsoft.AspNetCore.ApplicationInsights.HostingStartup"   Version =" 2.2.0"   Condition =" '$(ApplicationInsights)' == 'true'"   />
55-     <PackageReference  Include =" Microsoft.AspNetCore.AzureAppServicesIntegration"   Version =" 7 .0.11 "   Condition =" '$(Azure)' == 'true'"   />
56-     <PackageReference  Include =" Microsoft.AspNetCore.Mvc.NewtonsoftJson"   Version =" 7 .0.11 "   />
55+     <PackageReference  Include =" Microsoft.AspNetCore.AzureAppServicesIntegration"   Version =" 9 .0.3 "   Condition =" '$(Azure)' == 'true'"   />
56+     <PackageReference  Include =" Microsoft.AspNetCore.Mvc.NewtonsoftJson"   Version =" 9 .0.3 "   />
5757    <PackageReference  Include =" Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer"   Version =" 5.1.0"   Condition =" '$(Versioning)' == 'true'"   />
58-     <PackageReference  Include =" Microsoft.Extensions.Caching.StackExchangeRedis"   Version =" 7 .0.11 "   Condition =" '$(DistributedCacheRedis)' == 'true'"   />
58+     <PackageReference  Include =" Microsoft.Extensions.Caching.StackExchangeRedis"   Version =" 9 .0.2 "   Condition =" '$(DistributedCacheRedis)' == 'true'"   />
5959    <PackageReference  Include =" Microsoft.VisualStudio.Azure.Containers.Tools.Targets"   Version =" 1.19.5"   Condition =" '$(Docker)' == 'true'"   />
6060    <PackageReference  Include =" OpenTelemetry.Exporter.Console"   Version =" 1.6.0"   Condition =" '$(OpenTelemetry)' == 'true'"   />
6161    <PackageReference  Include =" OpenTelemetry.Extensions.Hosting"   Version =" 1.6.0"   Condition =" '$(OpenTelemetry)' == 'true'"   />
Original file line number Diff line number Diff line change 55
66#  Base image used by Visual Studio at development time
77#  (See https://docs.microsoft.com/en-us/visualstudio/containers/container-msbuild-properties)
8- FROM  mcr.microsoft.com/dotnet/aspnet:7 .0-alpine AS base
8+ FROM  mcr.microsoft.com/dotnet/aspnet:9 .0-alpine AS base
99#  Open Container Initiative (OCI) labels (See https://github.com/opencontainers/image-spec/blob/master/annotations.md).
1010LABEL  org.opencontainers.image.title="PROJECT-TITLE"  \
1111    org.opencontainers.image.description="PROJECT-DESCRIPTION"  \
@@ -34,7 +34,7 @@ EXPOSE 80 443
3434# endif
3535
3636#  SDK image used to build and publish the application
37- FROM  mcr.microsoft.com/dotnet/sdk:7 .0 AS sdk
37+ FROM  mcr.microsoft.com/dotnet/sdk:9 .0 AS sdk
3838#  To use the debug build configuration pass --build-arg Configuration=Debug
3939ARG  Configuration=Release
4040ENV  DOTNET_CLI_TELEMETRY_OPTOUT=true \
Original file line number Diff line number Diff line change 1919    </PackageReference >
2020    <PackageReference  Include =" Microsoft.AspNet.WebApi.Client"   Version =" 5.2.9"   />
2121    <PackageReference  Include =" Microsoft.NET.Test.Sdk"   Version =" 17.7.2"   />
22-     <PackageReference  Include =" Microsoft.AspNetCore.Mvc.Testing"   Version =" 7 .0.11 "   />
22+     <PackageReference  Include =" Microsoft.AspNetCore.Mvc.Testing"   Version =" 9 .0.3 "   />
2323    <PackageReference  Include =" Moq"   Version =" 4.20.69"   />
2424    <PackageReference  Include =" Serilog.Sinks.XUnit"   Version =" 3.0.5"   Condition =" '$(Serilog)' == 'true'"   />
2525    <PackageReference  Include =" xunit"   Version =" 2.5.1"   />
Original file line number Diff line number Diff line change 22  "sdk" : {
33    "allowPrerelease" : false ,
44    "rollForward" : " latestMajor"  ,
5-     "version" : " 7 .0.401 " 
5+     "version" : " 9 .0.202 " 
66  }
77}
Original file line number Diff line number Diff line change 55
66#  Base image used by Visual Studio at development time
77#  (See https://docs.microsoft.com/en-us/visualstudio/containers/container-msbuild-properties)
8- FROM  mcr.microsoft.com/dotnet/aspnet:7 .0-alpine AS base
8+ FROM  mcr.microsoft.com/dotnet/aspnet:9 .0-alpine AS base
99#  Open Container Initiative (OCI) labels (See https://github.com/opencontainers/image-spec/blob/master/annotations.md).
1010LABEL  org.opencontainers.image.title="PROJECT-TITLE"  \
1111    org.opencontainers.image.description="PROJECT-DESCRIPTION"  \
@@ -34,7 +34,7 @@ EXPOSE 80 443
3434# endif
3535
3636#  SDK image used to build and publish the application
37- FROM  mcr.microsoft.com/dotnet/sdk:7 .0 AS sdk
37+ FROM  mcr.microsoft.com/dotnet/sdk:9 .0 AS sdk
3838#  To use the debug build configuration pass --build-arg Configuration=Debug
3939ARG  Configuration=Release
4040ENV  DOTNET_CLI_TELEMETRY_OPTOUT=true \
Original file line number Diff line number Diff line change 6060    <PackageReference  Include =" HotChocolate.Types.Scalars"   Version =" 13.5.1"   />
6161    <PackageReference  Include =" Microsoft.ApplicationInsights.AspNetCore"   Version =" 2.21.0"   Condition =" '$(ApplicationInsights)' == 'true'"   />
6262    <PackageReference  Include =" Microsoft.AspNetCore.ApplicationInsights.HostingStartup"   Version =" 2.2.0"   Condition =" '$(ApplicationInsights)' == 'true'"   />
63-     <PackageReference  Include =" Microsoft.AspNetCore.AzureAppServicesIntegration"   Version =" 7 .0.11 "   Condition =" '$(Azure)' == 'true'"   />
64-     <PackageReference  Include =" Microsoft.Extensions.Caching.StackExchangeRedis"   Version =" 7 .0.11 "   Condition =" '$(DistributedCacheRedis)' == 'true'"   />
63+     <PackageReference  Include =" Microsoft.AspNetCore.AzureAppServicesIntegration"   Version =" 9 .0.3 "   Condition =" '$(Azure)' == 'true'"   />
64+     <PackageReference  Include =" Microsoft.Extensions.Caching.StackExchangeRedis"   Version =" 9 .0.2 "   Condition =" '$(DistributedCacheRedis)' == 'true'"   />
6565    <PackageReference  Include =" Microsoft.VisualStudio.Azure.Containers.Tools.Targets"   Version =" 1.19.5"   Condition =" '$(Docker)' == 'true'"   />
6666    <PackageReference  Include =" OpenTelemetry.Exporter.Console"   Version =" 1.6.0"   Condition =" '$(OpenTelemetry)' == 'true'"   />
6767    <PackageReference  Include =" OpenTelemetry.Extensions.Hosting"   Version =" 1.6.0"   Condition =" '$(OpenTelemetry)' == 'true'"   />
Original file line number Diff line number Diff line change 1919    </PackageReference >
2020    <PackageReference  Include =" Microsoft.AspNet.WebApi.Client"   Version =" 5.2.9"   />
2121    <PackageReference  Include =" Microsoft.NET.Test.Sdk"   Version =" 17.7.2"   />
22-     <PackageReference  Include =" Microsoft.AspNetCore.Mvc.Testing"   Version =" 7 .0.11 "   />
22+     <PackageReference  Include =" Microsoft.AspNetCore.Mvc.Testing"   Version =" 9 .0.3 "   />
2323    <PackageReference  Include =" Moq"   Version =" 4.20.69"   />
2424    <PackageReference  Include =" Serilog.Sinks.XUnit"   Version =" 3.0.5"   Condition =" '$(Serilog)' == 'true'"   />
2525    <PackageReference  Include =" xunit"   Version =" 2.5.1"   />
Original file line number Diff line number Diff line change 22  "sdk" : {
33    "allowPrerelease" : false ,
44    "rollForward" : " latestMajor"  ,
5-     "version" : " 7 .0.401 " 
5+     "version" : " 9 .0.202 " 
66  }
77}
Original file line number Diff line number Diff line change 22  "sdk" : {
33    "allowPrerelease" : false ,
44    "rollForward" : " latestMajor"  ,
5-     "version" : " 7 .0.401 " 
5+     "version" : " 9 .0.202 " 
66  }
77}
Original file line number Diff line number Diff line change 1414  </PropertyGroup >
1515
1616  <ItemGroup  Label =" Package References"  >
17-     <PackageReference  Include =" Microsoft.Extensions.Hosting"   Version =" 7 .0.1 "   />
18-     <PackageReference  Include =" Microsoft.Extensions.Logging.Console"   Version =" 7 .0.0 "   />
17+     <PackageReference  Include =" Microsoft.Extensions.Hosting"   Version =" 9 .0.3 "   />
18+     <PackageReference  Include =" Microsoft.Extensions.Logging.Console"   Version =" 9 .0.3 "   />
1919    <PackageReference  Include =" Microsoft.Orleans.BroadcastChannel"   Version =" 7.2.1"   />
2020    <PackageReference  Include =" Microsoft.Orleans.Client"   Version =" 7.2.1"   />
2121    <PackageReference  Include =" Microsoft.Orleans.Streaming"   Version =" 7.2.1"   />
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments