diff --git a/src/Framework/src/Microsoft.AspNetCore.App.Runtime.csproj b/src/Framework/src/Microsoft.AspNetCore.App.Runtime.csproj
index 72d99ee575..3451584734 100644
--- a/src/Framework/src/Microsoft.AspNetCore.App.Runtime.csproj
+++ b/src/Framework/src/Microsoft.AspNetCore.App.Runtime.csproj
@@ -67,7 +67,8 @@ This package is an internal implementation of the .NET Core SDK and is not meant
$(IntermediateOutputPath)ignoreme.dev.runtimeconfig.json
- $(IntermediateOutputPath)$(SharedFxName).versions.txt
+ $(IntermediateOutputPath)$(SharedFxName).versions.txt
+ $(IntermediateOutputPath).version
none
@@ -256,7 +257,12 @@ This package is an internal implementation of the .NET Core SDK and is not meant
+
+
@@ -397,7 +403,7 @@ This package is an internal implementation of the .NET Core SDK and is not meant
-
+
@@ -496,7 +502,7 @@ This package is an internal implementation of the .NET Core SDK and is not meant
BeforeTargets="_GetPackageFiles">
-
+
diff --git a/src/Framework/test/SharedFxTests.cs b/src/Framework/test/SharedFxTests.cs
index 558fc34439..2fc09b96b0 100644
--- a/src/Framework/test/SharedFxTests.cs
+++ b/src/Framework/test/SharedFxTests.cs
@@ -131,7 +131,7 @@ namespace Microsoft.AspNetCore
[Fact]
public void ItContainsVersionFile()
{
- var versionFile = Path.Combine(_sharedFxRoot, "Microsoft.AspNetCore.App.versions.txt");
+ var versionFile = Path.Combine(_sharedFxRoot, ".version");
AssertEx.FileExists(versionFile);
var lines = File.ReadAllLines(versionFile);
Assert.Equal(2, lines.Length);