mirror of
https://github.com/microsoft/DirectXTex.git
synced 2025-07-09 11:40:14 +02:00
Fix pipeline warnings (#466)
This commit is contained in:
parent
ceade44724
commit
b8f6330f53
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<configuration>
|
|
||||||
<config>
|
|
||||||
<add key="repositoryPath" value=".\packages" />
|
|
||||||
</config>
|
|
||||||
</configuration>
|
|
@ -30,6 +30,7 @@ variables:
|
|||||||
GDK_EDITION: $(GDKEditionNumber)
|
GDK_EDITION: $(GDKEditionNumber)
|
||||||
URL_FEED: $(ADOFeedURL)
|
URL_FEED: $(ADOFeedURL)
|
||||||
GameDKLatest: '$(ExtractedFolder)\GDK\Microsoft.gdk.xbox.$(GDKEditionNumber)\native\$(GDKEditionNumber)\'
|
GameDKLatest: '$(ExtractedFolder)\GDK\Microsoft.gdk.xbox.$(GDKEditionNumber)\native\$(GDKEditionNumber)\'
|
||||||
|
skipNugetSecurityAnalysis: true # We explicitly call this task so we don't need it to be auto-injected
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: windows-2022
|
vmImage: windows-2022
|
||||||
@ -45,23 +46,29 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
||||||
displayName: 'NuGet set package source to ADO feed'
|
displayName: 'NuGet set package source to ADO feed'
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet install PGDK
|
displayName: NuGet install PGDK
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -43,6 +43,7 @@ variables:
|
|||||||
GDK_EDITION: $(GDKEditionNumber)
|
GDK_EDITION: $(GDKEditionNumber)
|
||||||
URL_FEED: $(ADOFeedURL)
|
URL_FEED: $(ADOFeedURL)
|
||||||
GameDKLatest: '$(ExtractedFolder)\GDK\Microsoft.gdk.xbox.$(GDKEditionNumber)\native\$(GDKEditionNumber)\'
|
GameDKLatest: '$(ExtractedFolder)\GDK\Microsoft.gdk.xbox.$(GDKEditionNumber)\native\$(GDKEditionNumber)\'
|
||||||
|
skipNugetSecurityAnalysis: true # We explicitly call this task so we don't need it to be auto-injected
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: windows-2019
|
vmImage: windows-2019
|
||||||
@ -58,23 +59,29 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
||||||
displayName: 'NuGet set package source to ADO feed'
|
displayName: 'NuGet set package source to ADO feed'
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet install PGDK
|
displayName: NuGet install PGDK
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -32,6 +32,7 @@ variables:
|
|||||||
GDKEnableBWOI: true
|
GDKEnableBWOI: true
|
||||||
GITHUB_PAT: $(GITHUBPUBLICTOKEN)
|
GITHUB_PAT: $(GITHUBPUBLICTOKEN)
|
||||||
URL_FEED: $(ADOFeedURL)
|
URL_FEED: $(ADOFeedURL)
|
||||||
|
skipNugetSecurityAnalysis: true # We explicitly call this task so we don't need it to be auto-injected
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: BUILD_GDK
|
- job: BUILD_GDK
|
||||||
@ -46,23 +47,29 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
||||||
displayName: 'NuGet set package source to ADO feed'
|
displayName: 'NuGet set package source to ADO feed'
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet install PGDK
|
displayName: NuGet install PGDK
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -53,6 +53,7 @@ variables:
|
|||||||
GDKEnableBWOI: true
|
GDKEnableBWOI: true
|
||||||
GITHUB_PAT: $(GITHUBPUBLICTOKEN)
|
GITHUB_PAT: $(GITHUBPUBLICTOKEN)
|
||||||
URL_FEED: $(ADOFeedURL)
|
URL_FEED: $(ADOFeedURL)
|
||||||
|
skipNugetSecurityAnalysis: true # We explicitly call this task so we don't need it to be auto-injected
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: BUILD_GDK
|
- job: BUILD_GDK
|
||||||
@ -67,23 +68,29 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
||||||
displayName: 'NuGet set package source to ADO feed'
|
displayName: 'NuGet set package source to ADO feed'
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet install PGDK
|
displayName: NuGet install PGDK
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -28,6 +28,7 @@ variables:
|
|||||||
EXTRACTED_FOLDER: $(ExtractedFolder)
|
EXTRACTED_FOLDER: $(ExtractedFolder)
|
||||||
WSDKEnableBWOI: true
|
WSDKEnableBWOI: true
|
||||||
URL_FEED: $(ADOFeedURL)
|
URL_FEED: $(ADOFeedURL)
|
||||||
|
skipNugetSecurityAnalysis: true # We explicitly call this task so we don't need it to be auto-injected
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: windows-2022
|
vmImage: windows-2022
|
||||||
@ -45,23 +46,29 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
||||||
displayName: 'NuGet set package source to ADO feed'
|
displayName: 'NuGet set package source to ADO feed'
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet Install WSDK x64
|
displayName: NuGet Install WSDK x64
|
||||||
inputs:
|
inputs:
|
||||||
@ -166,22 +173,28 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet set package source to ADO feed
|
displayName: NuGet set package source to ADO feed
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet Install WSDK x64
|
displayName: NuGet Install WSDK x64
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -28,6 +28,7 @@ variables:
|
|||||||
EXTRACTED_FOLDER: $(ExtractedFolder)
|
EXTRACTED_FOLDER: $(ExtractedFolder)
|
||||||
WSDKEnableBWOI: true
|
WSDKEnableBWOI: true
|
||||||
URL_FEED: $(ADOFeedURL)
|
URL_FEED: $(ADOFeedURL)
|
||||||
|
skipNugetSecurityAnalysis: true # We explicitly call this task so we don't need it to be auto-injected
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: windows-2022
|
vmImage: windows-2022
|
||||||
@ -45,23 +46,29 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
# We have to use a nuget.config to provide the feed for the 'nuget install' option.
|
||||||
displayName: 'NuGet set package source to ADO feed'
|
displayName: 'NuGet set package source to ADO feed'
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet Install WSDK x64
|
displayName: NuGet Install WSDK x64
|
||||||
inputs:
|
inputs:
|
||||||
@ -166,22 +173,28 @@ jobs:
|
|||||||
displayName: 'Use NuGet'
|
displayName: 'Use NuGet'
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '6.5.x'
|
versionSpec: '6.5.x'
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Create nuget.config with single source'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
$xml = @'
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
'@
|
||||||
|
$xml | Set-Content -Path "$(Build.SourcesDirectory)\NuGet.config"
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet set package source to ADO feed
|
displayName: NuGet set package source to ADO feed
|
||||||
inputs:
|
inputs:
|
||||||
command: custom
|
command: custom
|
||||||
arguments: sources add -Name xboxgdk-DirectXTex -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
arguments: sources add -Name xboxgdk -Source $(URL_FEED) -ConfigFile $(Build.SourcesDirectory)\NuGet.config
|
||||||
- task: PowerShell@2
|
- task: nuget-security-analysis@0
|
||||||
displayName: 'Set nuget.config to single source'
|
displayName: 'Secure Supply Chain Analysis'
|
||||||
inputs:
|
|
||||||
targetType: inline
|
|
||||||
script: |
|
|
||||||
$file = '.\NuGet.Config'
|
|
||||||
$doc = [xml](Get-Content $file)
|
|
||||||
$newelement = $doc.CreateElement("clear")
|
|
||||||
$clearadd = $doc.configuration.packageSources.PrependChild($newelement)
|
|
||||||
$doc.OuterXml | Set-Content $file
|
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
displayName: NuGet Install WSDK x64
|
displayName: NuGet Install WSDK x64
|
||||||
inputs:
|
inputs:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user