From 5f761af449d8fcaee89982fa34fd2c992e90beb6 Mon Sep 17 00:00:00 2001 From: Greg Edwards Date: Thu, 10 Apr 2014 19:53:48 -0400 Subject: [PATCH] Added mostly blank ASP.NET project for GTS. --- gts/Global.asax | 1 + gts/Global.asax.cs | 51 ++++++++++++++ gts/MasterPage.master | 13 ++++ gts/MasterPage.master.cs | 17 +++++ gts/MasterPage.master.designer.cs | 33 +++++++++ gts/Properties/AssemblyInfo.cs | 35 +++++++++ gts/Web.Debug.config | 30 ++++++++ gts/Web.Release.config | 31 ++++++++ gts/Web.config | 52 ++++++++++++++ gts/gts.csproj | 113 ++++++++++++++++++++++++++++++ pfound.sln | 12 ++++ 11 files changed, 388 insertions(+) create mode 100644 gts/Global.asax create mode 100644 gts/Global.asax.cs create mode 100644 gts/MasterPage.master create mode 100644 gts/MasterPage.master.cs create mode 100644 gts/MasterPage.master.designer.cs create mode 100644 gts/Properties/AssemblyInfo.cs create mode 100644 gts/Web.Debug.config create mode 100644 gts/Web.Release.config create mode 100644 gts/Web.config create mode 100644 gts/gts.csproj diff --git a/gts/Global.asax b/gts/Global.asax new file mode 100644 index 00000000..38245424 --- /dev/null +++ b/gts/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="gts.Global" Language="C#" %> diff --git a/gts/Global.asax.cs b/gts/Global.asax.cs new file mode 100644 index 00000000..82718b60 --- /dev/null +++ b/gts/Global.asax.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Security; +using System.Web.SessionState; + +namespace gts +{ + public class Global : System.Web.HttpApplication + { + + void Application_Start(object sender, EventArgs e) + { + // Code that runs on application startup + + } + + void Application_End(object sender, EventArgs e) + { + // Code that runs on application shutdown + + } + + void Application_Error(object sender, EventArgs e) + { + // Code that runs when an unhandled error occurs + + } + + void Session_Start(object sender, EventArgs e) + { + // Code that runs when a new session is started + + } + + void Session_End(object sender, EventArgs e) + { + // Code that runs when a session ends. + // Note: The Session_End event is raised only when the sessionstate mode + // is set to InProc in the Web.config file. If session mode is set to StateServer + // or SQLServer, the event is not raised. + + } + + void Application_BeginRequest(object sender, EventArgs e) + { + } + + } +} diff --git a/gts/MasterPage.master b/gts/MasterPage.master new file mode 100644 index 00000000..3f92a974 --- /dev/null +++ b/gts/MasterPage.master @@ -0,0 +1,13 @@ +<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs" Inherits="gts.MasterPage" %> + + + + + + + + + + + + diff --git a/gts/MasterPage.master.cs b/gts/MasterPage.master.cs new file mode 100644 index 00000000..febf5547 --- /dev/null +++ b/gts/MasterPage.master.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace gts +{ + public partial class MasterPage : System.Web.UI.MasterPage + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/gts/MasterPage.master.designer.cs b/gts/MasterPage.master.designer.cs new file mode 100644 index 00000000..96f44324 --- /dev/null +++ b/gts/MasterPage.master.designer.cs @@ -0,0 +1,33 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace gts { + + + public partial class MasterPage { + + /// + /// cpHead control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.ContentPlaceHolder cpHead; + + /// + /// cpMain control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.ContentPlaceHolder cpMain; + } +} diff --git a/gts/Properties/AssemblyInfo.cs b/gts/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..b861c80a --- /dev/null +++ b/gts/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("gts")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("gts")] +[assembly: AssemblyCopyright("Copyright © 2014")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("0c0aba84-599e-47fb-a8ac-15e08edd136a")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/gts/Web.Debug.config b/gts/Web.Debug.config new file mode 100644 index 00000000..962e6b73 --- /dev/null +++ b/gts/Web.Debug.config @@ -0,0 +1,30 @@ + + + + + + + + + + \ No newline at end of file diff --git a/gts/Web.Release.config b/gts/Web.Release.config new file mode 100644 index 00000000..141832ba --- /dev/null +++ b/gts/Web.Release.config @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/gts/Web.config b/gts/Web.config new file mode 100644 index 00000000..74c39e1b --- /dev/null +++ b/gts/Web.config @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gts/gts.csproj b/gts/gts.csproj new file mode 100644 index 00000000..30cdea7d --- /dev/null +++ b/gts/gts.csproj @@ -0,0 +1,113 @@ + + + + Debug + AnyCPU + + + 2.0 + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + gts + gts + v4.0 + false + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + + Web.config + + + Web.config + + + + + Global.asax + + + MasterPage.Master + ASPXCodeBehind + + + MasterPage.Master + + + + + + + + + + + + + + + + + + + False + True + 50067 + / + + + False + False + + + False + + + + + + \ No newline at end of file diff --git a/pfound.sln b/pfound.sln index 412051a1..368a5fdd 100644 --- a/pfound.sln +++ b/pfound.sln @@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pokedex", "pokedex\Pokedex. EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VeekunImport", "VeekunImport\VeekunImport.csproj", "{024BA6DC-E146-405E-B028-2B50B7DD4581}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "gts", "gts\gts.csproj", "{2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -47,6 +49,16 @@ Global {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|Mixed Platforms.Build.0 = Release|x86 {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|x86.ActiveCfg = Release|x86 {024BA6DC-E146-405E-B028-2B50B7DD4581}.Release|x86.Build.0 = Release|x86 + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Debug|x86.ActiveCfg = Debug|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Release|Any CPU.Build.0 = Release|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {2EEAF2A8-68B7-4DB5-8818-36285D5CF9B3}.Release|x86.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE