Skip to content

Commit c683a07

Browse files
committed
deployment fix? + disable NuGet dependency
1 parent 774c247 commit c683a07

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Restore dependencies
2525
run: dotnet restore
2626
- name: Build
27-
run: dotnet build --no-restore
27+
run: dotnet build --no-restore --configuration ${{ env.BUILD_CONFIGURATION }}
2828
- name: Test
2929
run: dotnet test --no-build --verbosity normal
3030
- name: Publish

StoicDreams.SampleWebsite/StoicDreams.SampleWebsite.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
<BlazorWebAssemblyLazyLoad Include="Microsoft.CodeAnalysis.resources.dll" />
2121
<BlazorWebAssemblyLazyLoad Include="Microsoft.CodeAnalysis.Razor.dll" />
2222
</ItemGroup>
23-
23+
24+
<ItemGroup>
25+
<ProjectReference Include="..\StoicDreams.BlazorUI\StoicDreams.BlazorUI.csproj" />
26+
</ItemGroup>
27+
2428
<Choose>
2529
<When Condition="'$(Configuration)' == 'Debug'">
2630
<ItemGroup>
27-
<ProjectReference Include="..\StoicDreams.BlazorUI\StoicDreams.BlazorUI.csproj" />
2831
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.9" PrivateAssets="all" />
2932
</ItemGroup>
3033
</When>
3134
<Otherwise>
32-
<ItemGroup>
33-
<PackageReference Include="StoicDreams.BlazorUI" Version="1.13.0" />
34-
</ItemGroup>
3535
</Otherwise>
3636
</Choose>
3737

0 commit comments

Comments
 (0)