Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 19bac55

Browse files
committed
general project updates
- update dependencies - update to C# 10.0 - fix null value parsing - remove Parser.cs with Tomlyn's native ToModel<T> parser - move Bindle to src/Bindle - move Bindle.Tests to tests/Bindle.IntegrationTests - remove Bindle/docs/readme.md; use README.md instead Signed-off-by: Matthew Fisher <[email protected]>
1 parent 3dd9404 commit 19bac55

File tree

39 files changed

+970
-1326
lines changed

39 files changed

+970
-1326
lines changed

.github/workflows/build-and-test/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: "Build And Test Action"
22
description: "Builds and Tests bindle-dotnet"
33
inputs:
4-
configuration:
4+
configuration:
55
description: 'The Configration to build and test'
66
required: true
77
default: 'release'
88
runs:
99
using: "composite"
10-
steps:
10+
steps:
1111
- name: Restore dependencies
1212
run: dotnet restore
1313
shell: bash
@@ -22,7 +22,7 @@ runs:
2222
working-directory: bindleserver
2323
shell: bash
2424
- name: Test
25-
env:
26-
BINDLE_SERVER_PATH: ../../../../bindleserver/target/debug
27-
run: dotnet test
28-
shell: bash
25+
env:
26+
BINDLE_SERVER_PATH: ../../../../../bindleserver/target/debug
27+
run: dotnet test
28+
shell: bash

.github/workflows/build-publish-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: dotnet
22

33
on:
44
push:
5-
tags:
5+
tags:
66
- '[0-9]+.[0-9]+.[0-9]+'
77
- '[0-9]+.[0-9]+.[0-9]+-preview'
88
branches: [ main ]
@@ -128,12 +128,12 @@ jobs:
128128
echo Pushing $nupkg
129129
dotnet nuget push $nupkg --api-key ${{ secrets.GHPACKAGES_PAT }} --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate
130130
done
131-
shell: bash
131+
shell: bash
132132
- name: Publish Nuget Packages
133133
run: |
134134
for nupkg in $(find . -name *.nupkg)
135135
do
136136
echo Pushing $nupkg
137137
dotnet nuget push $nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
138138
done
139-
shell: bash
139+
shell: bash

.github/workflows/configuration.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
{
1111
"title": "## 🐛 Fixes",
1212
"labels": [
13-
"fix",
13+
"fix",
1414
"bug"
1515
]
1616
},
@@ -31,4 +31,4 @@
3131
"labels": []
3232
}
3333
]
34-
}
34+
}

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"processId": "${command:pickProcess}"
2525
}
2626
]
27-
}
27+
}

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
"problemMatcher": "$msCompile"
4040
}
4141
]
42-
}
42+
}

Bindle.Tests/Integration.cs

Lines changed: 0 additions & 154 deletions
This file was deleted.

Bindle.Tests/IntegrationFixture.cs

Lines changed: 0 additions & 108 deletions
This file was deleted.

Bindle.Tests/TestPriorityAttribute.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)