Skip to content

Commit 66d5e4c

Browse files
committed
Use new build system and adapt for new standard file headers, (c) etc.
1 parent 28607aa commit 66d5e4c

File tree

138 files changed

+2700
-1215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+2700
-1215
lines changed

.all-contributorsrc

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"projectName": "AaaLib",
3+
"projectOwner": "Tenacom",
4+
"repoType": "github",
5+
"repoHost": "https://github.com",
6+
"files": [
7+
"README.md"
8+
],
9+
"imageSize": 100,
10+
"commit": true,
11+
"commitConvention": "jshint",
12+
"contributorsPerLine": 7,
13+
"contributorsSortAlphabetically": true,
14+
"badgeTemplate": "[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square)](#contributors)",
15+
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><img src=\"<%= contributor.avatar_url %>\" width=\"<%= options.imageSize %>px;\" alt=\"\"/><br /><sub><b><%= contributor.name %></b></sub></a>",
16+
"types": {
17+
"custom": {}
18+
},
19+
"linkToUsage": true,
20+
"skipCi": true,
21+
"contributors": [
22+
{
23+
"login": "ric15ni",
24+
"name": "Riccardo De Agostini",
25+
"avatar_url": "https://avatars.githubusercontent.com/u/115504873?v=4",
26+
"profile": "https://github.com/ric15ni",
27+
"contributions": [
28+
"bug",
29+
"doc"
30+
]
31+
}
32+
]
33+
}

.config/dotnet-tools.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"cake.tool": {
6+
"version": "2.2.0",
7+
"commands": [
8+
"dotnet-cake"
9+
]
10+
}
11+
}
12+
}

.github/CODEOWNERS

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# This file specifies users whose review is automatically requested when a PR modifies certain files.
2+
# For more ionformation see:
3+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
4+
5+
# GitHub and apps configuration files
6+
/.github/ @rdeago
7+
/.all-contributorsrc @rdeago
8+
9+
# Git configuration files
10+
/.git* @rdeago
11+
12+
# Build scripts
13+
*.cake @rdeago
14+
15+
# Licensing
16+
LICENSE @rdeago
17+
THIRD-PARTY-NOTICES @rdeago
18+
19+
# Solution infrastructure files
20+
Directory.Build.* @rdeago
21+
.editorconfig @rdeago
22+
.globalconfig @rdeago
23+
stylecop.json @rdeago
24+
*.DotSettings @rdeago
25+
NuGet.config @rdeago
26+
version.json @rdeago

.github/ISSUE_TEMPLATE/01_bug_report.md

Lines changed: 0 additions & 67 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/02_enhancement_proposal.md

Lines changed: 0 additions & 90 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/03_blank_issue.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 66 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ updates:
33
- package-ecosystem: "github-actions"
44
directory: "/"
55
schedule: { interval: "daily" }
6-
labels: [ "area-deps", "area-ci" ]
6+
labels: [ "area:deps", "area:ci" ]
77
reviewers: [ "rdeago" ]
88
- package-ecosystem: "nuget"
99
directory: "/"
1010
schedule: { interval: "daily" }
11-
labels: [ "area-deps" ]
11+
labels: [ "area:deps" ]
1212
reviewers: [ "rdeago" ]

.github/labeler.yml

Lines changed: 31 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,39 @@
1-
area-louis:
2-
- "src/Louis/**/*.cs"
1+
'area:code':
2+
- '*.sln'
3+
- 'src/**/*'
34

4-
area-source_generators:
5-
- "src/LouisSourceGenerators/**/*.cs"
5+
'area:style':
6+
- '**/.editorconfig'
7+
- '**/.globalconfig'
8+
- '**/stylecop.json'
9+
- '**/*.DotSettings'
610

7-
area-build:
8-
- "**/*.sln"
9-
- "**/*.csproj"
10-
- "**/Common.props"
11-
- "**/Common.targets"
11+
'area:build':
12+
- '**/*.cake'
13+
- 'build/**/*'
1214

13-
area-repo:
14-
- ".github/*.yml"
15-
- ".github/**/*.md"
15+
'area:repo':
16+
- '.github/*.yml'
17+
- '.github/**/*.md'
18+
- CODEOWNERS
19+
- '.github/CODEOWNERS'
1620

17-
area-ci:
18-
- ".github/workflows/**/*"
19-
- "lgtm.yml"
21+
'area:ci':
22+
- '.github/workflows/**/*'
23+
- 'lgtm.yml'
2024

21-
area-deps:
22-
- "**/Directory.Packages.props"
25+
'area:deps':
26+
- '**/Directory.Packages.props'
2327
- Directory.Build.props
2428
- Directory.Build.targets
25-
- "src/Buildvana.Sdk/Sdk/PackageVersions.props"
29+
- global.json
30+
- .config/dotnet-tools.json
2631

27-
area-docs:
28-
- "docs/**/*"
29-
- "**/LICENSE"
30-
- "**/NuGet-README.md"
31-
- "**/README.md"
32-
- "**/THIRD-PARTY-NOTICES"
32+
'area:docs':
33+
- 'docs/**/*'
34+
- '.all-contributorsrc'
35+
- '**/CHANGELOG.md'
36+
- '**/LICENSE'
37+
- '**/NuGet-README.md'
38+
- '**/README.md'
39+
- '**/THIRD-PARTY-NOTICES'

0 commit comments

Comments
 (0)