From ffc59d2f52d03629b9d7b9313cdaccd239c0a0bd Mon Sep 17 00:00:00 2001 From: "dare-renovate[bot]" <129118232+dare-renovate[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 21:08:45 +0000 Subject: [PATCH] chore(deps): update dotnet monorepo to v8 --- src/BL/BL.csproj | 6 +++--- src/DARE-API/DARE-API.csproj | 16 ++++++++-------- src/DARE-API/Dockerfile | 4 ++-- src/DARE-FrontEnd/DARE-FrontEnd.csproj | 12 ++++++------ src/DARE-FrontEnd/Dockerfile | 4 ++-- src/Data-Egress-API/Data-Egress-API.csproj | 10 +++++----- src/Data-Egress-API/Dockerfile | 4 ++-- src/Data-Egress-UI/Data-Egress-UI.csproj | 14 +++++++------- src/Data-Egress-UI/Dockerfile | 4 ++-- src/TRE-API/Dockerfile | 4 ++-- src/TRE-API/TRE-API.csproj | 14 +++++++------- src/TRE-UI/Dockerfile | 4 ++-- src/TRE-UI/TRE-UI.csproj | 14 +++++++------- src/TREAgent/Dockerfile | 4 ++-- src/TREAgent/TREAgent.csproj | 14 +++++++------- src/Tre-Hasura/Dockerfile | 4 ++-- src/Tre-SQL-PG/Dockerfile | 4 ++-- src/Tre-SQL-Trino/Dockerfile-C-sharp | 4 ++-- 18 files changed, 70 insertions(+), 70 deletions(-) diff --git a/src/BL/BL.csproj b/src/BL/BL.csproj index 1538e3b1e..4396d9764 100644 --- a/src/BL/BL.csproj +++ b/src/BL/BL.csproj @@ -13,12 +13,12 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/DARE-API/DARE-API.csproj b/src/DARE-API/DARE-API.csproj index 197edea76..a052f0a20 100644 --- a/src/DARE-API/DARE-API.csproj +++ b/src/DARE-API/DARE-API.csproj @@ -15,18 +15,18 @@ - - - - - - - + + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/DARE-API/Dockerfile b/src/DARE-API/Dockerfile index e2028255c..a017c0dc4 100644 --- a/src/DARE-API/Dockerfile +++ b/src/DARE-API/Dockerfile @@ -1,6 +1,6 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base ENV ASPNETCORE_ENVIRONMENT=Development @@ -8,7 +8,7 @@ WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["DARE-API/DARE-API.csproj", "DARE-API/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/DARE-FrontEnd/DARE-FrontEnd.csproj b/src/DARE-FrontEnd/DARE-FrontEnd.csproj index fd4930f68..60d464a70 100644 --- a/src/DARE-FrontEnd/DARE-FrontEnd.csproj +++ b/src/DARE-FrontEnd/DARE-FrontEnd.csproj @@ -16,19 +16,19 @@ - - - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/DARE-FrontEnd/Dockerfile b/src/DARE-FrontEnd/Dockerfile index 18023c025..fb2d69fa2 100644 --- a/src/DARE-FrontEnd/Dockerfile +++ b/src/DARE-FrontEnd/Dockerfile @@ -1,11 +1,11 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["DARE-FrontEnd/DARE-FrontEnd.csproj", "DARE-FrontEnd/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/Data-Egress-API/Data-Egress-API.csproj b/src/Data-Egress-API/Data-Egress-API.csproj index 6406a536b..2a0c36ed5 100644 --- a/src/Data-Egress-API/Data-Egress-API.csproj +++ b/src/Data-Egress-API/Data-Egress-API.csproj @@ -13,14 +13,14 @@ - - - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/Data-Egress-API/Dockerfile b/src/Data-Egress-API/Dockerfile index d3a48d4b4..d501c004c 100644 --- a/src/Data-Egress-API/Dockerfile +++ b/src/Data-Egress-API/Dockerfile @@ -1,11 +1,11 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["Data-Egress-API/Data-Egress-API.csproj", "Data-Egress-API/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/Data-Egress-UI/Data-Egress-UI.csproj b/src/Data-Egress-UI/Data-Egress-UI.csproj index 402f0ea30..3fdc5fbd1 100644 --- a/src/Data-Egress-UI/Data-Egress-UI.csproj +++ b/src/Data-Egress-UI/Data-Egress-UI.csproj @@ -68,16 +68,16 @@ - - - - - - + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Data-Egress-UI/Dockerfile b/src/Data-Egress-UI/Dockerfile index 14a607a07..e6d80d8fb 100644 --- a/src/Data-Egress-UI/Dockerfile +++ b/src/Data-Egress-UI/Dockerfile @@ -1,11 +1,11 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["Data-Egress-UI/Data-Egress-UI.csproj", "Data-Egress-UI/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/TRE-API/Dockerfile b/src/TRE-API/Dockerfile index 2654162e3..afef04d0a 100644 --- a/src/TRE-API/Dockerfile +++ b/src/TRE-API/Dockerfile @@ -3,7 +3,7 @@ #Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed. #For more information, please see https://aka.ms/containercompat -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base ENV ASPNETCORE_ENVIRONMENT=Development @@ -11,7 +11,7 @@ WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["TRE-API/TRE-API.csproj", "TRE-API/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/TRE-API/TRE-API.csproj b/src/TRE-API/TRE-API.csproj index 4bf02af1f..bf7699f28 100644 --- a/src/TRE-API/TRE-API.csproj +++ b/src/TRE-API/TRE-API.csproj @@ -29,16 +29,16 @@ - - - - - + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/TRE-UI/Dockerfile b/src/TRE-UI/Dockerfile index 9b45ab9ee..02627509a 100644 --- a/src/TRE-UI/Dockerfile +++ b/src/TRE-UI/Dockerfile @@ -3,7 +3,7 @@ #Depending on the operating system of the host machines(s) that will build or run the containers, the image specified in the FROM statement may need to be changed. #For more information, please see https://aka.ms/containercompat -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base ENV ASPNETCORE_ENVIRONMENT=Development @@ -11,7 +11,7 @@ WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["TRE-UI/TRE-UI.csproj", "TRE-UI/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/TRE-UI/TRE-UI.csproj b/src/TRE-UI/TRE-UI.csproj index 7219e44f5..6a2a42b9e 100644 --- a/src/TRE-UI/TRE-UI.csproj +++ b/src/TRE-UI/TRE-UI.csproj @@ -24,16 +24,16 @@ - - - - - - + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/TREAgent/Dockerfile b/src/TREAgent/Dockerfile index 2a2e7137d..e8a11aefe 100644 --- a/src/TREAgent/Dockerfile +++ b/src/TREAgent/Dockerfile @@ -1,9 +1,9 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/runtime:7.0 AS base +FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base WORKDIR /app -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["TREAgent/TREAgent.csproj", "TREAgent/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/TREAgent/TREAgent.csproj b/src/TREAgent/TREAgent.csproj index e364035b6..3a0678a23 100644 --- a/src/TREAgent/TREAgent.csproj +++ b/src/TREAgent/TREAgent.csproj @@ -16,16 +16,16 @@ - - - - - + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/src/Tre-Hasura/Dockerfile b/src/Tre-Hasura/Dockerfile index 1f4841b49..12102b2a6 100644 --- a/src/Tre-Hasura/Dockerfile +++ b/src/Tre-Hasura/Dockerfile @@ -1,6 +1,6 @@ #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base ENV ASPNETCORE_ENVIRONMENT=Development @@ -9,7 +9,7 @@ WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["Tre-Hasura/Tre-Hasura.csproj", "Tre-Hasura/"] COPY ["BL/BL.csproj", "BL/"] diff --git a/src/Tre-SQL-PG/Dockerfile b/src/Tre-SQL-PG/Dockerfile index 6abdc4f31..3682e0afe 100644 --- a/src/Tre-SQL-PG/Dockerfile +++ b/src/Tre-SQL-PG/Dockerfile @@ -1,9 +1,9 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/runtime:7.0 AS base +FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base WORKDIR /app -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["Tre-SQL-PG/Tre-SQL-PG.csproj", "Tre-SQL-PG/"] RUN dotnet restore "Tre-SQL-PG/Tre-SQL-PG.csproj" diff --git a/src/Tre-SQL-Trino/Dockerfile-C-sharp b/src/Tre-SQL-Trino/Dockerfile-C-sharp index 9ac468fee..06c6bf374 100644 --- a/src/Tre-SQL-Trino/Dockerfile-C-sharp +++ b/src/Tre-SQL-Trino/Dockerfile-C-sharp @@ -1,9 +1,9 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/runtime:7.0 AS base +FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base WORKDIR /app -FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src COPY ["Tre-SQL-Trino/Tre-SQL-Trino.csproj", "Tre-SQL-Trino/"] RUN dotnet restore "Tre-SQL-Trino/Tre-SQL-Trino.csproj"