From 65f6822aa6346f9248404d11a77e2f8b99b284f1 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 25 Mar 2025 16:31:21 -0400 Subject: [PATCH] ci: removes dotnet build as it's redudant with the PR CI and often pushes us over the 1 hour time limit for the generation --- .azure-pipelines/generation-templates/dotnet-kiota.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.azure-pipelines/generation-templates/dotnet-kiota.yml b/.azure-pipelines/generation-templates/dotnet-kiota.yml index d504014aa..f2f682495 100644 --- a/.azure-pipelines/generation-templates/dotnet-kiota.yml +++ b/.azure-pipelines/generation-templates/dotnet-kiota.yml @@ -10,11 +10,3 @@ steps: OutputFullPath: $(kiotaDirectory)/output/* RepoModelsDir: $(Build.SourcesDirectory)/${{ parameters.repoName }}/src/Microsoft.Graph/Generated/ -- pwsh: 'dotnet restore' - displayName: Restore dependencies for ${{ parameters.repoName }} - workingDirectory: $(Build.SourcesDirectory)/${{ parameters.repoName }} - -- pwsh: 'dotnet build --configuration $(buildConfiguration) -f netstandard2.0 --no-restore' - displayName: Build dll for ${{ parameters.repoName }} - workingDirectory: $(Build.SourcesDirectory)/${{ parameters.repoName }}/src/Microsoft.Graph/ -