Skip to content

Commit 8f8931e

Browse files
authored
Merge pull request #124 from Umplify/123-update-the-build-pipelines
Updated the pipelines
2 parents 80d56f1 + 9de5c6b commit 8f8931e

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed

.github/workflows/greetings.yml

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

azure-pipeline-PR.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,33 @@ steps:
1717
displayName: 'Use .NET 6.0 sdk'
1818
inputs:
1919
packageType: sdk
20-
version: 6.0.400
20+
version: 6.0.401
2121
installationPath: $(Agent.ToolsDirectory)/dotnet
2222
- script: echo Started restoring the source code
2323
- task: DotNetCoreCLI@2
2424
displayName: 'Restoring'
2525
inputs:
2626
command: 'restore'
27-
projects: '**/Xunit.Microsoft.DependencyInjection.csproj'
27+
projects: |
28+
**/Xunit.Microsoft.DependencyInjection.csproj
29+
**/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Xunit.Microsoft.DependencyInjection.ExampleTests.csproj
2830
feedsToUse: 'select'
2931
- script: echo Started building the source code
3032
- task: DotNetCoreCLI@2
3133
displayName: 'Building'
3234
inputs:
3335
command: 'build'
34-
projects: '**/Xunit.Microsoft.DependencyInjection.csproj'
36+
projects: |
37+
**/Xunit.Microsoft.DependencyInjection.csproj
38+
**/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Xunit.Microsoft.DependencyInjection.ExampleTests.csproj
3539
arguments: '--configuration $(BuildConfiguration)'
3640
- task: NuGetCommand@2
3741
displayName: 'Packing'
3842
inputs:
3943
command: 'pack'
40-
packagesToPack: '**/Xunit.Microsoft.DependencyInjection.csproj'
44+
packagesToPack: |
45+
**/Xunit.Microsoft.DependencyInjection.csproj
46+
**/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Xunit.Microsoft.DependencyInjection.ExampleTests.csproj
4147
versioningScheme: 'byEnvVar'
4248
versionEnvVar: 'Build.BuildNumber'
4349

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
displayName: 'Use .NET 6.0 sdk'
2020
inputs:
2121
packageType: sdk
22-
version: 6.0.400
22+
version: 6.0.401
2323
installationPath: $(Agent.ToolsDirectory)/dotnet
2424
- script: echo Started restoring the source code
2525
- task: DotNetCoreCLI@2

0 commit comments

Comments
 (0)