Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added workaround to fix MSBuild e2e test failure in ADO #13543

Merged
merged 1 commit into from Mar 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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