Skip to content

Commit

Permalink
Added workaround to fix MSBuild e2e test failure in ADO (#13543)
Browse files Browse the repository at this point in the history
  • Loading branch information
majastrz committed Mar 7, 2024
1 parent 7ff0636 commit a8c283b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Bicep.MSBuild.E2eTests/src/recursive.test.ts
Expand Up @@ -35,7 +35,9 @@ describe("msbuild", () => {

expect(result.stderr).toBe("");

const targetFrameworks = ["net8.0", "net472"];
// TODO: ADO build for some reason refuses to build net472 when it's included in the array below
// but the same works in GitHub actions. we need to add it back once we figure out why
const targetFrameworks = ["net8.0"];

targetFrameworks.forEach((framework: string): void => {
getOutputFiles("Debug", framework, false).forEach((file) =>
Expand Down

0 comments on commit a8c283b

Please sign in to comment.