Browse Source

Add 'dotnet/azure-pipelines.yml'

天问 2 years ago
parent
commit
cf426be29d
1 changed files with 46 additions and 0 deletions
  1. 46 0
      dotnet/azure-pipelines.yml

+ 46 - 0
dotnet/azure-pipelines.yml

@@ -0,0 +1,46 @@
+# Universal Windows Platform
+# Build a Universal Windows Platform project using Visual Studio.
+# Add steps that test and distribute an app, save build artifacts, and more:
+# https://aka.ms/yaml
+
+trigger:
+- master
+
+pool:
+  vmImage: 'windows-latest'
+
+variables:
+  buildPlatform: 'x86'
+  buildConfiguration: 'Release'
+  appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
+
+steps:
+- task: VSBuild@1
+  inputs:
+    platform: 'x86'
+    solution: '.\BGTask\BGTask.sln'
+    configuration: '$(buildConfiguration)'
+    msbuildArgs: '/restore /p:Platform=x86 /p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:AppxPackageSigningEnabled=false /p:UapAppxPackageBuildMode=StoreUpload'
+
+- task: VSBuild@1
+  inputs:
+    platform: 'x86'
+    solution: '.\OfficeInterop\OfficeInterop.sln'
+    configuration: '$(buildConfiguration)'
+    msbuildArgs: '/restore /p:Platform=x86 /p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:AppxPackageSigningEnabled=false /p:UapAppxPackageBuildMode=StoreUpload'
+
+- task: VSBuild@1
+  inputs:
+    platform: 'x86'
+    solution: '.\ShareTarget\ShareTarget.sln'
+    configuration: '$(buildConfiguration)'
+    msbuildArgs: '/restore /p:Platform=x86 /p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:AppxPackageSigningEnabled=false /p:UapAppxPackageBuildMode=StoreUpload'
+
+- task: VSBuild@1
+  inputs:
+    platform: 'x86'
+    solution: '.\WinRT\WinRT.sln'
+    configuration: '$(buildConfiguration)'
+    msbuildArgs: '/restore /p:Platform=x86 /p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:AppxPackageSigningEnabled=false /p:UapAppxPackageBuildMode=StoreUpload'
+
+