Skip to content

Commit 407ef8f

Browse files
committed
Fix SLN file removing extra line. Update build workflow and improve Help page content
- Added a step to clean up previous builds in the GitHub Actions workflow. - Revised Help page content to clarify tool functionality and provide links to GitHub issues and discussions. - Simplified Home page welcome message for clarity.
1 parent 50e0d5f commit 407ef8f

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
with:
2424
dotnet-version: '9.0.x' # Adjust the version as needed
2525

26+
- name: Clean up previous builds
27+
run: dotnet clean src/AzUrlShortener.sln
28+
2629
- name: Install .NET Aspire workload
2730
run: dotnet workload update && dotnet workload install aspire
2831

src/AzUrlShortener.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
Microsoft Visual Studio Solution File, Format Version 12.00
43
# Visual Studio Version 17
54
VisualStudioVersion = 17.0.31903.59

src/TinyBlazorAdmin/Components/Pages/Help.razor

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<h1>Help</h1>
66
<FluentCard Width="50%" Height="50%">
77
<ul>
8-
<li>You need to be authenticated to have access. By default Active Directory is the one used (any outlook.com). Others (GitHub, Twitter, etc.) are also available to used.</li>
9-
<li>You need to be part or the role <b>admin</b> (all lowercase) to have access. This is manage from the Azure Portal, in the <i>Role management</i> blade of your Azure Static Web App. Refer to the <a href="https://github.com/FBoucher/TinyBlazorAdmin">documentation</a> for more details.</li>
8+
<li>This is an admin tool, it can create, modify and delete any URL in your data store. Make sure you secure it properly.</li>
9+
<li>Refer to the <a href="https://github.com/microsoft/AzUrlShortener/blob/main/doc/faq.md">documentation on GitHub</a> for more details.</li>
10+
<li>Having an issue or an idea for a new feature? Please check the GitHub [issues](https://github.com/microsoft/AzUrlShortener/issues) or [discussions](https://github.com/microsoft/AzUrlShortener/discussions).</li>
1011
</ul>
1112
</FluentCard>

src/TinyBlazorAdmin/Components/Pages/Home.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<h1>Tiny Blazor Admin</h1>
66
<div>
77
<p>
8-
Welcome to the <b><a href="https://github.com/FBoucher/TinyBlazorAdmin" target="_blank">Tiny Blazor Admin</a></b>
8+
Welcome to the <b>Tiny Blazor Admin</b>
99
</p>
1010

1111
<div>

0 commit comments

Comments
 (0)