mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-27 20:02:15 +00:00
specify publish release + check for workload installation location
This commit is contained in:
parent
5eaf07b2e8
commit
f1ecbf2a72
2 changed files with 12 additions and 0 deletions
|
|
@ -49,6 +49,7 @@
|
|||
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\OnnxRuntime.snk</AssemblyOriginatorKeyFile>
|
||||
<PublishRelease>true</PublishRelease>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
|||
|
|
@ -43,6 +43,17 @@ stages:
|
|||
dotnet workload install maui maui-android android
|
||||
workingDirectory: '$(Build.SourcesDirectory)\csharp'
|
||||
|
||||
- task: PowerShell@2
|
||||
displayName: List installed workloads
|
||||
inputs:
|
||||
targetType: 'inline'
|
||||
script: |
|
||||
$output = dotnet --list-sdks
|
||||
Write-Output $output
|
||||
$output1 = dotnet workload list
|
||||
Write-Output $output1
|
||||
workingDirectory: '$(Build.SourcesDirectory)\csharp'
|
||||
|
||||
- task: PowerShell@2
|
||||
displayName: Generating MAUI keystore
|
||||
inputs:
|
||||
|
|
|
|||
Loading…
Reference in a new issue