diff --git a/BookAStar/BookAStar/BookAStar.csproj b/BookAStar/BookAStar/BookAStar.csproj
index a46a90f0..0fec5857 100644
--- a/BookAStar/BookAStar/BookAStar.csproj
+++ b/BookAStar/BookAStar/BookAStar.csproj
@@ -22,7 +22,7 @@
full
false
bin\Debug\
- TRACE;DEBUG;DEV
+ TRACE;DEBUG;WDEV
prompt
4
diff --git a/BookAStar/BookAStar/Constants.cs b/BookAStar/BookAStar/Constants.cs
index d1b8b306..c24898a5 100644
--- a/BookAStar/BookAStar/Constants.cs
+++ b/BookAStar/BookAStar/Constants.cs
@@ -11,11 +11,13 @@ namespace BookAStar
{
public const string ApplicationName = "Booking Star";
- #region Uri
#if DEV
public const string YavscHomeUrl = "http://dev.pschneider.fr";
#else
+#if WDEV
+ public const string YavscHomeUrl = "http://192.168.0.39:5000";
+#else
#if YAVSC
public const string YavscHomeUrl = "https://yavsc.pschneider.fr";
#else
@@ -25,6 +27,7 @@ namespace BookAStar
public const string YavscHomeUrl = "https://booking.pschneider.fr";
#endif
#endif
+#endif
#endif
public static readonly string AuthorizeUrl = YavscHomeUrl + "/authorize";
public static readonly string RedirectUrl = YavscHomeUrl + "/oauth/success";
@@ -36,11 +39,8 @@ namespace BookAStar
public static readonly string BlogUrl = YavscApiUrl + "/blogs";
public static readonly string FsUrl = YavscApiUrl + "/fs";
public static readonly string SignalRHubsUrl = YavscHomeUrl + "/api/signalr/hubs";
-#endregion
-#region Permissions ids
public static int AllowBeATarget = 1;
-#endregion
public static int CloudTimeout = 400;
}