Skip to content

Commit

Permalink
Blazor rewrite (#384)
Browse files Browse the repository at this point in the history
* Blazor rewrite

* update README.md

* fix module metadata mismatch after using filters

* apply metadata fix to card body

* restore KInspector.sln original location

Maintains consistency with other Kentico organization repositories.

Updated to account for the new project files subdirectory.

* restore LICENSE.md, BestPractices.md, CODE_OF_CONDUCT.md, CONTRIBUTING.md

* move documentation files to docs directory

---------

Co-authored-by: kentico-ericd <[email protected]>
  • Loading branch information
JosefDvorak and kentico-ericd authored Jan 14, 2025
1 parent 20033d6 commit 456133b
Show file tree
Hide file tree
Showing 559 changed files with 13,309 additions and 28,080 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
root = true
root = true

[*.cs]

Expand Down
63 changes: 0 additions & 63 deletions .gitattributes

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/dotnet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build Blazor app
run: |
cd ./src/KInspector.Blazor
npm i
npm run css
dotnet build
- name: Test
run: |
cd ./test
dotnet test --verbosity normal
- name: Publish Blazor app
run: |
cd ./src/KInspector.Blazor
dotnet publish KInspector.Blazor.csproj /p:PublishDir=..\..\publish -c Release -r win-x64 --self-contained true
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: KInspector
path: .\publish
50 changes: 0 additions & 50 deletions .github/workflows/dotnet.yml

This file was deleted.

Loading

0 comments on commit 456133b

Please sign in to comment.