From 2ae45c7ae4e83f01d17c8ab24ea0698f88229ac7 Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Mon, 1 Sep 2025 18:33:11 -0300 Subject: [PATCH] Demo can now rely on plain build working Since we support automatic restore of file-app package references in a single run. --- .github/workflows/demos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/demos.yml b/.github/workflows/demos.yml index bc2f27a..2298ed8 100644 --- a/.github/workflows/demos.yml +++ b/.github/workflows/demos.yml @@ -41,5 +41,5 @@ jobs: pushd src/Demo jq --arg version "$version" '.["msbuild-sdks"].SmallSharp = $version' global.json > temp.json && mv temp.json global.json # build with each top-level file as the active one - gci *.cs | %{ dotnet build -t:StartupFile -p:ActiveCompile=$_.name && dotnet build -p:ActiveCompile=$_.name } + gci *.cs | %{ dotnet build -p:ActiveFile=$_.name } \ No newline at end of file