File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,8 @@ jobs:
246246 run : |
247247 dotnet build Package.BlazorComponentLibrary -c Release \
248248 /p:BCLVersion=$BCL_VERSION \
249- /p:NupkgOutputPath=$NUPKG_OUTPUT_PATH
249+ /p:NupkgOutputPath=$NUPKG_OUTPUT_PATH \
250+ /p:UseBCLProjectReference=$USE_BCL_PROJECT_REFERENCE
250251
251252 # qqqq this works
252253 - name : Debug VersionInfo.cs
@@ -326,11 +327,16 @@ jobs:
326327 run : |
327328 echo "Restoring NuGet packages..."
328329 dotnet restore GitPageBlazorWASM.sln
330+
331+
329332
330333 - name : Build Solution
331334 run : |
332335 echo "Building the solution..."
333- dotnet build GitPageBlazorWASM.sln -c Release
336+ dotnet build GitPageBlazorWASM.sln -c Release \
337+ /p:BCLVersion=$BCL_VERSION \
338+ /p:NupkgOutputPath=$NUPKG_OUTPUT_PATH \
339+ /p:UseBCLProjectReference=$USE_BCL_PROJECT_REFERENCE
334340
335341 - name : Debug Package References
336342 run : |
@@ -351,6 +357,7 @@ jobs:
351357 echo "BCLVersion: $BCL_VERSION"
352358 echo "UseBCLProjectReference: $USE_BCL_PROJECT_REFERENCE"
353359
360+ # qqqq not showing the value
354361 - name : Display Directory.Packages.props
355362 run : cat Directory.Packages.props
356363
You can’t perform that action at this time.
0 commit comments