Skip to content

Commit ff2ec4c

Browse files
Merge pull request #979 from App-vNext/undo-syntax-changes
Merge v724-or-v730 to default branch
2 parents b4f6058 + 1073e82 commit ff2ec4c

File tree

318 files changed

+7409
-7061
lines changed

Some content is hidden

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

318 files changed

+7409
-7061
lines changed

.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.0.0",
7+
"commands": [
8+
"dotnet-cake"
9+
]
10+
}
11+
}
12+
}

.git-blame-ignore-revs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Use file-scoped namespaces
2+
a450cb69b5e4549f5515cdb057a68771f56cefd7
3+
e32730600746b479db0241826b9bdef8eec9bb28
4+
63b151ebc191ef35df9e3f29584ca94ec5d7c792

.github/workflows/build.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
name: ${{ matrix.os }}
13+
runs-on: ${{ matrix.os }}
14+
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os: [ windows-latest ]
19+
include:
20+
#- os: macos-latest
21+
# os_name: macos
22+
#- os: ubuntu-latest
23+
# os_name: linux
24+
- os: windows-latest
25+
os_name: windows
26+
27+
steps:
28+
29+
- name: Checkout code
30+
uses: actions/checkout@v3
31+
32+
- name: Setup .NET SDK
33+
uses: actions/setup-dotnet@v3
34+
35+
- name: Build, Test and Package
36+
shell: pwsh
37+
run: ./build.ps1
38+
env:
39+
DOTNET_CLI_TELEMETRY_OPTOUT: true
40+
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
41+
DOTNET_NOLOGO: true
42+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
43+
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1
44+
NUGET_XMLDOC_MODE: skip
45+
TERM: xterm
46+
47+
- name: Publish NuGet packages
48+
uses: actions/upload-artifact@v3
49+
with:
50+
name: packages-${{ matrix.os_name }}
51+
path: ./artifacts/nuget-package

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ TestResults
1313
*.user
1414
*.sln.docstates
1515
.vs/
16-
.vscode/
1716
.idea/
1817
.ionide/
1918

@@ -123,4 +122,5 @@ tools
123122

124123
*.lock.json
125124
*.nuget.targets
126-
*.nuget.props
125+
*.nuget.props
126+
coverage.*.json

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"EditorConfig.EditorConfig",
4+
"k--kato.docomment",
5+
"ms-dotnettools.csharp"
6+
]
7+
}

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Run tests",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build",
9+
"program": "dotnet",
10+
"args": [
11+
"test"
12+
],
13+
"cwd": "${workspaceFolder}/src/Polly.Specs",
14+
"console": "internalConsole",
15+
"stopAtEntry": false,
16+
"internalConsoleOptions": "openOnSessionStart"
17+
}
18+
]
19+
}

.vscode/tasks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet build ./src/Polly.sln",
7+
"type": "shell",
8+
"group": "build",
9+
"presentation": {
10+
"reveal": "silent"
11+
},
12+
"problemMatcher": "$msCompile"
13+
}
14+
]
15+
}

GitVersionConfig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
next-version: 7.3.0
1+
next-version: 7.2.4

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ artifacts:
1212
- path: artifacts\nuget-package\*.snupkg
1313

1414
environment:
15-
# Skip dotnet package caching on build servers
16-
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
15+
DOTNET_CLI_TELEMETRY_OPTOUT: true
16+
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
17+
DOTNET_NOLOGO: true
18+
NUGET_XMLDOC_MODE: skip

build.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ PUSHD %~dp0
33
PowerShell.exe -NoProfile -ExecutionPolicy Bypass -Command "& './build.ps1'"
44

55
IF %errorlevel% neq 0 PAUSE
6-

0 commit comments

Comments
 (0)