Skip to content

Commit 72f5a36

Browse files
authored
Various cleanup (#558)
* Various cleanup * dotnet format --------- Co-authored-by: joegoldman2 <[email protected]>
1 parent 455f428 commit 72f5a36

File tree

96 files changed

+296
-296
lines changed

Some content is hidden

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

96 files changed

+296
-296
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ env:
2626
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
2727
DOTNET_NOLOGO: true
2828
DOTNET_CLI_TELEMETRY_OPTOUT: true
29-
29+
3030
jobs:
3131
# Determine version
3232
version:
@@ -43,7 +43,7 @@ jobs:
4343
echo "Invalid version: ${{ github.event.release.tag_name }}"
4444
exit 1
4545
fi
46-
46+
4747
echo "version=${{ github.event.release.tag_name }}" >> $GITHUB_OUTPUT
4848
4949
- name: Determine prerelease version
@@ -94,7 +94,7 @@ jobs:
9494
- name: Install .NET
9595
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
9696
with:
97-
dotnet-version: |
97+
dotnet-version: |
9898
6.0.x
9999
8.0.x
100100
@@ -133,7 +133,7 @@ jobs:
133133
- name: Install .NET
134134
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
135135
with:
136-
dotnet-version: |
136+
dotnet-version: |
137137
6.0.x
138138
8.0.x
139139
@@ -147,7 +147,7 @@ jobs:
147147
--configuration Release
148148
-p:ContinuousIntegrationBuild=true
149149
-p:Version=${{ needs.version.outputs.version }}
150-
150+
151151
- name: Run pack
152152
run: >
153153
dotnet pack
@@ -186,7 +186,7 @@ jobs:
186186
- name: Install .NET
187187
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a # v3.0.3
188188
with:
189-
dotnet-version: |
189+
dotnet-version: |
190190
6.0.x
191191
8.0.x
192192

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
# Drafts your next Release notes as Pull Requests are merged into "master"
1414
- uses: release-drafter/release-drafter@v5
1515
env:
16-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

BlazorWasmDemo/Client/wwwroot/css/open-iconic/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
## What's in Open Iconic?
99

1010
* 223 icons designed to be legible down to 8 pixels
11-
* Super-light SVG files - 61.8 for the entire set
11+
* Super-light SVG files - 61.8 for the entire set
1212
* SVG sprite&mdash;the modern replacement for icon fonts
1313
* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats
1414
* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats
@@ -33,7 +33,7 @@ We like SVGs and we think they're the way to display icons on the web. Since Ope
3333

3434
Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack.
3535

36-
Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `<svg>` *tag and a unique class name for each different icon in the* `<use>` *tag.*
36+
Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `<svg>` *tag and a unique class name for each different icon in the* `<use>` *tag.*
3737

3838
```
3939
<svg class="icon">

BlazorWasmDemo/Server/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
"sslPort": 44312
3535
}
3636
}
37-
}
37+
}

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FIDO2 .NET library (WebAuthn)
22

3-
[Readme](https://github.com/passwordless-lib/fido2-net-lib/blob/master/README.md)
3+
[Readme](https://github.com/passwordless-lib/fido2-net-lib/blob/master/README.md)
44

55
2020-03-24 1.1.0
66
- Refactored FIDO2 model
@@ -11,4 +11,4 @@
1111
- Conformance tool recently changed the way EdDSA signatures are verified. This fix passes the test in v1.1.6.
1212

1313
2019-07-31 1.0.1
14-
- initial release FIDO2 .NET library (WebAuthn)
14+
- initial release FIDO2 .NET library (WebAuthn)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ OS's use different variable names to represent similar settings. Code should con
5151
For example, when looking for the user's home directory, on Windows the variable is `USERPROFILE` but on most Linux systems it is `HOME`.
5252

5353
```cs
54-
var homeDir = Environment.GetEnvironmentVariable("USERPROFILE")
54+
var homeDir = Environment.GetEnvironmentVariable("USERPROFILE")
5555
?? Environment.GetEnvironmentVariable("HOME");
5656
```
5757

Demo/.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
]
1010
}
1111
}
12-
}
12+
}

Demo/Demo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>

Demo/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
"applicationUrl": "http://localhost:4729/;https://localhost:44329/"
2424
}
2525
}
26-
}
26+
}

Demo/appsettings.Development.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"Logging": {
33
"IncludeScopes": false,
44
"LogLevel": {

0 commit comments

Comments
 (0)