Skip to content

Commit

Permalink
⬆ chore: upgrade Masa.Blazor to 1.3.0-beta.6 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem authored Dec 26, 2023
1 parent 528afe6 commit 86711fc
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 351 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,19 @@
<MCard Color="transparent" Flat Dark Class="footer-content__item footer-content__focus">
<MCardTitle>关注我们</MCardTitle>
<MCardText>
<MInteractiveTriggers2 Class="d-inline"
QueryName="@nameof(FollowUs)"
QueryValue="@FollowUs"
InteractiveValue="@(new[] { "wechat", "qq" })"
InteractiveComponentType="typeof(FollowUsBtn)"
InteractiveComponentParameters="@FollowUsParameters">
<MInteractiveTriggers Class="d-inline"
QueryName="@nameof(FollowUs)"
QueryValue="@FollowUs"
InteractiveValue="@(new[] { "wechat", "qq" })"
InteractiveComponentType="typeof(FollowUsBtn)"
InteractiveComponentParameters="@FollowUsParameters">
<MButton Outlined
Icon
Color="white"
Class="follow-us-icon mr-9">
<MIcon>@(context == "wechat" ? "mdi-wechat" : "mdi-qqchat")</MIcon>
</MButton>
</MInteractiveTriggers2>
</MInteractiveTriggers>

<MButton Class="follow-us-icon"
Outlined
Expand Down
4 changes: 2 additions & 2 deletions src/MASA.OfficialWebsite.WebApp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS publish
FROM registry.cn-hangzhou.aliyuncs.com/masa/dotnet_sdk:8.0.100-1 AS publish
WORKDIR /src
COPY . .
ENV CSPROJ="src\MASA.OfficialWebsite.WebApp/MASA.OfficialWebsite.WebApp.csproj"

RUN dotnet restore $CSPROJ && dotnet publish $CSPROJ -c Release -o /app/publish

FROM mcr.microsoft.com/dotnet/aspnet:8.0
FROM registry.cn-hangzhou.aliyuncs.com/masa/dotnet_aspnet:8.0-1
WORKDIR /app
COPY --from=publish /app/publish .
ENV ASPNETCORE_URLS=http://0.0.0.0:80
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
</PropertyGroup>

<ItemGroup>
<Content Include="..\..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
<Content Include="..\..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Masa.Blazor" Version="1.3.0-beta.5" />
<PackageReference Include="Masa.Blazor" Version="1.3.0-beta.6"/>
</ItemGroup>

</Project>
Loading

0 comments on commit 86711fc

Please sign in to comment.