Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitdc35a73

Browse files
committed
Switch to nbgv and update nuke
1 parent56100dc commitdc35a73

29 files changed

+510
-548
lines changed

‎.config/dotnet-tools.json‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version":1,
3+
"isRoot":true,
4+
"tools": {
5+
"dotnet-stryker": {
6+
"version":"3.4.0",
7+
"commands": [
8+
"dotnet-stryker"
9+
]
10+
},
11+
"nbgv": {
12+
"version":"3.5.119",
13+
"commands": [
14+
"nbgv"
15+
]
16+
}
17+
}
18+
}

‎.github/workflows/continuous.yml‎

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# ------------------------------------------------------------------------------
2+
# <auto-generated>
3+
#
4+
# This code was generated.
5+
#
6+
# - To turn off auto-generation set:
7+
#
8+
# [GitHubActions (AutoGenerate = false)]
9+
#
10+
# - To trigger manual generation invoke:
11+
#
12+
# nuke --generate-configuration GitHubActions_continuous --host GitHubActions
13+
#
14+
# </auto-generated>
15+
# ------------------------------------------------------------------------------
16+
17+
name:continuous
18+
19+
on:
20+
push:
21+
branches:
22+
-main
23+
-develop
24+
25+
jobs:
26+
ubuntu-latest:
27+
name:ubuntu-latest
28+
runs-on:ubuntu-latest
29+
steps:
30+
-uses:actions/checkout@v3
31+
with:
32+
fetch-depth:0
33+
-name:Cache .nuke/temp, ~/.nuget/packages
34+
uses:actions/cache@v3
35+
with:
36+
path:|
37+
.nuke/temp
38+
~/.nuget/packages
39+
key:${{ runner.os }}-${{ hashFiles('global.json', '**/*.csproj') }}
40+
-name:Run './build.cmd ReportCoverage Publish'
41+
run:./build.cmd ReportCoverage Publish
42+
env:
43+
PublicNuGetApiKey:${{ secrets.PUBLIC_NUGET_API_KEY }}
44+
GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }}
45+
-uses:actions/upload-artifact@v3
46+
with:
47+
name:test-results
48+
path:artifacts/test-results
49+
-uses:actions/upload-artifact@v3
50+
with:
51+
name:coverage-report.zip
52+
path:artifacts/reports/coverage-report.zip
53+
-uses:actions/upload-artifact@v3
54+
with:
55+
name:packages
56+
path:artifacts/packages

‎.github/workflows/pr.yml‎

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
# ------------------------------------------------------------------------------
2+
# <auto-generated>
3+
#
4+
# This code was generated.
5+
#
6+
# - To turn off auto-generation set:
7+
#
8+
# [GitHubActions (AutoGenerate = false)]
9+
#
10+
# - To trigger manual generation invoke:
11+
#
12+
# nuke --generate-configuration GitHubActions_pr --host GitHubActions
13+
#
14+
# </auto-generated>
15+
# ------------------------------------------------------------------------------
16+
17+
name:pr
18+
19+
on:
20+
pull_request:
21+
branches:
22+
-develop
23+
24+
jobs:
25+
windows-latest:
26+
name:windows-latest
27+
runs-on:windows-latest
28+
steps:
29+
-uses:actions/checkout@v3
30+
with:
31+
fetch-depth:0
32+
-name:Cache .nuke/temp, ~/.nuget/packages
33+
uses:actions/cache@v3
34+
with:
35+
path:|
36+
.nuke/temp
37+
~/.nuget/packages
38+
key:${{ runner.os }}-${{ hashFiles('global.json', '**/*.csproj') }}
39+
-name:Run './build.cmd Test ReportCoverage Pack'
40+
run:./build.cmd Test ReportCoverage Pack
41+
env:
42+
CodecovToken:${{ secrets.CODECOV_TOKEN }}
43+
GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }}
44+
-uses:actions/upload-artifact@v3
45+
with:
46+
name:test-results
47+
path:artifacts/test-results
48+
-uses:actions/upload-artifact@v3
49+
with:
50+
name:coverage-report.zip
51+
path:artifacts/reports/coverage-report.zip
52+
-uses:actions/upload-artifact@v3
53+
with:
54+
name:packages
55+
path:artifacts/packages
56+
ubuntu-latest:
57+
name:ubuntu-latest
58+
runs-on:ubuntu-latest
59+
steps:
60+
-uses:actions/checkout@v3
61+
with:
62+
fetch-depth:0
63+
-name:Cache .nuke/temp, ~/.nuget/packages
64+
uses:actions/cache@v3
65+
with:
66+
path:|
67+
.nuke/temp
68+
~/.nuget/packages
69+
key:${{ runner.os }}-${{ hashFiles('global.json', '**/*.csproj') }}
70+
-name:Run './build.cmd Test ReportCoverage Pack'
71+
run:./build.cmd Test ReportCoverage Pack
72+
env:
73+
CodecovToken:${{ secrets.CODECOV_TOKEN }}
74+
GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }}
75+
-uses:actions/upload-artifact@v3
76+
with:
77+
name:test-results
78+
path:artifacts/test-results
79+
-uses:actions/upload-artifact@v3
80+
with:
81+
name:coverage-report.zip
82+
path:artifacts/reports/coverage-report.zip
83+
-uses:actions/upload-artifact@v3
84+
with:
85+
name:packages
86+
path:artifacts/packages
87+
macos-latest:
88+
name:macos-latest
89+
runs-on:macos-latest
90+
steps:
91+
-uses:actions/checkout@v3
92+
with:
93+
fetch-depth:0
94+
-name:Cache .nuke/temp, ~/.nuget/packages
95+
uses:actions/cache@v3
96+
with:
97+
path:|
98+
.nuke/temp
99+
~/.nuget/packages
100+
key:${{ runner.os }}-${{ hashFiles('global.json', '**/*.csproj') }}
101+
-name:Run './build.cmd Test ReportCoverage Pack'
102+
run:./build.cmd Test ReportCoverage Pack
103+
env:
104+
CodecovToken:${{ secrets.CODECOV_TOKEN }}
105+
GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }}
106+
-uses:actions/upload-artifact@v3
107+
with:
108+
name:test-results
109+
path:artifacts/test-results
110+
-uses:actions/upload-artifact@v3
111+
with:
112+
name:coverage-report.zip
113+
path:artifacts/reports/coverage-report.zip
114+
-uses:actions/upload-artifact@v3
115+
with:
116+
name:packages
117+
path:artifacts/packages

‎.nuke‎

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

‎.nuke/build.schema.json‎

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
{
2+
"$schema":"http://json-schema.org/draft-04/schema#",
3+
"title":"Build Schema",
4+
"$ref":"#/definitions/build",
5+
"definitions": {
6+
"build": {
7+
"type":"object",
8+
"properties": {
9+
"CodecovToken": {
10+
"type":"string",
11+
"default":"Secrets must be entered via 'nuke :secrets [profile]'"
12+
},
13+
"Continue": {
14+
"type":"boolean",
15+
"description":"Indicates to continue a previously failed build attempt"
16+
},
17+
"Help": {
18+
"type":"boolean",
19+
"description":"Shows the help text for this build assembly"
20+
},
21+
"Host": {
22+
"type":"string",
23+
"description":"Host for execution. Default is 'automatic'",
24+
"enum": [
25+
"AppVeyor",
26+
"AzurePipelines",
27+
"Bamboo",
28+
"Bitbucket",
29+
"Bitrise",
30+
"GitHubActions",
31+
"GitLab",
32+
"Jenkins",
33+
"Rider",
34+
"SpaceAutomation",
35+
"TeamCity",
36+
"Terminal",
37+
"TravisCI",
38+
"VisualStudio",
39+
"VSCode"
40+
]
41+
},
42+
"IgnoreFailedSources": {
43+
"type":"boolean",
44+
"description":"Ignore unreachable sources during Restore"
45+
},
46+
"NoLogo": {
47+
"type":"boolean",
48+
"description":"Disables displaying the NUKE logo"
49+
},
50+
"Partition": {
51+
"type":"string",
52+
"description":"Partition to use on CI"
53+
},
54+
"Plan": {
55+
"type":"boolean",
56+
"description":"Shows the execution plan (HTML)"
57+
},
58+
"Profile": {
59+
"type":"array",
60+
"description":"Defines the profiles to load",
61+
"items": {
62+
"type":"string"
63+
}
64+
},
65+
"PublicNuGetApiKey": {
66+
"type":"string",
67+
"default":"Secrets must be entered via 'nuke :secrets [profile]'"
68+
},
69+
"Root": {
70+
"type":"string",
71+
"description":"Root directory during build execution"
72+
},
73+
"Skip": {
74+
"type":"array",
75+
"description":"List of targets to be skipped. Empty list skips all dependencies",
76+
"items": {
77+
"type":"string",
78+
"enum": [
79+
"Clean",
80+
"Compile",
81+
"Pack",
82+
"Publish",
83+
"ReportCoverage",
84+
"ReportDuplicates",
85+
"ReportIssues",
86+
"Restore",
87+
"Test"
88+
]
89+
}
90+
},
91+
"Solution": {
92+
"type":"string",
93+
"description":"Path to a solution file that is automatically loaded"
94+
},
95+
"Target": {
96+
"type":"array",
97+
"description":"List of targets to be invoked. Default is '{default_target}'",
98+
"items": {
99+
"type":"string",
100+
"enum": [
101+
"Clean",
102+
"Compile",
103+
"Pack",
104+
"Publish",
105+
"ReportCoverage",
106+
"ReportDuplicates",
107+
"ReportIssues",
108+
"Restore",
109+
"Test"
110+
]
111+
}
112+
},
113+
"Verbosity": {
114+
"type":"string",
115+
"description":"Logging verbosity during build execution. Default is 'Normal'",
116+
"enum": [
117+
"Minimal",
118+
"Normal",
119+
"Quiet",
120+
"Verbose"
121+
]
122+
}
123+
}
124+
}
125+
}
126+
}

‎.nuke/parameters.json‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema":"./build.schema.json",
3+
"Solution":"Glob.sln"
4+
}

‎ChangeLog.md‎renamed to ‎CHANGELOG.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1414

1515
###Updated
1616
- Improved performance from parser internals rework
17-
- Updated to .NET5.0
18-
17+
- Updated to .NET6.0
18+
1919
###Changed
2020
- Matching full path is now the default for Glob expressions, GlobOptions.MatchFilenameOnly
2121
can be used to work as before

‎Directory.Build.props‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<ProjectToolsVersion="Current"xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<PackageReferenceInclude="Nerdbank.GitVersioning"Condition="!Exists('packages.config')">
5+
<Version>3.5.119</Version>
6+
<PrivateAssets>all</PrivateAssets>
7+
</PackageReference>
8+
</ItemGroup>
9+
<PropertyGroup>
10+
<TargetFramework>net6.0</TargetFramework>
11+
<LangVersion>latest</LangVersion>
12+
<Nullable>enable</Nullable>
13+
</PropertyGroup>
14+
</Project>

‎GitVersion.yml‎

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

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp