adds another build configuration

main
Paul Schneider 9 years ago
parent 4c86a7cbc8
commit f08d937ed1
2 changed files with 5 additions and 5 deletions

@ -22,7 +22,7 @@
<DebugType>full</DebugType> <DebugType>full</DebugType>
<Optimize>false</Optimize> <Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath> <OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;DEV</DefineConstants> <DefineConstants>TRACE;DEBUG;WDEV</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet /> <CodeAnalysisRuleSet />

@ -11,11 +11,13 @@ namespace BookAStar
{ {
public const string ApplicationName = "Booking Star"; public const string ApplicationName = "Booking Star";
#region Uri
#if DEV #if DEV
public const string YavscHomeUrl = "http://dev.pschneider.fr"; public const string YavscHomeUrl = "http://dev.pschneider.fr";
#else #else
#if WDEV
public const string YavscHomeUrl = "http://192.168.0.39:5000";
#else
#if YAVSC #if YAVSC
public const string YavscHomeUrl = "https://yavsc.pschneider.fr"; public const string YavscHomeUrl = "https://yavsc.pschneider.fr";
#else #else
@ -25,6 +27,7 @@ namespace BookAStar
public const string YavscHomeUrl = "https://booking.pschneider.fr"; public const string YavscHomeUrl = "https://booking.pschneider.fr";
#endif #endif
#endif #endif
#endif
#endif #endif
public static readonly string AuthorizeUrl = YavscHomeUrl + "/authorize"; public static readonly string AuthorizeUrl = YavscHomeUrl + "/authorize";
public static readonly string RedirectUrl = YavscHomeUrl + "/oauth/success"; 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 BlogUrl = YavscApiUrl + "/blogs";
public static readonly string FsUrl = YavscApiUrl + "/fs"; public static readonly string FsUrl = YavscApiUrl + "/fs";
public static readonly string SignalRHubsUrl = YavscHomeUrl + "/api/signalr/hubs"; public static readonly string SignalRHubsUrl = YavscHomeUrl + "/api/signalr/hubs";
#endregion
#region Permissions ids
public static int AllowBeATarget = 1; public static int AllowBeATarget = 1;
#endregion
public static int CloudTimeout = 400; public static int CloudTimeout = 400;
} }

Loading…