diff --git a/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj b/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj
index 9103295f3..75d5c89f0 100644
--- a/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj
+++ b/TestAssets/TestProjects/MSBuildTestApp/MSBuildTestApp.csproj
@@ -17,7 +17,7 @@
1.0.1
- 1.0.0-alpha-20161006-3
+ 1.0.0-alpha-20161007-1
diff --git a/TestAssets/TestProjects/VSTestDotNetCoreProject/VSTestDotNetCoreProject.csproj b/TestAssets/TestProjects/VSTestDotNetCoreProject/VSTestDotNetCoreProject.csproj
index f4fa033eb..22c3f3a0e 100644
--- a/TestAssets/TestProjects/VSTestDotNetCoreProject/VSTestDotNetCoreProject.csproj
+++ b/TestAssets/TestProjects/VSTestDotNetCoreProject/VSTestDotNetCoreProject.csproj
@@ -4,9 +4,8 @@
Library
- .NETCoreApp
- v1.0
- bin\$(Configuration)\netcoreapp1.0
+ netcoreapp1.0
+ bin\$(Configuration)
@@ -14,6 +13,21 @@
+
+
+ 1.0.1
+
+
+ 1.0.0-alpha-20161007-1
+
+
+ 1.0.3-preview
+
+
+ 1.0.4-preview
+
+
+
diff --git a/TestAssets/TestProjects/VSTestDotNetCoreProject/project.json b/TestAssets/TestProjects/VSTestDotNetCoreProject/project.json
deleted file mode 100644
index ce2590081..000000000
--- a/TestAssets/TestProjects/VSTestDotNetCoreProject/project.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "dependencies": {
- "MSTest.TestAdapter": "1.0.3-preview",
- "MSTest.TestFramework": "1.0.1-preview"
- },
- "frameworks": {
- "netcoreapp1.0": {
- "dependencies": {
- "Microsoft.NETCore.Sdk": "1.0.0-alpha-20161006-3",
- "Microsoft.NETCore.App": {
- "version": "1.0.1",
- "type": "platform"
- }
- },
- "imports": [
- "dnxcore50",
- "portable-net45+win8"
- ]
- }
- }
-}
diff --git a/src/dotnet/commands/dotnet-new/CSharp_MSBuild/$projectName$.csproj b/src/dotnet/commands/dotnet-new/CSharp_MSBuild/$projectName$.csproj
index 41144d9bd..aadb3946a 100644
--- a/src/dotnet/commands/dotnet-new/CSharp_MSBuild/$projectName$.csproj
+++ b/src/dotnet/commands/dotnet-new/CSharp_MSBuild/$projectName$.csproj
@@ -17,7 +17,7 @@
1.0.1
- 1.0.0-alpha-20161006-3
+ 1.0.0-alpha-20161007-1
diff --git a/test/dotnet-vstest.Tests/VSTestTests.cs b/test/dotnet-vstest.Tests/VSTestTests.cs
index 4a3a9b61a..09fd80827 100644
--- a/test/dotnet-vstest.Tests/VSTestTests.cs
+++ b/test/dotnet-vstest.Tests/VSTestTests.cs
@@ -22,6 +22,12 @@ namespace Microsoft.DotNet.Cli.VSTest.Tests
string testProjectDirectory = testInstance.TestRoot;
+ new Restore3Command()
+ .WithWorkingDirectory(testProjectDirectory)
+ .Execute()
+ .Should()
+ .Pass();
+
// Build project DotNetCoreTestProject
new Build3Command()
.WithWorkingDirectory(testProjectDirectory)