Skip to content
Open
11 changes: 6 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ steps:
inputs:
targetType: inline
script: |
New-Item -Path . -Name "JenkinsSdkSetupScripts" -ItemType "directory"
New-Item -Path . -Name "sdks" -ItemType "directory"
New-Item -Path . -Name "SDKGenerator" -ItemType "directory"
New-Item -Path . -Name "API_Specs" -ItemType "directory"
New-Item -Path . -Name "JenkinsSdkSetupScripts" -ItemType "directory" # Equals "self"
New-Item -Path . -Name "sdks" -ItemType "directory" # Equals "self"
New-Item -Path . -Name "SDKGenerator" -ItemType "directory" # Equals "self"
New-Item -Path . -Name "API_Specs" -ItemType "directory" # Equals "self"
ls
cd sdks
New-Item -Path . -Name "CSharpSDK" -ItemType "directory"
New-Item -Path . -Name "CSharpSDK" -ItemType "directory" # Equals "self"
pwsh: true

- checkout: self
Expand Down Expand Up @@ -131,4 +131,5 @@ steps:
echo START .Net4.5 UNIT TEST RUNNER
echo windows script testing this var $PF_TEST_TITLE_DATA_JSON
cmd <<< UnitTestRunner.exe -testInputsFile '$PF_TEST_TITLE_DATA_JSON'
echo lol this should be done now
displayName: 'dotNet 45 CSharpSDK UnitTestRunner'