Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 022f96f

Browse files
author
Nate McMaster
committed
Bump version, update build tools, and dependency versions
1 parent 9cfc750 commit 022f96f

7 files changed

+22
-10
lines changed

Directory.Build.props

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project>
2+
<Import Project="version.props" />
3+
<Import Project="build\dependencies.props" />
4+
<Import Project="build\sources.props" />
5+
6+
<PropertyGroup>
7+
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
8+
</PropertyGroup>
9+
</Project>

Directory.Build.targets

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<Project>
2-
<Import Project="build\sources.props" />
3-
<Import Project="build\dependencies.props" />
2+
<PropertyGroup>
3+
<NETStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard2.0' ">$(NETStandardLibrary20PackageVersion)</NETStandardImplicitPackageVersion>
4+
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
5+
</PropertyGroup>
46
</Project>

build/common.props

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<Project>
2-
<Import Project="..\version.props" />
1+
<Project>
32

43
<PropertyGroup>
54
<Product>Microsoft ASP.NET Core</Product>

build/dependencies.props

+2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
<MicrosoftExtensionsOptionsPackageVersion>2.0.0</MicrosoftExtensionsOptionsPackageVersion>
1212
<MicrosoftExtensionsPrimitivesPackageVersion>2.0.0</MicrosoftExtensionsPrimitivesPackageVersion>
1313
<MicrosoftExtensionsWebEncodersSourcesPackageVersion>2.0.0</MicrosoftExtensionsWebEncodersSourcesPackageVersion>
14+
<MicrosoftNETCoreApp20PackageVersion>2.0.5</MicrosoftNETCoreApp20PackageVersion>
1415
<MicrosoftNETTestSdkPackageVersion>15.3.0</MicrosoftNETTestSdkPackageVersion>
16+
<NETStandardLibrary20PackageVersion>2.0.1</NETStandardLibrary20PackageVersion>
1517
<SystemBuffersPackageVersion>4.4.0</SystemBuffersPackageVersion>
1618
<SystemTextEncodingsWebPackageVersion>4.4.0</SystemTextEncodingsWebPackageVersion>
1719
<XunitPackageVersion>2.3.0-beta2-build3683</XunitPackageVersion>

korebuild-lock.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version:2.0.2-rc1-15526
2-
commithash:436afc3dc08f5e278431db807866cc5f032f4d7b
1+
version:2.0.5-rtm-10016
2+
commithash:02bda79ac9c564229da734a836f258d6c1321eb7

korebuild.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/rel/2.0.2/tools/korebuild.schema.json",
3-
"channel": "rel/2.0.2"
2+
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/release/2.0/tools/korebuild.schema.json",
3+
"channel": "release/2.0"
44
}

version.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project>
1+
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>2.0.1</VersionPrefix>
3+
<VersionPrefix>2.0.2</VersionPrefix>
44
<VersionSuffix>rtm</VersionSuffix>
55
<PackageVersion Condition="'$(IsFinalBuild)' == 'true' AND '$(VersionSuffix)' == 'rtm' ">$(VersionPrefix)</PackageVersion>
66
<PackageVersion Condition="'$(IsFinalBuild)' == 'true' AND '$(VersionSuffix)' != 'rtm' ">$(VersionPrefix)-$(VersionSuffix)-final</PackageVersion>

0 commit comments

Comments
 (0)