From 04de187189f019e0225b7fdaa81a1646886d9866 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Thu, 3 Jul 2014 12:35:52 -0700 Subject: [PATCH] Changing the connection strings to use Dev14 LocalDB Addresses https://github.com/aspnet/MusicStore/issues/159 --- src/MusicStore/LocalConfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MusicStore/LocalConfig.json b/src/MusicStore/LocalConfig.json index 04a1af7dd1..1492df9e75 100644 --- a/src/MusicStore/LocalConfig.json +++ b/src/MusicStore/LocalConfig.json @@ -3,10 +3,10 @@ "DefaultAdminPassword": "YouShouldChangeThisPassword1!", "Data": { "DefaultConnection": { - "Connectionstring": "Server=(localdb)\\v11.0;Database=MusicStore;Trusted_Connection=True;MultipleActiveResultSets=true" + "Connectionstring": "Server=(localdb)\\MSSQLLocalDB;Database=MusicStore;Trusted_Connection=True;MultipleActiveResultSets=true" }, "IdentityConnection": { - "Connectionstring": "Server=(localdb)\\v11.0;Database=MusicStoreIdentity;Trusted_Connection=True;MultipleActiveResultSets=true" + "Connectionstring": "Server=(localdb)\\MSSQLLocalDB;Database=MusicStoreIdentity;Trusted_Connection=True;MultipleActiveResultSets=true" } } } \ No newline at end of file