File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ RUN az account clear \
5151# Install .NET
5252ENV NUGET_PACKAGES="/azp/nuget/NUGET_PACKAGES"
5353ENV NUGET_HTTP_CACHE_PATH="/azp/nuget/NUGET_HTTP_CACHE_PATH"
54- ENV NUGET_PLUGINS_CACHE_PATH = "/azp/nuget/NUGET_PLUGINS_CACHE_PATH"
55- ENV NUGET_SCRATCH = "/azp/nuget/NUGET_SCRATCH"
54+ ENV NUGET_PLUGINS_CACHE_PATH= "/azp/nuget/NUGET_PLUGINS_CACHE_PATH"
55+ ENV NUGET_SCRATCH= "/azp/nuget/NUGET_SCRATCH"
5656ENV PATH="/azp/tools/dotnet:${PATH}"
5757ENV DOTNET_ROOT="/azp/tools/dotnet"
5858ENV DOTNET_HOST_PATH="/azp/tools/dotnet/dotnet"
@@ -65,7 +65,8 @@ RUN mkdir /azp/nuget \
6565 && curl -Lsfo "dotnet-install.sh" https://dot.net/v1/dotnet-install.sh \
6666 && chmod +x "dotnet-install.sh" \
6767 && ./dotnet-install.sh --channel 8.0 --install-dir /azp/tools/dotnet \
68- && ./dotnet-install.sh --channel 9.0 --install-dir /azp/tools/dotnet
68+ && ./dotnet-install.sh --channel 9.0 --install-dir /azp/tools/dotnet \
69+ && ./dotnet-install.sh --channel 10.0 --install-dir /azp/tools/dotnet
6970
7071# Install DevOps Agent
7172RUN export AZP_TOKEN=${BUILD_AZP_TOKEN} \
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ Set-StrictMode -Version 7.3
44
55[string []] $netversions = @ (
66 ' 8.0' ,
7- ' 9.0'
7+ ' 9.0' ,
8+ ' 10.0'
89 )
910
1011[string []] $templates = @ (
You can’t perform that action at this time.
0 commit comments