Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
062904f
refactor: :recycle: move some test code to example code
Timothy-Liuxf Oct 20, 2022
2b424f5
Merge pull request #39 from Timothy-Liuxf/refactor/example-code
Timothy-Liuxf Oct 20, 2022
8312631
test: :white_check_mark: add test code
Timothy-Liuxf Oct 20, 2022
a2ad7ed
ci(test): :construction_worker: use ci to run test code
Timothy-Liuxf Oct 20, 2022
6dd61ba
Merge pull request #40 from Timothy-Liuxf/test/basic
Timothy-Liuxf Oct 20, 2022
2d426d3
docs: :memo: add conventional commit requirement into contributing co…
Timothy-Liuxf Oct 20, 2022
bed03d1
Merge pull request #41 from Timothy-Liuxf/repo/contributing/commit-msg
Timothy-Liuxf Oct 20, 2022
696e773
docs: :memo: update the readme to consist with the new example code
Timothy-Liuxf Oct 20, 2022
ec3a17a
ci: :construction_worker: move release task branch to `release/**`
Timothy-Liuxf Oct 20, 2022
aec7fe9
chore(deps): update dependency microsoft.net.test.sdk to v17.3.2
renovate[bot] Oct 21, 2022
18031c1
chore(deps): update actions/setup-dotnet action to v3
renovate[bot] Oct 21, 2022
6022032
docs: :memo: update contributing documentation
Timothy-Liuxf Oct 24, 2022
4767c39
Merge pull request #45 from Timothy-Liuxf/docs/readme
Timothy-Liuxf Oct 24, 2022
f3772bf
Merge pull request #44 from Timothy-Liuxf/renovate/actions-setup-dotn…
Timothy-Liuxf Oct 24, 2022
3ff2a90
Merge pull request #43 from Timothy-Liuxf/renovate/vstest-monorepo
Timothy-Liuxf Oct 24, 2022
728d839
chore(deps): update mstest monorepo to v2.2.10
renovate[bot] Oct 24, 2022
41e8b83
Merge pull request #42 from Timothy-Liuxf/renovate/mstest-monorepo
Timothy-Liuxf Oct 24, 2022
671fbc6
chore(bot): :wrench: set base branch to `dev`
Timothy-Liuxf Oct 24, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: publish

on:
push:
branches: [ publish ]
branches: [ release/** ]

jobs:
publish_nuget_package:
Expand All @@ -11,7 +11,7 @@ jobs:
- name: Fetch code
uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Fetch code
uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
Expand All @@ -23,6 +23,4 @@ jobs:
run: dotnet build "./CSharp/FrameRateTask/FrameRateTask.csproj" -c Release
- name: Run test code
run: |
dotnet build "./CSharp/Test/Test.csproj" -c Release
dotnet build "./CSharp/TestConcurrency/TestConcurrency.csproj" -c Release
dotnet run --project "./CSharp/TestConcurrency/TestConcurrency.csproj" -c Release
dotnet test "./FrameRateTask.sln" -c Release
41 changes: 38 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore

# User-specific files
*.rsuser
Expand Down Expand Up @@ -29,7 +29,6 @@ x86/
bld/
[Bb]in/
[Oo]bj/
[Oo]ut/
[Ll]og/
[Ll]ogs/

Expand Down Expand Up @@ -91,6 +90,7 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
Expand Down Expand Up @@ -294,6 +294,17 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw

# Visual Studio 6 auto-generated project file (contains which files were open etc.)
*.vbp

# Visual Studio 6 workspace and project file (working project files containing files to include in project)
*.dsw
*.dsp

# Visual Studio 6 technical files
*.ncb
*.aps

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
Expand Down Expand Up @@ -350,6 +361,9 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/

# Visual Studio History (VSHistory) files
.vshistory/

# BeatPulse healthcheck temp database
healthchecksdb

Expand All @@ -360,4 +374,25 @@ MigrationBackup/
.ionide/

# Fody - auto-generated XML schema
FodyWeavers.xsd
FodyWeavers.xsd

# VS Code files for those working on multiple tools
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Windows Installer files from build outputs
*.cab
*.msi
*.msix
*.msm
*.msp

# JetBrains Rider
*.sln.iml
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@

## Branch

You should contribute to dev branch if you want to contribute to this reposity.
You should contribute to **`dev`** branch if you want to contribute to this repository.

## Commit Specification

Your commit message should follow the [Conventional Commits](https://www.conventionalcommits.org/).
10 changes: 10 additions & 0 deletions CONTRIBUTING.zh-CN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 向 FRAMERATETASK 贡献代码

## 分支

如果想要贡献代码,请向 **`dev`** 分支提出 `pull request`。

## Commit 规范

你的 commit 信息需要遵循[约定式提交](https://www.conventionalcommits.org/zh-hans/)。

4 changes: 3 additions & 1 deletion CSharp/FrameRateTask/Exceptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

* FrameRateTask

* Copyright © 2022 Timothy-LiuXuefeng
* Copyright © 2022 Timothy Liu

* MIT LICENSE

* https://timothy-liuxf.github.io/FrameRateTask/

*/

using System;
Expand Down
4 changes: 3 additions & 1 deletion CSharp/FrameRateTask/FrameRateTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

* FrameRateTask

* Copyright © 2022 Timothy-LiuXuefeng
* Copyright © 2022 Timothy Liu

* MIT LICENSE

* https://timothy-liuxf.github.io/FrameRateTask/

*/

using System;
Expand Down
Loading