summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-05-24 14:34:46 -0700
committerwtgodbe <wigodbe@microsoft.com>2017-06-06 12:13:34 -0700
commit029a54431d17569b6656ed644de426d3f4f8d346 (patch)
treefb6fc79ab6ee5e154a9516ab3ae063b335c0116b /src
parent794eca076a882fcd2639fa692ca457150940231b (diff)
downloadcoreclr-029a54431d17569b6656ed644de426d3f4f8d346.tar.gz
coreclr-029a54431d17569b6656ed644de426d3f4f8d346.tar.bz2
coreclr-029a54431d17569b6656ed644de426d3f4f8d346.zip
Test packages from current build in pipeline
Diffstat (limited to 'src')
-rw-r--r--src/createVersionFile.proj13
-rw-r--r--src/syncAzure.proj1
2 files changed, 14 insertions, 0 deletions
diff --git a/src/createVersionFile.proj b/src/createVersionFile.proj
new file mode 100644
index 0000000000..4edddc7118
--- /dev/null
+++ b/src/createVersionFile.proj
@@ -0,0 +1,13 @@
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+
+ <Import Project="..\dir.props" />
+ <Import Project="$(ToolsDir)versioning.targets" Condition="Exists('$(ToolsDir)versioning.targets')"/>
+
+ <PropertyGroup>
+ <VersionPropsImported>false</VersionPropsImported>
+ </PropertyGroup>
+
+ <Target Name="Build"
+ DependsOnTargets="CreateOrUpdateCurrentVersionFile">
+ </Target>
+</Project> \ No newline at end of file
diff --git a/src/syncAzure.proj b/src/syncAzure.proj
index a5bb4958a9..aeea48de9a 100644
--- a/src/syncAzure.proj
+++ b/src/syncAzure.proj
@@ -7,6 +7,7 @@
<ContainerName Condition="'$(__Container)' == '' and '$(ContainerNamePrefix)' != '' and '$(BuildNumberMajor)' != '' and '$(BuildNumberMinor)' != ''">$(ContainerNamePrefix)-$(BuildNumberMajor)-$(BuildNumberMinor)</ContainerName>
<ContainerName Condition="'$(__Container)' != ''">$(__Container)</ContainerName>
<ContainerName>$(ContainerName.Replace(".","-"))</ContainerName>
+ <BlobNamePrefix>$(__BlobNamePrefix)</BlobNamePrefix>
<DownloadDirectory Condition="'$(PublishTestNativeBins)' != 'true'">$(PackagesDir)AzureTransfer</DownloadDirectory>
<DownloadDirectory Condition="'$(PublishTestNativeBins)' == 'true'">$(PackagesDir)TestNativeBins\$(RuntimeId)</DownloadDirectory>
</PropertyGroup>