Revert "Removes old obsoleted ping.aspx"
This reverts commit 453efc02a5.
Conflicts:
src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
U4-8274 '/umbraco/ping.aspx' is missing
This commit is contained in:
@@ -2241,6 +2241,9 @@
|
||||
<Content Include="Umbraco\Members\EditMemberGroup.aspx">
|
||||
<SubType>Form</SubType>
|
||||
</Content>
|
||||
<Content Include="Umbraco\ping.aspx">
|
||||
<SubType>Form</SubType>
|
||||
</Content>
|
||||
<Content Include="Umbraco\publishStatus.aspx" />
|
||||
<Content Include="Umbraco\Settings\EditDictionaryItem.aspx" />
|
||||
<Content Include="Umbraco\Settings\editLanguage.aspx" />
|
||||
|
||||
2
src/Umbraco.Web.UI/umbraco/ping.aspx
Normal file
2
src/Umbraco.Web.UI/umbraco/ping.aspx
Normal file
@@ -0,0 +1,2 @@
|
||||
<%@ Page language="c#" AutoEventWireup="True" %>
|
||||
I'm alive!
|
||||
@@ -1088,6 +1088,9 @@
|
||||
<Compile Include="umbraco.presentation\umbraco\tree.aspx.cs">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\ping.aspx.cs">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\create\PartialViewMacrosTasks.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\create\PartialViewTasks.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\developer\Macros\editMacro.aspx.cs">
|
||||
|
||||
38
src/Umbraco.Web/umbraco.presentation/umbraco/ping.aspx.cs
Normal file
38
src/Umbraco.Web/umbraco.presentation/umbraco/ping.aspx.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Web;
|
||||
using System.Web.SessionState;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Web.UI.HtmlControls;
|
||||
|
||||
namespace umbraco.presentation
|
||||
{
|
||||
|
||||
[Obsolete("This class will be removed in future versions.")]
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public partial class ping : System.Web.UI.Page
|
||||
{
|
||||
#region Web Form Designer generated code
|
||||
override protected void OnInit(EventArgs e)
|
||||
{
|
||||
//
|
||||
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
|
||||
//
|
||||
InitializeComponent();
|
||||
base.OnInit(e);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user