Skip to content

Commit 3d10693

Browse files
committed
Moved from master to main branch and fixed copy right issues
0 parents  commit 3d10693

File tree

1,036 files changed

+168972
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,036 files changed

+168972
-0
lines changed

.gitattributes

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain
64+
65+
# blazor dlls
66+
*.dll binary

.github/FUNDING.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: [gvreddy04] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: BlazorBootstrap
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/ISSUE_TEMPLATE/bug_report.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
1. Go to '...'
15+
2. Click on '....'
16+
3. Scroll down to '....'
17+
4. See error
18+
19+
**Expected behavior**
20+
A clear and concise description of what you expected to happen.
21+
22+
**Screenshots**
23+
If applicable, add screenshots to help explain your problem.
24+
25+
**Versions (please complete the following information):**
26+
- .NET Version: [e.g. .NET 6, .NET 7, .NET 8]
27+
- BlazorBootstrap: [e.g. 2.0.0, 2.1.0, 2.2.0]
28+
- Blazor WebAssembly / Server: [e.g. WebAssembly, Server]
29+
- Blazor Interactive Render Mode: [e.g. Auto, Server, WebAssembly, None]
30+
- Blazor Interactivity Location: [e.g. Global, Per page/component]
31+
32+
**Sample code**
33+
Sample code to reproduce the issue.
34+
35+
**GitHub repo**
36+
GitHub repo with minimal code to reproduce the issue.
37+
38+
**Desktop (please complete the following information):**
39+
- OS: [e.g. iOS]
40+
- Browser [e.g. chrome, safari]
41+
- Version [e.g. 22]
42+
43+
**Smartphone (please complete the following information):**
44+
- Device: [e.g. iPhone6]
45+
- OS: [e.g. iOS8.1]
46+
- Browser [e.g. stock browser, safari]
47+
- Version [e.g. 22]
48+
49+
**Additional context**
50+
Add any other context about the problem here.

.github/workflows/publish-docs.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Publish Documentation
2+
on:
3+
# Trigger the workflow on push,
4+
# but only for the main branch
5+
push:
6+
branches:
7+
- main
8+
workflow_dispatch:
9+
inputs:
10+
prod_release:
11+
description: 'Do you want to release to production?'
12+
required: true
13+
default: false
14+
type: boolean
15+
jobs:
16+
Build-Deploy-Documentation:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Check 🛎️
20+
uses: actions/checkout@v2
21+
22+
- name: Install Node 16
23+
uses: actions/setup-node@v2
24+
with:
25+
node-version: '16'
26+
- name: Build & Test Documentation
27+
run: |
28+
cd docs
29+
if [ -e package-lock.json ]; then
30+
npm ci
31+
else
32+
npm i
33+
fi
34+
npm run build
35+
# Adding publshing content
36+
- name: Publish Content
37+
if: ${{ inputs.prod_release }}
38+
env:
39+
GIT_USER: ${{ secrets.GIT_USER }}
40+
GIT_PASS: ${{ secrets.GIT_USER_TOKEN }}
41+
run: |
42+
cd docs
43+
git config --global user.name "${{ secrets.GIT_USER }}"
44+
git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
45+
if [ -e package-lock.json ]; then
46+
npm ci
47+
else
48+
npm i
49+
fi
50+
echo 'docs.blazorbootstrap.com' > CNAME
51+
cat CNAME
52+
npm run deploy

.github/workflows/sonar.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: SonarCloud
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
types: [opened, synchronize, reopened]
8+
jobs:
9+
Analysis:
10+
name: Static Code Analysis
11+
runs-on: windows-latest
12+
steps:
13+
- name: Set up JDK 17
14+
uses: actions/setup-java@v4
15+
with:
16+
distribution: 'microsoft' # See 'Supported distributions' for available options
17+
java-version: '17'
18+
- uses: actions/checkout@v2
19+
with:
20+
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
21+
- name: Cache SonarCloud packages
22+
uses: actions/cache@v1
23+
with:
24+
path: ~\sonar\cache
25+
key: ${{ runner.os }}-sonar
26+
restore-keys: ${{ runner.os }}-sonar
27+
- name: Cache SonarCloud scanner
28+
id: cache-sonar-scanner
29+
uses: actions/cache@v1
30+
with:
31+
path: .\.sonar\scanner
32+
key: ${{ runner.os }}-sonar-scanner
33+
restore-keys: ${{ runner.os }}-sonar-scanner
34+
- name: Install SonarCloud scanner
35+
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
36+
shell: powershell
37+
run: |
38+
New-Item -Path .\.sonar\scanner -ItemType Directory
39+
dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner
40+
- name: Build and analyze
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
43+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
44+
shell: powershell
45+
run: |
46+
.\.sonar\scanner\dotnet-sonarscanner begin /k:"vikramlearning.blazorbootstrap" /o:"vikramlearning" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
47+
dotnet build
48+
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"

.github/workflows/static-web-app.yml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: Static WebApp (Blazor WebAssembly)
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
types: [opened, synchronize, reopened, closed]
9+
branches:
10+
- main
11+
workflow_dispatch:
12+
inputs:
13+
prod_release:
14+
description: 'Do you want to release to production?'
15+
required: true
16+
default: false
17+
type: boolean
18+
19+
jobs:
20+
build_and_deploy_job:
21+
if: ${{ inputs.prod_release }} || (github.event_name == 'pull_request' && github.event.action != 'closed')
22+
runs-on: ubuntu-latest
23+
name: Build and Deploy Job
24+
steps:
25+
- uses: actions/checkout@v2
26+
with:
27+
submodules: true
28+
29+
- name: Setup .NET Core SDK
30+
uses: actions/setup-dotnet@v1
31+
with:
32+
dotnet-version: '8.0.x'
33+
34+
- name: Build And Deploy
35+
id: builddeploy
36+
uses: Azure/static-web-apps-deploy@v1
37+
with:
38+
dotnet-version: '8.0.x'
39+
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_GRAY_WAVE_0E4848710 }}
40+
skip_deploy_on_missing_secrets: true
41+
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
42+
action: "upload"
43+
###### Repository/Build Configurations - These values can be configured to match your app requirements. ######
44+
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
45+
app_location: "BlazorBootstrap.Demo.WebAssembly" # App source code path
46+
#api_location: "Api" # Api source code path - optional
47+
#output_location: "build/wwwroot" # Built app content directory - optional
48+
output_location: "wwwroot" # Built app content directory - optional
49+
app_build_command: 'dotnet publish --configuration Release --output build'
50+
###### End of Repository/Build Configurations ######
51+
52+
close_pull_request_job:
53+
if: github.event_name == 'pull_request' && github.event.action == 'closed'
54+
runs-on: ubuntu-latest
55+
name: Close Pull Request Job
56+
steps:
57+
- name: Close Pull Request
58+
id: closepullrequest
59+
uses: Azure/static-web-apps-deploy@v1
60+
with:
61+
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_GRAY_WAVE_0E4848710 }}
62+
skip_deploy_on_missing_secrets: true
63+
action: "close"

.github/workflows/web-app.yml

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: WebApp (Blazor Server)
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
inputs:
9+
prod_release:
10+
description: 'Do you want to release to production?'
11+
required: true
12+
default: false
13+
type: boolean
14+
15+
jobs:
16+
build:
17+
runs-on: windows-latest
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
22+
- name: Set up .NET 8.0.x
23+
uses: actions/setup-dotnet@v1
24+
with:
25+
dotnet-version: '8.0.x'
26+
include-prerelease: false
27+
28+
- name: Build
29+
run: dotnet build ./BlazorBootstrap.Demo.Server/BlazorBootstrap.Demo.Server.csproj --configuration Release
30+
31+
- name: Publish
32+
run: dotnet publish ./BlazorBootstrap.Demo.Server/BlazorBootstrap.Demo.Server.csproj -c Release -o ${{env.DOTNET_ROOT}}/myapp
33+
34+
- name: Upload artifact for deployment job
35+
uses: actions/upload-artifact@v2
36+
with:
37+
name: .net-app
38+
path: ${{env.DOTNET_ROOT}}/myapp
39+
40+
deploy:
41+
runs-on: windows-latest
42+
if: ${{ inputs.prod_release }}
43+
needs: build
44+
environment:
45+
name: 'Production'
46+
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
47+
48+
steps:
49+
- name: Download artifact from build job
50+
uses: actions/download-artifact@v2
51+
with:
52+
name: .net-app
53+
54+
- name: Deploy to Azure Web App
55+
id: deploy-to-webapp
56+
uses: azure/webapps-deploy@v2
57+
with:
58+
app-name: 'blazorbootstrap'
59+
slot-name: 'Production'
60+
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_1F484B42E8E9491C82F21EED2A6E2C15 }}
61+
package: .

0 commit comments

Comments
 (0)