Skip to content

Commit

Permalink
Merge branch 'master' of github.com:lucasteles/Backdash
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasteles committed Mar 7, 2024
2 parents 796d24c + 42134db commit df57286
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,12 @@ on [GGPO](https://github.com/pond3r/ggpo) with full asynchronous IO support.
$ dotnet add package Backdash
```

## Samples

Check the samples on [/samples](/samples)

Watch the working demo:

[![Watch the demo](https://img.youtube.com/vi/JYf2MemyJaY/default.jpg)](https://youtu.be/JYf2MemyJaY)


2 changes: 1 addition & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class MainBuild : NukeBuild
.Executes(() =>
{
var output = RootDirectory / "_site";
output.CreateOrCleanDirectory();
if (!output.DirectoryExists()) output.CreateDirectory();
Badges.ForCoverage(Solution, output, CoverageFiles);
Badges.ForDotNetVersion(output, GlobalJson);
Badges.ForTests(output, TestResultFile);
Expand Down
2 changes: 1 addition & 1 deletion build/Helpers/Badges.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ record TestSummary(int Passed, int Failed, int Skipped)
public static TestSummary operator +(TestSummary s1, TestSummary s2)
=> new(s1.Passed + s2.Passed, s1.Failed + s2.Failed, s1.Skipped + s2.Skipped);
}
}
}
3 changes: 2 additions & 1 deletion docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"**/*.{md,yml}"
],
"exclude": [
"_site/**"
"_site/**",
"TestReport/**"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion toc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: Home
href: /
href: index.md
- name: Docs
href: docs/
- name: API
Expand Down

0 comments on commit df57286

Please sign in to comment.