Skip to content
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

Feat/master/autogeneration #177

Merged
merged 35 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9638a80
start refactor
ognjenkatic Jan 8, 2024
00341c9
update services
ognjenkatic Jan 8, 2024
be167a0
add task service
ognjenkatic Jan 8, 2024
3d7656e
tidy up nulls
ognjenkatic Jan 8, 2024
9ffa561
update dependencies
ognjenkatic Jan 8, 2024
1b21a8b
Add wrapper services
boma96 Jan 8, 2024
6f7a356
Fix merge conflict
boma96 Jan 8, 2024
fc2b09b
Fix namespace issues
boma96 Jan 8, 2024
cdd464c
refactor partial #1
ognjenkatic Jan 8, 2024
e8c8036
refactor partial #2
ognjenkatic Jan 8, 2024
a84c052
clear up warnings and messages
ognjenkatic Jan 8, 2024
46924e9
adjust tests
ognjenkatic Jan 8, 2024
1580726
adjust settings
ognjenkatic Jan 8, 2024
87e7c6c
various fixes
ognjenkatic Jan 8, 2024
09d70c9
various fixes #2
ognjenkatic Jan 8, 2024
2943447
align names
ognjenkatic Jan 8, 2024
20f45e8
tidy up
ognjenkatic Jan 8, 2024
64fa25f
tidy up patterns
ognjenkatic Jan 8, 2024
f5c298e
slight tweaks and version bump
ognjenkatic Jan 9, 2024
4ddda78
handle null prefix
ognjenkatic Jan 9, 2024
959216c
update dotnet version
ognjenkatic Jan 9, 2024
9d498bc
update tools
ognjenkatic Jan 9, 2024
10150f0
Update dotnet.yml
ognjenkatic Jan 9, 2024
2e11ed4
Revert "Update dotnet.yml"
ognjenkatic Jan 9, 2024
df40efe
update lang version
ognjenkatic Jan 9, 2024
2febfbe
Change dotnet version
boma96 Jan 11, 2024
708895a
Restore dotnet version
boma96 Jan 11, 2024
19df150
Try to specify multiple versions
boma96 Jan 11, 2024
8912ad2
Specify 8.x dotnet version
boma96 Jan 11, 2024
ecb65aa
remove unused package
ognjenkatic Jan 12, 2024
5f7ceb5
Merge branch 'feat/master/autogeneration' of https://github.com/codax…
ognjenkatic Jan 12, 2024
416b800
execute task updates in paralel
ognjenkatic Jan 12, 2024
58bbb4a
add comment for concurrent task updates
ognjenkatic Jan 12, 2024
9039b3f
fix usage of Type instead of WorkflowTaskType
ognjenkatic Jan 21, 2024
314a87e
use type as both string and enum and adjust tests
ognjenkatic Jan 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"isRoot": true,
"tools": {
"csharpier": {
"version": "0.18.0",
"version": "0.26.7",
"commands": [
"dotnet-csharpier"
]
},
"husky": {
"version": "0.4.4",
"version": "0.6.4",
"commands": [
"husky"
]
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: |
6.x
8.x
- name: Restore dependencies
run: dotnet restore ConductorSharp.sln
- name: Build
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: |
6.x
8.x
- name: Restore dependencies
run: dotnet restore ConductorSharp.sln

Expand Down
Loading