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 56e3fba commit 58b25acCopy full SHA for 58b25ac
.azure/pipelines/azure-pipelines.yml
@@ -0,0 +1,16 @@
1
+pool:
2
+ vmImage: 'ubuntu-latest'
3
+
4
+steps:
5
+- task: UseDotNet@2
6
+ inputs:
7
+ packageType: 'sdk'
8
+ version: '5.0.x'
9
10
+- script: |
11
+ dotnet build EntityFrameworkCore.DataEncryption.sln --configuration Release
12
+ displayName: 'Build'
13
14
15
+ dotnet test EntityFrameworkCore.DataEncryption.sln --configuration Release
16
+ displayName: 'Test'
0 commit comments