commit d202198ff1b2ceefb4cdbf95239ff98b126318bb Author: Valeriano A.R Date: Sat May 23 18:51:22 2015 +0200 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e3be7e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.suo +*/bin/* +*/obj/* diff --git a/Scrummer.dotfuscator.xml b/Scrummer.dotfuscator.xml new file mode 100644 index 0000000..d91aa2e --- /dev/null +++ b/Scrummer.dotfuscator.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Scrummer.sln b/Scrummer.sln new file mode 100644 index 0000000..087f852 --- /dev/null +++ b/Scrummer.sln @@ -0,0 +1,22 @@ + +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 +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 diff --git a/Scrummer/GlobalRouter.cs b/Scrummer/GlobalRouter.cs new file mode 100644 index 0000000..84f6b15 --- /dev/null +++ b/Scrummer/GlobalRouter.cs @@ -0,0 +1,17 @@ +using System.Web; + +namespace Scrummer +{ + public class GlobalRouter : IHttpHandler + { + public bool IsReusable + { + get { return false; } + } + + public void ProcessRequest(HttpContext context) + { + context.Response.Write("Hello world!"); + } + } +} \ No newline at end of file diff --git a/Scrummer/Properties/AssemblyInfo.cs b/Scrummer/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c05fcec --- /dev/null +++ b/Scrummer/Properties/AssemblyInfo.cs @@ -0,0 +1,34 @@ +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("Scrummer")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("VAR")] +[assembly: AssemblyProduct("Scrummer")] +[assembly: AssemblyCopyright("Copyright © VAR 2015")] +[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("4cd25e9d-237f-4a9f-89ac-35e537cf265e")] + +// 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.*")] diff --git a/Scrummer/Scrummer.csproj b/Scrummer/Scrummer.csproj new file mode 100644 index 0000000..7c2e170 --- /dev/null +++ b/Scrummer/Scrummer.csproj @@ -0,0 +1,109 @@ + + + + + Debug + AnyCPU + + + 2.0 + {7596FD6B-DAF0-4B22-B356-5CF4629F0436} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + Scrummer + Scrummer + v4.5.1 + true + + + + + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + + Web.config + Designer + + + Web.config + Designer + + + + + + + + + + + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + True + True + 51559 + / + http://localhost:51555/ + False + False + + + False + + + + + + \ No newline at end of file diff --git a/Scrummer/Scrummer.csproj.user b/Scrummer/Scrummer.csproj.user new file mode 100644 index 0000000..9a6dfb0 --- /dev/null +++ b/Scrummer/Scrummer.csproj.user @@ -0,0 +1,28 @@ + + + + + + + + + CurrentPage + True + False + False + False + + + + + + + + + True + True + + + + + \ No newline at end of file diff --git a/Scrummer/Web.Debug.config b/Scrummer/Web.Debug.config new file mode 100644 index 0000000..fdd6927 --- /dev/null +++ b/Scrummer/Web.Debug.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/Scrummer/Web.Release.config b/Scrummer/Web.Release.config new file mode 100644 index 0000000..817ae52 --- /dev/null +++ b/Scrummer/Web.Release.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Scrummer/Web.config b/Scrummer/Web.config new file mode 100644 index 0000000..01addc4 --- /dev/null +++ b/Scrummer/Web.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file