Skip to content

Commit 4fec92d

Browse files
committed
Version 1.0.5
Bitcoin/Altcoin Payment Plugin for ASP.NET C#
1 parent 3167678 commit 4fec92d

File tree

473 files changed

+403524
-64
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

473 files changed

+403524
-64
lines changed

.gitattributes

-17
This file was deleted.

.gitignore

-47
This file was deleted.

GoUrl.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25123.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gourl", "Gourl\Gourl.csproj", "{F3107923-3D2F-47A4-A3AB-239957430D38}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F3107923-3D2F-47A4-A3AB-239957430D38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F3107923-3D2F-47A4-A3AB-239957430D38}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F3107923-3D2F-47A4-A3AB-239957430D38}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F3107923-3D2F-47A4-A3AB-239957430D38}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

GoUrl/App_Data/GourlDb.mdf

8 MB
Binary file not shown.

GoUrl/App_Data/GourlDb_log.ldf

8 MB
Binary file not shown.

GoUrl/App_Start/RouteConfig.cs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
using System.Web.Mvc;
6+
using System.Web.Routing;
7+
8+
namespace Gourl
9+
{
10+
public class RouteConfig
11+
{
12+
public static void RegisterRoutes(RouteCollection routes)
13+
{
14+
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
15+
16+
routes.MapRoute(
17+
name: "Default",
18+
url: "{controller}/{action}/{id}",
19+
defaults: new { controller = "Examples", action = "Index", id = UrlParameter.Optional }
20+
);
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)