We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5d98c commit aa6423aCopy full SHA for aa6423a
build.yml
@@ -9,8 +9,18 @@ parameters:
9
default: 'ap-southeast-1'
10
11
steps:
12
+- task: UseDotNet@2
13
+ displayName: 'Install .NET 10 Preview'
14
+ inputs:
15
+ packageType: 'sdk'
16
+ version: '10.0.x'
17
+ includePreviewVersions: true
18
- script: npm install -g aws-cdk
19
displayName: 'Install AWS CDK'
20
+- script: dotnet restore
21
+ displayName: 'Restore .NET packages'
22
+- script: dotnet build --no-restore -c Release
23
+ displayName: 'Build .NET projects'
24
- script: cd SimplePasswordManagerService.Infra && cdk synth
25
displayName: 'CDK Synth'
26
- task: Docker@2
0 commit comments