diff --git a/GamestatsBase.sln b/GamestatsBase.sln index 6184122..b356bcb 100644 --- a/GamestatsBase.sln +++ b/GamestatsBase.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 12.0.30723.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GamestatsBase", "GamestatsBase\GamestatsBase.csproj", "{2D667F5B-F10D-44E2-93F6-DD555D9EE7DF}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample", "Sample\Sample.csproj", "{DDDFB9C9-2659-4372-BFA4-068889E6B485}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {2D667F5B-F10D-44E2-93F6-DD555D9EE7DF}.Debug|Any CPU.Build.0 = Debug|Any CPU {2D667F5B-F10D-44E2-93F6-DD555D9EE7DF}.Release|Any CPU.ActiveCfg = Release|Any CPU {2D667F5B-F10D-44E2-93F6-DD555D9EE7DF}.Release|Any CPU.Build.0 = Release|Any CPU + {DDDFB9C9-2659-4372-BFA4-068889E6B485}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DDDFB9C9-2659-4372-BFA4-068889E6B485}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DDDFB9C9-2659-4372-BFA4-068889E6B485}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DDDFB9C9-2659-4372-BFA4-068889E6B485}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Sample/Global.asax b/Sample/Global.asax new file mode 100644 index 0000000..8057d9e --- /dev/null +++ b/Sample/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="Sample.Global" Language="C#" %> diff --git a/Sample/Global.asax.cs b/Sample/Global.asax.cs new file mode 100644 index 0000000..1ea52d1 --- /dev/null +++ b/Sample/Global.asax.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Security; +using System.Web.SessionState; + +namespace Sample +{ + public class Global : System.Web.HttpApplication + { + protected void Application_Start(object sender, EventArgs e) + { + } + } +} \ No newline at end of file diff --git a/Sample/Properties/AssemblyInfo.cs b/Sample/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a509e2b --- /dev/null +++ b/Sample/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("Sample")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Sample")] +[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("0fec9d91-583f-481c-9d38-3745266d6f9b")] + +// 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/Sample/Sample.csproj b/Sample/Sample.csproj new file mode 100644 index 0000000..cfd8abb --- /dev/null +++ b/Sample/Sample.csproj @@ -0,0 +1,113 @@ + + + + + Debug + AnyCPU + + + 2.0 + {DDDFB9C9-2659-4372-BFA4-068889E6B485} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + Sample + Sample + v4.5 + true + + + + + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + Web.config + + + Web.config + + + + + + + + + Global.asax + + + + + + + + + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + True + True + 54610 + / + http://localhost:54610/ + False + False + + + False + + + + + + \ No newline at end of file diff --git a/Sample/Web.Debug.config b/Sample/Web.Debug.config new file mode 100644 index 0000000..2e302f9 --- /dev/null +++ b/Sample/Web.Debug.config @@ -0,0 +1,30 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Sample/Web.Release.config b/Sample/Web.Release.config new file mode 100644 index 0000000..c358444 --- /dev/null +++ b/Sample/Web.Release.config @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Sample/Web.config b/Sample/Web.config new file mode 100644 index 0000000..bfb640d --- /dev/null +++ b/Sample/Web.config @@ -0,0 +1,11 @@ + + + + + + + + \ No newline at end of file