-
Notifications
You must be signed in to change notification settings - Fork 4
Upgrade to .NET 10 #144
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
base: main
Are you sure you want to change the base?
Upgrade to .NET 10 #144
Changes from all commits
7ec2bdb
f747a7c
cc33bb0
f616282
2a53a4b
4e98432
ef64498
6a7b5f9
7b930ca
483ffc1
26d688b
bab98d7
d54fb42
296f422
cfbc9a2
ca3c6ab
773a9e8
2ccfacc
20fa172
c24ad3e
2f7f16b
7e928ab
2046931
44fdc3e
3dabb59
735862b
a8e2380
ab4aff8
d3e1c49
9c2e942
01d6f4a
84db645
52a2180
38a2f03
2a4e4a9
5e25cf0
d1d22f8
3db5463
37a6489
870c322
35f9612
aa1fd2b
335486f
6a18c22
a1f76a0
6a9831e
bb5d75d
8437864
ed8da81
cb2bd6c
bfe7d81
4d285e0
7976cbd
223b67f
13b8722
8c4a769
75f8518
302a448
db304c7
6392bb9
e738948
64ce092
03a83da
10198d5
aad16b4
d481bf8
d547685
302d9dc
e2b160f
515f302
70f1a2a
9b2d04c
661ccfc
0965136
721007a
ef3d3a3
ff0e0f0
9a3b89c
4f778b7
a3ec6fd
9fa5e6d
4d01f00
136846e
405e4e9
2afb447
06fc437
d3382d1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| # Auto detect text files and perform LF normalization | ||
| * text=auto | ||
|
|
||
| # Explicitly declare text files you want to always be normalized and converted | ||
| # to native line endings on checkout. | ||
| *.cs text | ||
| *.csx text | ||
| *.csproj text | ||
| *.sln text | ||
| *.xaml text | ||
| *.config text | ||
| *.xml text | ||
| *.json text | ||
| *.md text | ||
| *.txt text | ||
| *.yml text | ||
| *.yaml text | ||
| *.sh text eol=lf | ||
| *.ps1 text eol=crlf | ||
| *.cmd text eol=crlf | ||
| *.bat text eol=crlf | ||
|
|
||
| # Declare files that will always have LF line endings on checkout. | ||
| .gitattributes text eol=lf | ||
| .gitignore text eol=lf | ||
| *.sh text eol=lf | ||
|
|
||
| # Declare files that will always have CRLF line endings on checkout. | ||
| *.sln text eol=crlf | ||
| *.slnx text eol=crlf | ||
| *.cmd text eol=crlf | ||
| *.bat text eol=crlf | ||
| *.ps1 text eol=crlf | ||
|
|
||
| # Denote all files that are truly binary and should not be modified. | ||
| *.png binary | ||
| *.jpg binary | ||
| *.jpeg binary | ||
| *.gif binary | ||
| *.ico binary | ||
| *.dll binary | ||
| *.exe binary | ||
| *.pdb binary | ||
| *.zip binary | ||
| *.gz binary | ||
| *.tar binary | ||
| *.7z binary | ||
| *.nupkg binary | ||
| *.snk binary | ||
| *.pfx binary |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| { | ||
| "AUTO_MERGE_PACKAGE_WILDCARD_EXPRESSIONS": "[\"Endjin.*\",\"System.*\",\"MSTest.*\"]", | ||
| "AUTO_MERGE_PACKAGE_WILDCARD_EXPRESSIONS": "[]", | ||
| "AUTO_RELEASE_PACKAGE_WILDCARD_EXPRESSIONS": "[]" | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,28 +3,24 @@ on: | |||||
| push: | ||||||
| branches: | ||||||
| - main | ||||||
| - master | ||||||
| tags: | ||||||
| - '*' | ||||||
| pull_request: | ||||||
| branches: | ||||||
| - main | ||||||
| - master | ||||||
| workflow_dispatch: | ||||||
| inputs: | ||||||
| forcePublish: | ||||||
| description: When true the Publish stage will always be run, otherwise it only runs for tagged versions. | ||||||
| required: false | ||||||
| default: false | ||||||
| type: boolean | ||||||
| skipCleanup: | ||||||
| description: When true the pipeline clean-up stage will not be run. For example, the cache used between pipeline stages will be retained. | ||||||
| forcePublicNugetDestination: | ||||||
| description: When true the NuGet Publish destination will always be set to nuget.org. (Force publishing normally publishes to GitHub Packages, if not tagged version) | ||||||
| required: false | ||||||
| default: false | ||||||
| type: boolean | ||||||
|
|
||||||
| concurrency: | ||||||
| group: ${{ github.workflow }}-${{ github.ref }} | ||||||
| group: ${{ github.workflow }}-${{ github.sha }} | ||||||
|
||||||
| group: ${{ github.workflow }}-${{ github.sha }} | |
| group: ${{ github.workflow }}-${{ github.ref }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependabot config uses
directory(singular), notdirectories. To monitor multiple directories you generally need multiple update entries (one per directory). As written, this block is likely invalid and may cause Dependabot to ignore the configuration.