Skip to content
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
8104b9e
Initial commit of project structure.
clrudolphi Jul 8, 2025
8a7a7e9
first class ported
clrudolphi Jul 8, 2025
281e078
Implementation plus tests
clrudolphi Jul 8, 2025
8360374
First cut at fully passing tests.
clrudolphi Jul 8, 2025
5aa6c09
Refactor such that testdata files are read from the file system (rath…
clrudolphi Jul 9, 2025
3327bcf
Enhance Lineage equality and improve timestamp handling
clrudolphi Jul 9, 2025
0c69735
cleanup - per review comments
clrudolphi Jul 17, 2025
828599e
Modified to conform to changes coming in Query #84 (Deprecate lineage…
clrudolphi Jul 18, 2025
cec1a90
Merge branch 'main' into dotnet
clrudolphi Sep 16, 2025
65c2338
Merge branch 'main' into dotnet
clrudolphi Sep 17, 2025
d37f949
Matching Java implementation; first commit.
clrudolphi Sep 17, 2025
327fed7
Reducing access modifiers on Repository updateXXX methods.
clrudolphi Sep 17, 2025
dca52dc
Update CHANGELOG.md
clrudolphi Sep 17, 2025
a1fa5f4
Merge branch 'main' into dotnet
clrudolphi Sep 30, 2025
ab4ede1
Add support for FindAllUndefinedParameterTypes query.
clrudolphi Sep 30, 2025
ce11f7f
Merge branch 'main' into dotnet
clrudolphi Oct 28, 2025
aacc93e
Added FindAllStepDefinitions()
clrudolphi Oct 28, 2025
863fcd2
Changes per review comments.
clrudolphi Oct 29, 2025
3d69e28
Restructured folders
clrudolphi Oct 30, 2025
4dc864a
Adjusted paths to testdata folder given solution level folder restruc…
clrudolphi Oct 30, 2025
6b546ca
Code cleanup - formatting.
clrudolphi Oct 30, 2025
08fe99f
Add LICENSE file
clrudolphi Oct 30, 2025
af036e9
Cleanup return types of Query methods to IEnumberable<T>, which is mo…
clrudolphi Oct 30, 2025
9462171
Updated CONTRIBUTING.md to include .NET in the list of implementations
clrudolphi Oct 30, 2025
8155e67
Add Directory.Build.props to the solution.
clrudolphi Oct 30, 2025
164c983
Create test-dotnet.yml
clrudolphi Oct 30, 2025
19d95b5
Create release-nuget.yaml
clrudolphi Oct 30, 2025
d2f2b43
Create Query.snk
clrudolphi Oct 30, 2025
83b504b
Added signing key for test project.
clrudolphi Oct 30, 2025
32e6634
Added configuration for nuget publishing
clrudolphi Oct 30, 2025
669d655
Temporary: Update workflow to list locations of testdata files
clrudolphi Oct 30, 2025
d925be3
Temp: update of test-dotnet
clrudolphi Oct 30, 2025
e6b20db
Revert "Temp: update of test-dotnet"
clrudolphi Oct 30, 2025
ccef650
Revert "Temporary: Update workflow to list locations of testdata files"
clrudolphi Oct 30, 2025
d35a534
Modify how testfolder is found by probing.
clrudolphi Oct 30, 2025
6aedb35
Modify setting in .editorconfig to enforce newline at end of source f…
clrudolphi Oct 30, 2025
e7f6db1
Update LICENSE
clrudolphi Oct 31, 2025
4fd7cd9
Modified library name to be consistent with other .NET implementation…
clrudolphi Nov 4, 2025
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
5 changes: 4 additions & 1 deletion .github/workflows/test-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
- run: pwd ls -la ls -la testdata/src
- run: |
pwd
ls -la
ls -la testdata/src
- run: dotnet test
working-directory: dotnet
Loading