-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from codemonkey85/revert-to-wasm
Revert back to WASM
- Loading branch information
Showing
27 changed files
with
279 additions
and
214 deletions.
There are no files selected for viewing
57 changes: 0 additions & 57 deletions
57
.github/workflows/dotnet-8-release-new-template_pkmds-web.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Deploy to GitHub Pages | ||
|
||
# Run workflow on every push to the main branch | ||
on: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
deploy-to-github-pages: | ||
# use ubuntu-latest image to run steps on | ||
runs-on: ubuntu-latest | ||
steps: | ||
# uses GitHub's checkout action to checkout code form the main branch | ||
- uses: actions/[email protected] | ||
|
||
# sets up .NET SDK | ||
- name: Setup .NET Core SDK | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: "8.x" | ||
|
||
- name: Install WASM workload | ||
run: dotnet workload install wasm-tools | ||
|
||
- name: Test | ||
run: dotnet test | ||
|
||
# publishes Blazor project to the release-folder | ||
- name: Publish .NET Core Project | ||
run: dotnet publish PKMDS-Blazor/Wasm/PKMDS-Blazor.Wasm.csproj -c Release -o release --nologo | ||
|
||
# changes the base-tag in index.html from '/' to 'PKMDS-Blazor' to match GitHub Pages repository subdirectory | ||
- name: Change base-tag in index.html from / to PKMDS-Blazor | ||
run: sed -i 's/<base href="\/" \/>/<base href="\/PKMDS-Blazor\/" \/>/g' release/wwwroot/index.html | ||
|
||
# copy index.html to 404.html to serve the same file when a file is not found | ||
- name: copy index.html to 404.html | ||
run: cp release/wwwroot/index.html release/wwwroot/404.html | ||
|
||
# add .nojekyll file to tell GitHub pages to not treat this as a Jekyll project. (Allow files and folders starting with an underscore) | ||
- name: Add .nojekyll file | ||
run: touch release/wwwroot/.nojekyll | ||
|
||
- name: Commit wwwroot to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: gh-pages | ||
folder: release/wwwroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Router AppAssembly="@typeof(App).Assembly"> | ||
<Found Context="routeData"> | ||
<RouteView RouteData="@routeData" | ||
DefaultLayout="@typeof(MainLayout)" /> | ||
<FocusOnNavigate RouteData="@routeData" | ||
Selector="h1" /> | ||
</Found> | ||
<NotFound> | ||
<PageTitle>Not found</PageTitle> | ||
<LayoutView Layout="@typeof(MainLayout)"> | ||
<p role="alert"> | ||
Sorry, there's nothing at this address. | ||
</p> | ||
</LayoutView> | ||
</NotFound> | ||
</Router> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...Web/Components/Layout/MainLayout.razor.cs → Pkmds.Web/Layout/MainLayout.razor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Pkmds.Web.Components.Layout; | ||
namespace Pkmds.Web.Layout; | ||
|
||
public partial class MainLayout | ||
{ | ||
|
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
Pkmds.Web/Components/Pages/Home.razor.cs → Pkmds.Web/Pages/Home.razor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace Pkmds.Web.Components.Pages; | ||
namespace Pkmds.Web.Pages; | ||
|
||
public partial class Home : IDisposable | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" /> | ||
<PackageReference Include="MudBlazor" Version="6.11.2" /> | ||
<PackageReference Include="PKHeX.Core" Version="23.10.12" /> | ||
<PackageReference Include="KristofferStrube.Blazor.FileSystemAccess" Version="3.2.2" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Components\EditForms\Tabs\" /> | ||
<Folder Include="Extensions\" /> | ||
<Folder Include="Services\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.