Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clone of: Blazor rewrite #384

Merged
merged 7 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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