Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Perez Rodriguez <joperezr@microsoft.com>2016-08-18 00:52:33 +0300
committerGitHub <noreply@github.com>2016-08-18 00:52:33 +0300
commit56ddab3bc5e4d1d3487ebdb3ce60aea8ba9d8598 (patch)
tree0a64f56cc4bcdeefe9e140fc8b5b7b4c8819a801 /dir.props
parent5ef30c10f91dd356ff553f3529278f4427cf9252 (diff)
parentfdc7fee28235a57411590d9d79183a3b0e6b6b88 (diff)
Merge pull request #10929 from joperezr/MergeMaster
Merge branch master -> dev/api
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props46
1 files changed, 42 insertions, 4 deletions
diff --git a/dir.props b/dir.props
index ce5b397ee1..44e12a67cd 100644
--- a/dir.props
+++ b/dir.props
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Condition="Exists('..\dir.props')" Project="..\dir.props" />
@@ -18,7 +18,7 @@
</PropertyGroup>
<PropertyGroup>
- <XunitPerfAnalysisPackageVersion>1.0.0-alpha-build0037</XunitPerfAnalysisPackageVersion>
+ <XunitPerfAnalysisPackageVersion>1.0.0-alpha-build0039</XunitPerfAnalysisPackageVersion>
</PropertyGroup>
<PropertyGroup>
@@ -105,10 +105,41 @@
<ExternalExpectedPrerelease>beta-24415-00</ExternalExpectedPrerelease>
<CoreFxVersionsIdentityRegex>^(?i)(((System\..*)(?&lt;!System\.ServiceModel\..*))|(NETStandard\.Library)|(Microsoft\.CSharp)|(Microsoft\.NETCore\.Targets)|(Microsoft\.NETCore\.Platforms)|(Microsoft\.Win32\..*)|(Microsoft\.VisualBasic))(?&lt;!TestData)$</CoreFxVersionsIdentityRegex>
+ <BaseDotNetBuildInfoUrl>https://raw.githubusercontent.com/dotnet/versions/master/build-info/dotnet/</BaseDotNetBuildInfoUrl>
+ <DependencyBranch>master</DependencyBranch>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)pkg/ExternalPackages/versions.props" Condition="Exists('$(MSBuildThisFileDirectory)pkg/ExternalPackages/versions.props')" />
+ <!-- Dependency auto-upgrade configuration -->
+ <ItemGroup>
+ <DependencyBuildInfo Include="CoreFx">
+ <RawUrl>$(BaseDotNetBuildInfoUrl)corefx/$(DependencyBranch)</RawUrl>
+ </DependencyBuildInfo>
+ <DependencyBuildInfo Include="CoreClr">
+ <RawUrl>$(BaseDotNetBuildInfoUrl)coreclr/$(DependencyBranch)</RawUrl>
+ </DependencyBuildInfo>
+ <DependencyBuildInfo Include="External">
+ <RawUrl>$(BaseDotNetBuildInfoUrl)projectk-tfs/$(DependencyBranch)</RawUrl>
+ </DependencyBuildInfo>
+
+ <XmlUpdateStep Include="CoreFx">
+ <Path>$(MSBuildThisFileFullPath)</Path>
+ <ElementName>CoreFxExpectedPrerelease</ElementName>
+ <BuildInfoName>CoreFx</BuildInfoName>
+ </XmlUpdateStep>
+ <XmlUpdateStep Include="CoreClr">
+ <Path>$(MSBuildThisFileFullPath)</Path>
+ <ElementName>CoreClrExpectedPrerelease</ElementName>
+ <BuildInfoName>CoreClr</BuildInfoName>
+ </XmlUpdateStep>
+ <XmlUpdateStep Include="External">
+ <Path>$(MSBuildThisFileFullPath)</Path>
+ <ElementName>ExternalExpectedPrerelease</ElementName>
+ <BuildInfoName>External</BuildInfoName>
+ </XmlUpdateStep>
+ </ItemGroup>
+
<ItemGroup>
<ValidationPattern Include="CoreFxVersions">
<IdentityRegex>$(CoreFxVersionsIdentityRegex)</IdentityRegex>
@@ -136,11 +167,11 @@
</ValidationPattern>
<ValidationPattern Include="xUnitExtensionsVersions">
<IdentityRegex>^(?i)Microsoft\.xunit\.netcore\.extensions$</IdentityRegex>
- <ExpectedVersion>1.0.0-prerelease-00508-01</ExpectedVersion>
+ <ExpectedVersion>1.0.0-prerelease-00704-03</ExpectedVersion>
</ValidationPattern>
<ValidationPattern Include="buildToolsTestSuiteVersions">
<IdentityRegex>^(?i)Microsoft\.DotNet\.BuildTools\.TestSuite$</IdentityRegex>
- <ExpectedVersion>1.0.0-prerelease-00520-02</ExpectedVersion>
+ <ExpectedVersion>1.0.0-prerelease-00704-03</ExpectedVersion>
</ValidationPattern>
<ValidationPattern Include="uwpRunnerVersion">
<IdentityRegex>^(?i)microsoft\.xunit\.runner\.uwp$</IdentityRegex>
@@ -293,6 +324,7 @@
<TargetGroup Condition="'$(TargetGroup)'=='' and $(Configuration.Contains('netstandard15aot'))">netstandard15aot</TargetGroup>
<TargetGroup Condition="'$(TargetGroup)'=='' and $(Configuration.Contains('netcore50'))">netcore50</TargetGroup>
<TargetGroup Condition="'$(TargetGroup)'=='' and $(Configuration.Contains('netcoreapp1.0'))">netcoreapp1.0</TargetGroup>
+ <TargetGroup Condition="'$(TargetGroup)'=='' and $(Configuration.Contains('netcoreapp1.1'))">netcoreapp1.1</TargetGroup>
<TargetGroup Condition="'$(TargetGroup)'=='' and $(Configuration.Contains('dnxcore50'))">dnxcore50</TargetGroup>
<TargetGroup Condition="'$(TargetGroup)'=='' and $(Configuration.Contains('net463'))">net463</TargetGroup>
<TargetGroup Condition="'$(TargetGroup)'=='' and $(Configuration.Contains('net462'))">net462</TargetGroup>
@@ -481,6 +513,12 @@
<NuGetTargetMoniker>.NETCoreApp,Version=v1.0</NuGetTargetMoniker>
</PropertyGroup>
</When>
+ <When Condition="'$(TargetGroup)'=='netcoreapp1.1'">
+ <PropertyGroup>
+ <PackageTargetFramework>netcoreapp1.1</PackageTargetFramework>
+ <NuGetTargetMoniker>.NETCoreApp,Version=v1.1</NuGetTargetMoniker>
+ </PropertyGroup>
+ </When>
<When Condition="'$(TargetGroup)'=='dnxcore50'">
<PropertyGroup>
<ConfigurationErrorMsg>$(ConfigurationErrorMsg);DNXCore50 has been deprecated. Please use NETStandard1.X or NETCoreApp1.0 instead.</ConfigurationErrorMsg>