Rename to VAR.Focus
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -6,4 +6,4 @@
|
|||||||
Dotfuscated/*
|
Dotfuscated/*
|
||||||
Published/*
|
Published/*
|
||||||
|
|
||||||
Scrummer/priv/*.json
|
VAR.Focus.Web/priv/*.json
|
||||||
|
|||||||
27
Scrummer.sln
27
Scrummer.sln
@@ -1,27 +0,0 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
# Visual Studio 2013
|
|
||||||
VisualStudioVersion = 12.0.31101.0
|
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Scrummer", "Scrummer\Scrummer.csproj", "{7596FD6B-DAF0-4B22-B356-5CF4629F0436}"
|
|
||||||
EndProject
|
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Notes", "Notes", "{22F69F04-ABC4-44DB-9742-A24012298108}"
|
|
||||||
ProjectSection(SolutionItems) = preProject
|
|
||||||
Notes.txt = Notes.txt
|
|
||||||
EndProjectSection
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Any CPU = Debug|Any CPU
|
|
||||||
Release|Any CPU = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{7596FD6B-DAF0-4B22-B356-5CF4629F0436}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{7596FD6B-DAF0-4B22-B356-5CF4629F0436}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{7596FD6B-DAF0-4B22-B356-5CF4629F0436}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{7596FD6B-DAF0-4B22-B356-5CF4629F0436}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
||||||
@@ -3,7 +3,7 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Scrummer.Code
|
namespace VAR.Focus.Web.Code
|
||||||
{
|
{
|
||||||
public class Bundler
|
public class Bundler
|
||||||
{
|
{
|
||||||
@@ -2,9 +2,9 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
|
|
||||||
namespace Scrummer.Code.BusinessLogic
|
namespace VAR.Focus.Web.Code.BusinessLogic
|
||||||
{
|
{
|
||||||
public class CardBoard
|
public class CardBoard
|
||||||
{
|
{
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
|
|
||||||
namespace Scrummer.Code.BusinessLogic
|
namespace VAR.Focus.Web.Code.BusinessLogic
|
||||||
{
|
{
|
||||||
public class MessageBoard
|
public class MessageBoard
|
||||||
{
|
{
|
||||||
@@ -4,9 +4,9 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Code.JSON;
|
using VAR.Focus.Web.Code.JSON;
|
||||||
|
|
||||||
namespace Scrummer.Code.BusinessLogic
|
namespace VAR.Focus.Web.Code.BusinessLogic
|
||||||
{
|
{
|
||||||
public class Persistence
|
public class Persistence
|
||||||
{
|
{
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
|
|
||||||
namespace Scrummer.Code.BusinessLogic
|
namespace VAR.Focus.Web.Code.BusinessLogic
|
||||||
{
|
{
|
||||||
public class Sessions
|
public class Sessions
|
||||||
{
|
{
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
using Scrummer.Code.JSON;
|
using VAR.Focus.Web.Code.JSON;
|
||||||
|
|
||||||
namespace Scrummer.Code.BusinessLogic
|
namespace VAR.Focus.Web.Code.BusinessLogic
|
||||||
{
|
{
|
||||||
public class Users
|
public class Users
|
||||||
{
|
{
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Scrummer.Code
|
namespace VAR.Focus.Web.Code
|
||||||
{
|
{
|
||||||
public class CryptoUtils
|
public class CryptoUtils
|
||||||
{
|
{
|
||||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
||||||
namespace Scrummer.Code.Entities
|
namespace VAR.Focus.Web.Code.Entities
|
||||||
{
|
{
|
||||||
public class Card
|
public class Card
|
||||||
{
|
{
|
||||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
||||||
namespace Scrummer.Code.Entities
|
namespace VAR.Focus.Web.Code.Entities
|
||||||
{
|
{
|
||||||
public interface ICardEvent
|
public interface ICardEvent
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Scrummer.Code.Entities
|
namespace VAR.Focus.Web.Code.Entities
|
||||||
{
|
{
|
||||||
public class Message
|
public class Message
|
||||||
{
|
{
|
||||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
||||||
namespace Scrummer.Code.Entities
|
namespace VAR.Focus.Web.Code.Entities
|
||||||
{
|
{
|
||||||
public class OperationStatus
|
public class OperationStatus
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Scrummer.Code.Entities
|
namespace VAR.Focus.Web.Code.Entities
|
||||||
{
|
{
|
||||||
public class Session
|
public class Session
|
||||||
{
|
{
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
namespace Scrummer.Code.Entities
|
namespace VAR.Focus.Web.Code.Entities
|
||||||
{
|
{
|
||||||
public class User
|
public class User
|
||||||
{
|
{
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Pages;
|
using VAR.Focus.Web.Pages;
|
||||||
|
|
||||||
namespace Scrummer.Code
|
namespace VAR.Focus.Web.Code
|
||||||
{
|
{
|
||||||
public static class GlobalErrorHandler
|
public static class GlobalErrorHandler
|
||||||
{
|
{
|
||||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Scrummer.Code.JSON
|
namespace VAR.Focus.Web.Code.JSON
|
||||||
{
|
{
|
||||||
public class JSONParser
|
public class JSONParser
|
||||||
{
|
{
|
||||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Scrummer.Code.JSON
|
namespace VAR.Focus.Web.Code.JSON
|
||||||
{
|
{
|
||||||
public class JSONWriter
|
public class JSONWriter
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Scrummer.Code.JSON
|
namespace VAR.Focus.Web.Code.JSON
|
||||||
{
|
{
|
||||||
public class ParserContext
|
public class ParserContext
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
||||||
namespace Scrummer.Code
|
namespace VAR.Focus.Web.Code
|
||||||
{
|
{
|
||||||
public class ScriptsBundler : IHttpHandler
|
public class ScriptsBundler : IHttpHandler
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
||||||
namespace Scrummer.Code
|
namespace VAR.Focus.Web.Code
|
||||||
{
|
{
|
||||||
public class StylesBundler : IHttpHandler
|
public class StylesBundler : IHttpHandler
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public class CButton : Button
|
public class CButton : Button
|
||||||
{
|
{
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using System.Web.UI;
|
using System.Web.UI;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public class CLabel : Label
|
public class CLabel : Label
|
||||||
{
|
{
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Web.UI;
|
using System.Web.UI;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public class CTextBox : TextBox, IValidableControl
|
public class CTextBox : TextBox, IValidableControl
|
||||||
{
|
{
|
||||||
@@ -6,7 +6,7 @@ using System.Web;
|
|||||||
using System.Web.UI;
|
using System.Web.UI;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public class CardBoardControl : Control, INamingContainer
|
public class CardBoardControl : Control, INamingContainer
|
||||||
{
|
{
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Code.BusinessLogic;
|
using VAR.Focus.Web.Code.BusinessLogic;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
using Scrummer.Code.JSON;
|
using VAR.Focus.Web.Code.JSON;
|
||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public class CardBoardHandler : IHttpHandler
|
public class CardBoardHandler : IHttpHandler
|
||||||
{
|
{
|
||||||
@@ -3,7 +3,7 @@ using System.Text;
|
|||||||
using System.Web.UI;
|
using System.Web.UI;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public class ChatControl : Control, INamingContainer
|
public class ChatControl : Control, INamingContainer
|
||||||
{
|
{
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Code.BusinessLogic;
|
using VAR.Focus.Web.Code.BusinessLogic;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
using Scrummer.Code.JSON;
|
using VAR.Focus.Web.Code.JSON;
|
||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public class ChatHandler : IHttpHandler
|
public class ChatHandler : IHttpHandler
|
||||||
{
|
{
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
namespace Scrummer.Controls
|
namespace VAR.Focus.Web.Controls
|
||||||
{
|
{
|
||||||
public interface IValidableControl
|
public interface IValidableControl
|
||||||
{
|
{
|
||||||
@@ -3,9 +3,9 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Code;
|
using VAR.Focus.Web.Code;
|
||||||
|
|
||||||
namespace Scrummer
|
namespace VAR.Focus.Web
|
||||||
{
|
{
|
||||||
public class GlobalRouter : IHttpHandler
|
public class GlobalRouter : IHttpHandler
|
||||||
{
|
{
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
|
|
||||||
namespace Scrummer
|
namespace VAR.Focus.Web
|
||||||
{
|
{
|
||||||
public static class Globals
|
public static class Globals
|
||||||
{
|
{
|
||||||
public const string Title = "Scrummer";
|
public const string Title = "Focus";
|
||||||
public const string TitleSeparator = " :: ";
|
public const string TitleSeparator = " :: ";
|
||||||
public const string Author = "Valeriano Alfonso Rodriguez";
|
public const string Author = "Valeriano Alfonso Rodriguez";
|
||||||
public const string Copyright = "Copyright (c) 2015 by Valeriano Alfonso, All Right Reserved";
|
public const string Copyright = "Copyright (c) 2015 by Valeriano Alfonso, All Right Reserved";
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
using System.Web.UI;
|
using System.Web.UI;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
using Scrummer.Controls;
|
using VAR.Focus.Web.Controls;
|
||||||
|
|
||||||
namespace Scrummer.Pages
|
namespace VAR.Focus.Web.Pages
|
||||||
{
|
{
|
||||||
public class FormUtils
|
public class FormUtils
|
||||||
{
|
{
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using Scrummer.Controls;
|
using VAR.Focus.Web.Controls;
|
||||||
|
|
||||||
namespace Scrummer.Pages
|
namespace VAR.Focus.Web.Pages
|
||||||
{
|
{
|
||||||
public class FrmBoard : PageCommon
|
public class FrmBoard : PageCommon
|
||||||
{
|
{
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using System.Web;
|
using System.Web;
|
||||||
using Scrummer.Code.JSON;
|
using VAR.Focus.Web.Code.JSON;
|
||||||
|
|
||||||
namespace Scrummer.Pages
|
namespace VAR.Focus.Web.Pages
|
||||||
{
|
{
|
||||||
public class FrmEcho : IHttpHandler
|
public class FrmEcho : IHttpHandler
|
||||||
{
|
{
|
||||||
@@ -2,9 +2,9 @@
|
|||||||
using System.Web;
|
using System.Web;
|
||||||
using System.Web.UI;
|
using System.Web.UI;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
using Scrummer.Controls;
|
using VAR.Focus.Web.Controls;
|
||||||
|
|
||||||
namespace Scrummer.Pages
|
namespace VAR.Focus.Web.Pages
|
||||||
{
|
{
|
||||||
public class FrmError : PageCommon
|
public class FrmError : PageCommon
|
||||||
{
|
{
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
using Scrummer.Code.BusinessLogic;
|
using VAR.Focus.Web.Code.BusinessLogic;
|
||||||
using Scrummer.Controls;
|
using VAR.Focus.Web.Controls;
|
||||||
|
|
||||||
namespace Scrummer.Pages
|
namespace VAR.Focus.Web.Pages
|
||||||
{
|
{
|
||||||
public class FrmLogin : PageCommon
|
public class FrmLogin : PageCommon
|
||||||
{
|
{
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
using Scrummer.Code.BusinessLogic;
|
using VAR.Focus.Web.Code.BusinessLogic;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
using Scrummer.Controls;
|
using VAR.Focus.Web.Controls;
|
||||||
|
|
||||||
namespace Scrummer.Pages
|
namespace VAR.Focus.Web.Pages
|
||||||
{
|
{
|
||||||
public class FrmRegister : PageCommon
|
public class FrmRegister : PageCommon
|
||||||
{
|
{
|
||||||
@@ -4,11 +4,11 @@ using System.Text;
|
|||||||
using System.Web.UI;
|
using System.Web.UI;
|
||||||
using System.Web.UI.HtmlControls;
|
using System.Web.UI.HtmlControls;
|
||||||
using System.Web.UI.WebControls;
|
using System.Web.UI.WebControls;
|
||||||
using Scrummer.Code.BusinessLogic;
|
using VAR.Focus.Web.Code.BusinessLogic;
|
||||||
using Scrummer.Code.Entities;
|
using VAR.Focus.Web.Code.Entities;
|
||||||
using Scrummer.Controls;
|
using VAR.Focus.Web.Controls;
|
||||||
|
|
||||||
namespace Scrummer.Pages
|
namespace VAR.Focus.Web.Pages
|
||||||
{
|
{
|
||||||
public class PageCommon : Page
|
public class PageCommon : Page
|
||||||
{
|
{
|
||||||
@@ -4,11 +4,11 @@ using System.Runtime.InteropServices;
|
|||||||
// General Information about an assembly is controlled through the following
|
// General Information about an assembly is controlled through the following
|
||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("Scrummer")]
|
[assembly: AssemblyTitle("VAR.Focus")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("VAR")]
|
[assembly: AssemblyCompany("VAR")]
|
||||||
[assembly: AssemblyProduct("Scrummer")]
|
[assembly: AssemblyProduct("VAR.Focus")]
|
||||||
[assembly: AssemblyCopyright("Copyright © VAR 2015")]
|
[assembly: AssemblyCopyright("Copyright © VAR 2015")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
@@ -15,7 +15,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
|||||||
<DebugSymbols>False</DebugSymbols>
|
<DebugSymbols>False</DebugSymbols>
|
||||||
<WDPMergeOption>DonotMerge</WDPMergeOption>
|
<WDPMergeOption>DonotMerge</WDPMergeOption>
|
||||||
<ExcludeApp_Data>True</ExcludeApp_Data>
|
<ExcludeApp_Data>True</ExcludeApp_Data>
|
||||||
<publishUrl>C:\Users\VAR\source\Scrummer\Published</publishUrl>
|
<publishUrl>C:\Users\VAR\source\VAR.Focus\Published</publishUrl>
|
||||||
<DeleteExistingFiles>True</DeleteExistingFiles>
|
<DeleteExistingFiles>True</DeleteExistingFiles>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -11,8 +11,8 @@
|
|||||||
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>Scrummer</RootNamespace>
|
<RootNamespace>VAR.Focus.Web</RootNamespace>
|
||||||
<AssemblyName>Scrummer</AssemblyName>
|
<AssemblyName>VAR.Focus.Web</AssemblyName>
|
||||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="priv\keep.txt" />
|
<Content Include="priv\keep.txt" />
|
||||||
<Content Include="Scripts\01. Base.js" />
|
<Content Include="Scripts\01. Base.js" />
|
||||||
<None Include="Properties\PublishProfiles\Scrummer.pubxml" />
|
<None Include="Properties\PublishProfiles\VAR.Focus.Web.pubxml" />
|
||||||
<None Include="Web.Debug.config">
|
<None Include="Web.Debug.config">
|
||||||
<DependentUpon>Web.config</DependentUpon>
|
<DependentUpon>Web.config</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
</system.web>
|
</system.web>
|
||||||
<system.webServer>
|
<system.webServer>
|
||||||
<handlers>
|
<handlers>
|
||||||
<add name="GlobalRouter" path="*" verb="*" type="Scrummer.GlobalRouter"/>
|
<add name="GlobalRouter" path="*" verb="*" type="VAR.Focus.Web.GlobalRouter"/>
|
||||||
</handlers>
|
</handlers>
|
||||||
</system.webServer>
|
</system.webServer>
|
||||||
</configuration>
|
</configuration>
|
||||||
Reference in New Issue
Block a user