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

Commit d4606fe

Browse files
author
Nate McMaster
committed
Bump version, update build tools, and dependency versions
1 parent b0362da commit d4606fe

File tree

7 files changed

+22
-10
lines changed

7 files changed

+22
-10
lines changed

Directory.Build.props

Lines changed: 9 additions & 0 deletions
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

Lines changed: 4 additions & 2 deletions
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

Lines changed: 1 addition & 2 deletions
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
<MicrosoftExtensionsLoggingAbstractionsPackageVersion>2.0.0</MicrosoftExtensionsLoggingAbstractionsPackageVersion>
1111
<MicrosoftExtensionsLoggingTestingPackageVersion>2.0.0</MicrosoftExtensionsLoggingTestingPackageVersion>
1212
<MicrosoftExtensionsPrimitivesPackageVersion>2.0.0</MicrosoftExtensionsPrimitivesPackageVersion>
13+
<MicrosoftNETCoreApp20PackageVersion>2.0.5</MicrosoftNETCoreApp20PackageVersion>
1314
<MicrosoftNETTestSdkPackageVersion>15.3.0</MicrosoftNETTestSdkPackageVersion>
15+
<NETStandardLibrary20PackageVersion>2.0.1</NETStandardLibrary20PackageVersion>
1416
<XunitPackageVersion>2.3.0-beta2-build3683</XunitPackageVersion>
1517
<XunitRunnerVisualStudioPackageVersion>2.3.0-beta2-build1317</XunitRunnerVisualStudioPackageVersion>
1618
</PropertyGroup>

korebuild-lock.txt

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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)