Skip to content

Commit e6e2984

Browse files
devlooped-botkzu
authored andcommitted
⬆️ Bump files with dotnet-file sync
# devlooped/SponsorLink - Introduce standalone SponsorManifest for read/validate devlooped/SponsorLink@a755e4b - Fix version/override for CPV devlooped/SponsorLink@8a40822 - Improve wording on editor usage requiring sponsorship devlooped/SponsorLink@21d8dac - Bump JWT also in samples devlooped/SponsorLink@e8ec200 # devlooped/oss - Ignore .env files recursively devlooped/oss@3776526 - Group MEAI packages together devlooped/oss@e733294 - Add Company MSBuild property by default devlooped/oss@c509be4 - Fix improper first / in gh api repos devlooped/oss@f2b690c - Improve default Product metadata, remove .git from user-facing URLs devlooped/oss@4339749 - Ignore slnx file format too devlooped/oss@68b409c - Add explicit write permissions from caller workflow devlooped/oss@8fa147d - Use GH_TOKEN if available for PR devlooped/oss@77e83f2 - Ensure lf for Scriban templates always devlooped/oss@4a9aa32
1 parent 752b34b commit e6e2984

21 files changed

+361
-188
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# normalize by default
22
* text=auto encoding=UTF-8
33
*.sh text eol=lf
4+
*.sbn eol=lf
45

56
# These are windows specific files which we may as well ensure are
67
# always crlf on checkout

.github/actions/dotnet/action.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: ⚙ dotnet
2+
description: Configures dotnet if the repo/org defines the DOTNET custom property
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- name: 🔎 dotnet
8+
id: dotnet
9+
shell: bash
10+
run: |
11+
VERSIONS=$(gh api repos/${{ github.repository }}/properties/values | jq -r '.[] | select(.property_name == "DOTNET") | .value')
12+
# Remove extra whitespace from VERSIONS
13+
VERSIONS=$(echo "$VERSIONS" | tr -s ' ' | tr -d ' ')
14+
# Convert comma-separated to newline-separated
15+
NEWLINE_VERSIONS=$(echo "$VERSIONS" | tr ',' '\n')
16+
# Validate versions
17+
while IFS= read -r version; do
18+
if ! [[ $version =~ ^[0-9]+(\.[0-9]+(\.[0-9]+)?)?(\.x)?$ ]]; then
19+
echo "Error: Invalid version format: $version"
20+
exit 1
21+
fi
22+
done <<< "$NEWLINE_VERSIONS"
23+
# Write multiline output to $GITHUB_OUTPUT
24+
{
25+
echo 'versions<<EOF'
26+
echo "$NEWLINE_VERSIONS"
27+
echo 'EOF'
28+
} >> $GITHUB_OUTPUT
29+
30+
- name: ⚙ dotnet
31+
if: steps.dotnet.outputs.versions != ''
32+
uses: actions/setup-dotnet@v4
33+
with:
34+
dotnet-version: |
35+
${{ steps.dotnet.outputs.versions }}

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ updates:
2424
Extensions:
2525
patterns:
2626
- "Microsoft.Extensions*"
27+
exclude-patterns:
28+
- "Microsoft.Extensions.AI*"
29+
ExtensionsAI:
30+
patterns:
31+
- "Microsoft.Extensions.AI*"
2732
Web:
2833
patterns:
2934
- "Microsoft.AspNetCore*"
@@ -38,3 +43,6 @@ updates:
3843
ProtoBuf:
3944
patterns:
4045
- "protobuf-*"
46+
Spectre:
47+
patterns:
48+
- "Spectre.Console*"

.github/workflows/dotnet-env.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: dotnet-env
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '**/*.*proj'
9+
10+
jobs:
11+
which-dotnet:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
17+
steps:
18+
- name: 🤖 defaults
19+
uses: devlooped/actions-bot@v1
20+
with:
21+
name: ${{ secrets.BOT_NAME }}
22+
email: ${{ secrets.BOT_EMAIL }}
23+
gh_token: ${{ secrets.GH_TOKEN }}
24+
github_token: ${{ secrets.GITHUB_TOKEN }}
25+
26+
- name: 🤘 checkout
27+
uses: actions/checkout@v4
28+
with:
29+
token: ${{ env.GH_TOKEN }}
30+
31+
- name: 🤌 dotnet
32+
uses: devlooped/actions-which-dotnet@v1
33+
34+
- name: ✍ pull request
35+
uses: peter-evans/create-pull-request@v7
36+
with:
37+
base: main
38+
branch: which-dotnet
39+
delete-branch: true
40+
labels: dependencies
41+
title: "⚙ Update dotnet versions"
42+
body: "Update dotnet versions"
43+
commit-message: "Update dotnet versions"
44+
token: ${{ env.GH_TOKEN }}

.github/workflows/dotnet-file.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,10 @@ env:
1212

1313
jobs:
1414
run:
15+
permissions:
16+
contents: write
1517
uses: devlooped/oss/.github/workflows/dotnet-file-core.yml@main
16-
secrets: inherit
18+
secrets:
19+
BOT_NAME: ${{ secrets.BOT_NAME }}
20+
BOT_EMAIL: ${{ secrets.BOT_EMAIL }}
21+
GH_TOKEN: ${{ secrets.GH_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ BenchmarkDotNet.Artifacts
1111
.genaiscript
1212
.idea
1313
local.settings.json
14+
.env
1415

1516
*.suo
1617
*.sdf

.netconfig

Lines changed: 48 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747
weak
4848
[file ".gitattributes"]
4949
url = https://github.com/devlooped/oss/blob/main/.gitattributes
50-
sha = 5f92a68e302bae675b394ef343114139c075993e
51-
etag = 338ba6d92c8d1774363396739c2be4257bfc58026f4b0fe92cb0ae4460e1eff7
50+
sha = 4a9aa321c4982b83c185cf8dffed181ff84667d5
51+
etag = 09cad18280ed04b67f7f87591e5481510df04d44c3403231b8af885664d8fd58
5252
weak
5353
[file ".github/dependabot.yml"]
5454
url = https://github.com/devlooped/oss/blob/main/.github/dependabot.yml
55-
sha = 49661dbf0720cde93eb5569be7523b5912351560
56-
etag = c147ea2f3431ca0338c315c4a45b56ee233c4d30f8d6ab698d0e1980a257fd6a
55+
sha = e733294084fb3e75d517a2e961e87df8faae7dc6
56+
etag = 3bf8d9214a15c049ca5cfe80d212a8cbe4753b8a638a9804ef73d34c7def9618
5757
weak
5858
[file ".github/workflows/build.yml"]
5959
url = https://github.com/devlooped/oss/blob/main/.github/workflows/build.yml
@@ -65,16 +65,16 @@
6565
weak
6666
[file ".github/workflows/dotnet-file.yml"]
6767
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file.yml
68-
sha = 59aaf432369b5ea597831d4feec5a6ac4024c2e3
69-
etag = 1374e3f8c9b7af69c443605c03f7262300dcb7d783738d9eb9fe84268ed2d10c
68+
sha = 8fa147d4799d73819040736c399d0b1db2c2d86c
69+
etag = 1ca805a23656e99c03f9d478dba8ccef6e571f5de2ac0e9bb7e3c5216c99a694
7070
weak
7171
[file ".github/workflows/publish.yml"]
7272
url = https://github.com/devlooped/oss/blob/main/.github/workflows/publish.yml
7373
skip
7474
[file ".gitignore"]
7575
url = https://github.com/devlooped/oss/blob/main/.gitignore
76-
sha = e0be248fff1d39133345283b8227372b36574b75
77-
etag = c449ec6f76803e1891357ca2b8b4fcb5b2e5deeff8311622fd92ca9fbf1e6575
76+
sha = 3776526342afb3f57da7e80f2095e5fdca3c31c9
77+
etag = 11767f73556aa4c6c8bcc153b77ee8e8114f99fa3b885b0a7d66d082f91e77b3
7878
weak
7979
[file "Directory.Build.rsp"]
8080
url = https://github.com/devlooped/oss/blob/main/Directory.Build.rsp
@@ -83,8 +83,8 @@
8383
weak
8484
[file "_config.yml"]
8585
url = https://github.com/devlooped/oss/blob/main/_config.yml
86-
sha = fa83a5161ba52bc5d510ce0ba75ee0b1f8d4bc63
87-
etag = 9139148f845adf503fd3c3c140eb64421fc476a1f9c027fc50825c0efb05f557
86+
sha = 68b409c486842062e0de0e5b11e6fdb7cd12d6e2
87+
etag = d608aa0ddaedc2d8a87260f50756e8d8314964ad4671b76bd085bcb458757010
8888
weak
8989
[file "license.txt"]
9090
url = https://github.com/devlooped/oss/blob/main/license.txt
@@ -93,13 +93,13 @@
9393
weak
9494
[file "src/Directory.Build.props"]
9595
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.props
96-
sha = 2fff747a9673b499c99f2da183cdd5263fdc9333
97-
etag = 0fccddf04f282fe98122ab2610dc2972c205a521254559bf013655c6271b0017
96+
sha = c509be4378ff6789df4f66338cb88119453c0975
97+
etag = cbbdc1a4d3030f353f3e5306a6c380238dd4ed0945aad2d56ba87b49fcfcd66d
9898
weak
9999
[file "src/Directory.Build.targets"]
100100
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.targets
101-
sha = a8b208093599263b7f2d1fe3854634c588ea5199
102-
etag = 19087699f05396205e6b050d999a43b175bd242f6e8fac86f6df936310178b03
101+
sha = 4339749ef4b8f66def75931df09ef99c149f8421
102+
etag = 8b4492765755c030c4c351e058a92f53ab493cab440c1c0ef431f6635c4dae0e
103103
weak
104104
[file "src/kzu.snk"]
105105
url = https://github.com/devlooped/oss/blob/main/src/kzu.snk
@@ -793,13 +793,13 @@
793793
weak
794794
[file "src/SponsorLink/SponsorLink.Analyzer.Tests.targets"]
795795
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink.Analyzer.Tests.targets
796-
sha = 1454a8f481610a6cf33adfc6082a19421bbed43c
797-
etag = a06c8e06228a859eb15ba9ffad88c15874048a2ee23e515029fc36a78df1349c
796+
sha = 8a4082211918b604ad95ef0f3da3cd414747c46a
797+
etag = ac4e82c24d5a812eb7a1ad20d2d076b7aeedddd90c8196eaea0c227693a2ede6
798798
weak
799799
[file "src/SponsorLink/SponsorLink.Analyzer.targets"]
800800
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink.Analyzer.targets
801-
sha = 1454a8f481610a6cf33adfc6082a19421bbed43c
802-
etag = 0b4028f3cbc6463257b741106186689bdc7d1b20af5d1d0075e81e6d4fbe8d7b
801+
sha = 8a4082211918b604ad95ef0f3da3cd414747c46a
802+
etag = b75dd01945453c3ccd9eb96f65959ff1607a2cf11226fac5014b01b7cb6314d7
803803
weak
804804
[file "src/SponsorLink/SponsorLink/AnalyzerOptionsExtensions.cs"]
805805
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/AnalyzerOptionsExtensions.cs
@@ -816,35 +816,30 @@
816816
sha = 29921560c73bb91c2a21a21800daf0b250773598
817817
etag = a5d79dbc0ed9fac4fb1879fb3790b9ebab18e47c14c454554ce9f53f21487bb5
818818
weak
819-
[file "src/SponsorLink/SponsorLink/ManifestStatus.cs"]
820-
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/ManifestStatus.cs
821-
sha = f47528874a6d9192b5546f84b455f5ccc474a707
822-
etag = e46848f83c0436ba33a1c09a4060ad627a74db41bab66bb37ca40fce8a6532a7
823-
weak
824819
[file "src/SponsorLink/SponsorLink/Resources.es-AR.resx"]
825820
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.es-AR.resx
826821
sha = 586398c3e650495f36601ecc8983a14ed745e058
827822
etag = 1d6ca61601815a20581fc13f9efdad151ee0e5cf952318723265d5c183d3e1cc
828823
weak
829824
[file "src/SponsorLink/SponsorLink/Resources.es.resx"]
830825
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.es.resx
831-
sha = 29921560c73bb91c2a21a21800daf0b250773598
832-
etag = feb9dc86e4d9c0c4a294cd6e03c5b914943e8d206b88a125abd1b0f882ddb247
826+
sha = 21d8dac3077c75cd07d7cc7f9e10f2620afce834
827+
etag = 89a7bb797aeacca43e043196a00eea91f282df4caf9bbe937749026a03f707ad
833828
weak
834829
[file "src/SponsorLink/SponsorLink/Resources.resx"]
835830
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/Resources.resx
836-
sha = 29921560c73bb91c2a21a21800daf0b250773598
837-
etag = 7665a3be17cd224b1c413ade6a9c1c5a822dace1e7f9daae33a2e52d8bca15bb
831+
sha = 21d8dac3077c75cd07d7cc7f9e10f2620afce834
832+
etag = 8902652b8907de2fbccf73f3738d0fce503fc667a084171d6b88bf3373e559e7
838833
weak
839834
[file "src/SponsorLink/SponsorLink/SponsorLink.cs"]
840835
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLink.cs
841-
sha = 3f72a9fd35274a659dd380a7d5b747d71b9732a1
842-
etag = 616598e0ecb6d2ce97660aa6ac049e2a31a1c953669743b7b612b61d40c37706
836+
sha = a755e4be0f7cb73cfde208857e28f7cfeba2dcc3
837+
etag = 402e2beb11cf64c07be3d0fc3e89115fd09fc24133c08a8951bf0e784909c510
843838
weak
844839
[file "src/SponsorLink/SponsorLink/SponsorLink.csproj"]
845840
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLink.csproj
846-
sha = 2de6c983fd620ac8a268327c247f1ba4351ba29a
847-
etag = 0d1ba307ebf2ffa53af749afc408c738566cf1a334eb7df16dc64cb243f6233d
841+
sha = e8ec200934a3b3788c2e31d7022c717f5fd152fa
842+
etag = 1a58baf82b1813f68610272aa6161a18a70d5c619154734039a0d48fce6d735a
848843
weak
849844
[file "src/SponsorLink/SponsorLink/SponsorLinkAnalyzer.cs"]
850845
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorLinkAnalyzer.cs
@@ -916,21 +911,16 @@
916911
sha = ca82a9d6298a933192c5dfd2c5881ebadb85d0fe
917912
etag = 1875555adb7eab21acf1e730b6baeb8c095d9f6f9f07303a87ad9c16e0f6490d
918913
weak
919-
[file "src/SponsorLink/Tests/SponsorLinkTests.cs"]
920-
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/SponsorLinkTests.cs
921-
sha = f47528874a6d9192b5546f84b455f5ccc474a707
922-
etag = 1fa41250bd984e8aa840a966d34ce0e94f2111d1422d7f50b864c38364fcf4a4
923-
weak
924914
[file "src/SponsorLink/Tests/SponsorableManifest.cs"]
925915
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/SponsorableManifest.cs
926916
sha = f47528874a6d9192b5546f84b455f5ccc474a707
927917
etag = eb2292c6d7bf53a56acbb73d7c89ccc78fd8bec2e2198d70e36da93c01d36374
928918
weak
929919
[file "src/SponsorLink/Tests/Tests.csproj"]
930920
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/Tests.csproj
931-
sha = 2de6c983fd620ac8a268327c247f1ba4351ba29a
921+
sha = e8ec200934a3b3788c2e31d7022c717f5fd152fa
932922

933-
etag = 3fc99ed4d45124df055e60a0b89aedc46286c973c05859a5cada0daa0457efbd
923+
etag = eb34fc9fe25b0169f069ff692379a19c59673727d8abb6f45816012661329df5
934924
weak
935925
[file "src/SponsorLink/Tests/keys/kzu.key"]
936926
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/keys/kzu.key
@@ -992,3 +982,23 @@
992982

993983
etag = 2e3ec899bfd58e206cf4f98ab6b2fa65723ed449c4b9cfb9ec34a029a9664be4
994984
weak
985+
[file "src/SponsorLink/SponsorLink/SponsorManifest.cs"]
986+
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/SponsorLink/SponsorManifest.cs
987+
sha = a755e4be0f7cb73cfde208857e28f7cfeba2dcc3
988+
etag = 55ef89e8441156541c1c74a50675b7f56633b56493031f0ffa877460839e3536
989+
weak
990+
[file "src/SponsorLink/Tests/SponsorManifestTests.cs"]
991+
url = https://github.com/devlooped/SponsorLink/blob/main/samples/dotnet/Tests/SponsorManifestTests.cs
992+
sha = a755e4be0f7cb73cfde208857e28f7cfeba2dcc3
993+
etag = 82ae1c417265f2e136544980b4f687a1cc2c1bfb24df93d354c259053550f4a3
994+
weak
995+
[file ".github/actions/dotnet/action.yml"]
996+
url = https://github.com/devlooped/oss/blob/main/.github/actions/dotnet/action.yml
997+
sha = f2b690ce307acb76c5b8d7faec1a5b971a93653e
998+
etag = 27ea11baa2397b3ec9e643a935832da97719c4e44215cfd135c49cad4c29373f
999+
weak
1000+
[file ".github/workflows/dotnet-env.yml"]
1001+
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-env.yml
1002+
sha = 77e83f238196d2723640abef0c7b6f43994f9747
1003+
etag = fcb9759a96966df40dcd24906fd328ddec05953b7e747a6bb8d0d1e4c3865274
1004+
weak

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
theme: jekyll-theme-slate
22

3-
exclude: [ 'src/', '*.sln', 'Gemfile*', '*.rsp' ]
3+
exclude: [ 'src/', '*.sln', '*.slnx', 'Gemfile*', '*.rsp' ]

readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,29 +74,29 @@ To create a new release:
7474
[![Kori Francis](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/kfrancis.png "Kori Francis")](https://github.com/kfrancis)
7575
[![Toni Wenzel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/twenzel.png "Toni Wenzel")](https://github.com/twenzel)
7676
[![Uno Platform](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/unoplatform.png "Uno Platform")](https://github.com/unoplatform)
77-
[![Dan Siegel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/dansiegel.png "Dan Siegel")](https://github.com/dansiegel)
7877
[![Reuben Swartz](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/rbnswartz.png "Reuben Swartz")](https://github.com/rbnswartz)
7978
[![Jacob Foshee](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jfoshee.png "Jacob Foshee")](https://github.com/jfoshee)
8079
[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Mrxx99.png "")](https://github.com/Mrxx99)
8180
[![Eric Johnson](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/eajhnsn1.png "Eric Johnson")](https://github.com/eajhnsn1)
82-
[![Ix Technologies B.V.](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/IxTechnologies.png "Ix Technologies B.V.")](https://github.com/IxTechnologies)
8381
[![David JENNI](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/davidjenni.png "David JENNI")](https://github.com/davidjenni)
8482
[![Jonathan ](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Jonathan-Hickey.png "Jonathan ")](https://github.com/Jonathan-Hickey)
8583
[![Charley Wu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/akunzai.png "Charley Wu")](https://github.com/akunzai)
86-
[![Jakob Tikjøb Andersen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jakobt.png "Jakob Tikjøb Andersen")](https://github.com/jakobt)
87-
[![Tino Hager](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/tinohager.png "Tino Hager")](https://github.com/tinohager)
8884
[![Ken Bonny](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/KenBonny.png "Ken Bonny")](https://github.com/KenBonny)
8985
[![Simon Cropp](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/SimonCropp.png "Simon Cropp")](https://github.com/SimonCropp)
9086
[![agileworks-eu](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/agileworks-eu.png "agileworks-eu")](https://github.com/agileworks-eu)
91-
[![sorahex](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sorahex.png "sorahex")](https://github.com/sorahex)
9287
[![Zheyu Shen](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/arsdragonfly.png "Zheyu Shen")](https://github.com/arsdragonfly)
9388
[![Vezel](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/vezel-dev.png "Vezel")](https://github.com/vezel-dev)
9489
[![ChilliCream](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/ChilliCream.png "ChilliCream")](https://github.com/ChilliCream)
9590
[![4OTC](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/4OTC.png "4OTC")](https://github.com/4OTC)
9691
[![Vincent Limo](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/v-limo.png "Vincent Limo")](https://github.com/v-limo)
9792
[![Jordan S. Jones](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jordansjones.png "Jordan S. Jones")](https://github.com/jordansjones)
9893
[![domischell](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/DominicSchell.png "domischell")](https://github.com/DominicSchell)
99-
[![Joseph Kingry](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jkingry.png "Joseph Kingry")](https://github.com/jkingry)
94+
[![Justin Wendlandt](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/jwendl.png "Justin Wendlandt")](https://github.com/jwendl)
95+
[![Adrian Alonso](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/adalon.png "Adrian Alonso")](https://github.com/adalon)
96+
[![Michael Hagedorn](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/Eule02.png "Michael Hagedorn")](https://github.com/Eule02)
97+
[![](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/henkmartijn.png "")](https://github.com/henkmartijn)
98+
[![Sebastien Lebreton](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/sailro.png "Sebastien Lebreton")](https://github.com/sailro)
99+
[![torutek](https://raw.githubusercontent.com/devlooped/sponsors/main/.github/avatars/torutek.png "torutek")](https://github.com/torutek)
100100

101101

102102
<!-- sponsors.md -->

src/Directory.Build.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
<PropertyGroup Label="NuGet">
2222
<Authors>Daniel Cazzulino</Authors>
23+
<Company>Devlooped</Company>
2324
<Copyright>Copyright (C) Daniel Cazzulino and Contributors. All rights reserved.</Copyright>
2425
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2526
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -126,6 +127,8 @@
126127
<_VersionLabel>$(_VersionLabel.Replace('/merge', ''))</_VersionLabel>
127128
<!-- Finally sanitize the branch with dashes, so we can build path-separated branches, like rel/v1.0.0 or feature/foo -->
128129
<_VersionLabel>$(_VersionLabel.Replace('/', '-'))</_VersionLabel>
130+
<!-- And underscores which are also invalid labels, so we can use branches like dev/feature_foo -->
131+
<_VersionLabel>$(_VersionLabel.Replace('_', '-'))</_VersionLabel>
129132

130133
<!-- Set sanitized version to the actual version suffix used in build/pack -->
131134
<VersionSuffix Condition="!$(VersionLabel.Contains('refs/tags/'))">$(_VersionLabel)</VersionSuffix>

0 commit comments

Comments
 (0)