Skip to content

Commit 26fd956

Browse files
committed
2 parents fa96f9a + 607bf6c commit 26fd956

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ You can add the package for example with the following `dotnet` command:
1616
dotnet add package CZ.AspNetCore.EasyAuthAuthentication
1717
```
1818

19-
Pre-releases of this Package are pushed to an internal <a href="https://dev.azure.com/czon/CZ.AspNetCore.EasyAuthAuthentication/_packaging?_a=feed&feed=CZ.AspNetCore.EasyAuthAuthentication" target="_blank">feed an Azure DevOps</a>.
19+
Pre-releases of this Package are pushed to an internal <a href="https://dev.azure.com/czon/CZ.AspNetCore.EasyAuthAuthentication/_artifacts/feed/czon" target="_blank">feed an Azure DevOps</a>.
2020

21-
There are also access to packages from pull requests in another <a href="https://dev.azure.com/czon/CZ.AspNetCore.EasyAuthAuthentication/_packaging?_a=feed&feed=CZ.AspNetCore.EasyAuthAuthentication-PR" target="_blank">Azure DevOps feed</a>. All Packages in this feed has a name like this: `PR-{pull request number}-CZ.AspNetCore.EasyAuthAuthentication`. So you must only pick the package of your PR to check your changes in a test project. All changes of the pull request are tracked in the pull request package version history.
21+
There are also access to packages from pull requests in another <a href="https://dev.azure.com/czon/CZ.AspNetCore.EasyAuthAuthentication/_artifacts/feed/czon-pr" target="_blank">Azure DevOps feed</a>. All Packages in this feed has a name like this: `PR-{pull request number}-CZ.AspNetCore.EasyAuthAuthentication`. So you must only pick the package of your PR to check your changes in a test project. All changes of the pull request are tracked in the pull request package version history.
2222

2323
## Build
2424

pipelines/CZ.AspNetCore.EasyAuthAuthentication.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pr:
1010
autoCancel: true
1111
branches:
1212
include:
13-
- master
13+
- '*'
1414

1515
pool:
1616
vmImage: 'windows-latest'
@@ -36,7 +36,9 @@ stages:
3636
displayName: 'Install dotnet core SDK'
3737
inputs:
3838
packageType: 'sdk'
39-
useGlobalJson: true
39+
# because use global json currently takes always the defined version
40+
# and ignores the `rollForward` flag we fall back to this:
41+
version: 3.1.x
4042

4143
- task: DotNetCoreCLI@2
4244
displayName: 'Install GitVersion: $(GitVersion)'
@@ -64,7 +66,7 @@ stages:
6466
inputs:
6567
command: 'build'
6668
projects: '$(Project)'
67-
arguments: '--configuration $(buildConfiguration) --no-restore'
69+
arguments: '--configuration $(buildConfiguration) --no-restore /p:ContinuousIntegrationBuild=true'
6870

6971
- task: DotNetCoreCLI@2
7072
displayName: 'Test'

pipelines/templates/NuGet.Pack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ steps:
1616
packagesToPack: '$(Project)'
1717
nobuild: true
1818
arguments: '--configuration $(buildConfiguration) --no-restore'
19-
buildProperties: '${{ parameters.buildProperties }}'
19+
buildProperties: '${{ parameters.buildProperties }};ContinuousIntegrationBuild=true'
2020
packDirectory: '$(Build.ArtifactStagingDirectory)'
2121
verbosityPack: Normal

0 commit comments

Comments
 (0)