Skip to content

Commit 9ae22ee

Browse files
committed
fix(dfsf): sdf
1 parent ec6eb1e commit 9ae22ee

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/dev.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)