FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build WORKDIR /app # Copy csproj and restore dependencies COPY *.sln ./ COPY VRCAuthProxy/*.csproj ./VRCAuthProxy/ COPY Tests/*.csproj ./Tests/ RUN dotnet restore # Copy the remaining files COPY . ./ # Run tests ENTRYPOINT ["dotnet", "test", "--logger:console"]