summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/Utilities.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-05 20:24:05 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-05 20:24:05 -0700
commited71e7109016111e8b72bf759fdf5df8a6931dd0 (patch)
tree652bc67ada3d9e04c819e167a47e36c95fbb54a1 /projecttemplates/RelyingPartyLogic/Utilities.cs
parent2a67db4f550ecdb86e9adb05fb46b42650a375c0 (diff)
downloadDotNetOpenAuth-ed71e7109016111e8b72bf759fdf5df8a6931dd0.zip
DotNetOpenAuth-ed71e7109016111e8b72bf759fdf5df8a6931dd0.tar.gz
DotNetOpenAuth-ed71e7109016111e8b72bf759fdf5df8a6931dd0.tar.bz2
Reverts v4.0 branch back to VS2010, and samples target .NET 3.5, and MVC samples are MVC 2.
The "upgrade" had introduced a lot of issues, such as broken project templates, broken MVC 3/4 story, etc. and wasn't fitting the stabilization that the v4.0 branch needs.
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Utilities.cs')
-rw-r--r--projecttemplates/RelyingPartyLogic/Utilities.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Utilities.cs b/projecttemplates/RelyingPartyLogic/Utilities.cs
index 440dbe7..d273881 100644
--- a/projecttemplates/RelyingPartyLogic/Utilities.cs
+++ b/projecttemplates/RelyingPartyLogic/Utilities.cs
@@ -73,7 +73,7 @@ GO" };
foreach (string remove in removeSnippets) {
schemaSqlBuilder.Replace(remove, string.Empty);
}
- schemaSqlBuilder.Replace("Path1_Placeholder", HttpContext.Current.Server.MapPath("~/App_Data/"));
+ schemaSqlBuilder.Replace("$(Path1)", HttpContext.Current.Server.MapPath("~/App_Data/"));
schemaSqlBuilder.Replace("WEBROOT", databasePath);
schemaSqlBuilder.Replace("$(DatabaseName)", databaseName);