我正在尝试使用天蓝色管道构建我的UWP应用。 我的UWP项目由多个C#项目和一个C ++项目组成。 C#部分的构建很好(引用C ++项目的人除外),但我没有构建C ++项目。
它失败并显示:
2018-10-28T15:01:04.7827636Z ##[error]XMPP_API\Classes\Crypto\Aes128GcmCpp.cs(11,26): Error CS0246: The type or namespace name 'AES_GCM' could not be found (are you missing a using directive or an assembly reference?)
我知道我必须构建一个C ++项目,该项目在引用C#项目的C#项目之前提供AES_GCM
名称空间,但是我该如何实现呢?
Link到示例构建失败
我的azure-pipelines.yml
:
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: '**/*.sln'
buildPlatform: 'x86|x64|ARM'
buildConfiguration: 'Release'
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\'
steps:
- task: NuGetToolInstaller@0
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
platform: 'x86'
solution: '$(solution)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'