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

Merge to master. #146

Merged
merged 42 commits into from
Oct 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
aed8ba5
New dev readme.
RyanONeill1970 Dec 18, 2022
f2832c3
Update to .net 7.
RyanONeill1970 Dec 18, 2022
14607a1
Remove AppVeyor, SonarQube, StyleCop before moving to GH Actions.
RyanONeill1970 Dec 19, 2022
bc94602
Create codeql.yml
RyanONeill1970 Dec 19, 2022
622ee1d
Delete codeql-analysis.yml
RyanONeill1970 Dec 19, 2022
9c91deb
Create sonar.yml
RyanONeill1970 Dec 19, 2022
eb6ed80
Point readme status badges at new workflow.
RyanONeill1970 Dec 19, 2022
43d5ac6
Merge branch 'dev' of https://github.com/TheGeneGenieProject/GeneGeni…
RyanONeill1970 Dec 19, 2022
cde6aef
Delete more StyleCop.
RyanONeill1970 Dec 19, 2022
d162ba6
Fix case of Ansel.ged file not able to be found in Linux.
RyanONeill1970 Dec 19, 2022
0830757
Revert line feed tests as failing under Linux. Needs work for cross p…
RyanONeill1970 Dec 19, 2022
dbf70fd
Set up editorconfig standards.
RyanONeill1970 Dec 19, 2022
d46403f
More cross platform path test fixes.
RyanONeill1970 Dec 19, 2022
b2bbc7e
Remove duplicated copyright noise text.
RyanONeill1970 Dec 19, 2022
95b7c3d
Update sonar.yml
RyanONeill1970 Dec 19, 2022
38f6c86
Trigger build.
RyanONeill1970 Dec 19, 2022
960eb08
Merge branch 'dev' of https://github.com/TheGeneGenieProject/GeneGeni…
RyanONeill1970 Dec 19, 2022
63973d6
Rework test.
RyanONeill1970 Dec 19, 2022
abac751
Trigger build.
RyanONeill1970 Dec 19, 2022
1eac92b
Fix test that break on Linux due to line terminators not being detect…
RyanONeill1970 Dec 19, 2022
d094d7d
Reverse linefeed changes so code does not care what they are.
RyanONeill1970 Dec 20, 2022
f8daf71
Fix another broken cross platform linefeed test.
RyanONeill1970 Dec 20, 2022
6238769
Tidy up environment newline detection.
RyanONeill1970 Dec 23, 2022
6ee827f
Fix issue with calendar not being recognised.
RyanONeill1970 Dec 23, 2022
cfe2f9a
Remove compile time generated documentation from source.
RyanONeill1970 May 10, 2023
e639a04
Don't track JetBrains Rider IDE scratch files.
RyanONeill1970 May 10, 2023
d51a7c8
Update test runner packages.
RyanONeill1970 May 10, 2023
67c61a2
Fixed some typos in comments and strings. (#124)
mtx500 Jun 24, 2023
cdaf9ae
Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.2 (#123)
dependabot[bot] Jun 24, 2023
34e004e
Generate XML documentation files in output- instead of source-directo…
mtx500 Jun 24, 2023
0f251bf
Store the record change dates that are read in from GED file (#126)
mtx500 Jun 25, 2023
bbe976c
Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 (#127)
dependabot[bot] Jul 23, 2023
4b6c54c
Fix exception when reading ChangeDate when file contains bad submitte…
mtx500 Jul 23, 2023
92c6136
Bump xunit from 2.4.2 to 2.5.0 (#129)
dependabot[bot] Jul 23, 2023
451d9f3
Bump xunit.runner.visualstudio from 2.4.5 to 2.5.0 (#130)
dependabot[bot] Jul 23, 2023
ba93636
Add support for custom records on event records. (#144)
mtx500 Jan 1, 2024
ebfaa5e
Bump xunit from 2.5.0 to 2.6.0 (#141)
dependabot[bot] Jan 1, 2024
d8bc719
Bump xunit.runner.visualstudio from 2.5.0 to 2.5.3 (#138)
dependabot[bot] Jan 1, 2024
f36e4e8
Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.8.0 (#145)
dependabot[bot] Jan 1, 2024
67141cc
Update to .Net 8.
RyanONeill1970 Jan 1, 2024
083c2b7
Update all packages to latest.
RyanONeill1970 Jan 1, 2024
cd1e268
Attempt to fix Sonar Cloud analysis.
RyanONeill1970 Jan 1, 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
Prev Previous commit
Next Next commit
Update sonar.yml
RyanONeill1970 authored Dec 19, 2022
commit 95b7c3db0fc3706f8bf17808bb4a1fc4900650fc
2 changes: 1 addition & 1 deletion .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
dotnet sonarscanner begin /k:"GeneGenie.DataQuality" /o:"thegenegenieproject" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml
dotnet sonarscanner begin /k:"GeneGenie.Gedcom" /o:"thegenegenieproject" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.vscoveragexml.reportsPaths=coverage.xml
dotnet build --no-incremental
dotnet-coverage collect 'dotnet test' -f xml -o 'coverage.xml'
dotnet sonarscanner end