Skip to content
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x
dotnet-version: 9.x

# publishes Blazor project to the release-folder
- name: Publish .NET Core Project
run: dotnet publish BlazorZXingJSApp/Client/BlazorZXingJSApp.Client.csproj -f net8.0 -r linux-x64 -c Release -o release --nologo --self-contained
run: dotnet publish BlazorZXingJSApp/Client/BlazorZXingJSApp.Client.csproj -f net9.0 -r linux-x64 -c Release -o release --nologo --self-contained

# changes the base-tag in index.html from '/' to 'BlazorGitHubPagesDemo' to match GitHub Pages repository subdirectory
- name: Change base-tag in index.html from / to BlazorBarcodeScanner
Expand Down
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -352,3 +352,31 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

#### macOS ####
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
13 changes: 13 additions & 0 deletions .idea/.idea.BlazorZXingJSApp/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.idea.BlazorZXingJSApp/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/.idea.BlazorZXingJSApp/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/.idea.BlazorZXingJSApp/.idea/indexLayout.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.BlazorZXingJSApp/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions BlazorBarcodeScanner.ZXing.JS/BarcodeReader.razor
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
@using Microsoft.JSInterop

<section class="zxing-container">
<section class="zxing-container">
@if (!string.IsNullOrWhiteSpace(Title))
{
<h3 class="zxing-title">@Title</h3>
Expand Down
Loading