Skip to content

Commit

Permalink
Version 1.0.5
Browse files Browse the repository at this point in the history
Bitcoin/Altcoin Payment Plugin for ASP.NET C#
  • Loading branch information
cryptoapi committed Apr 5, 2017
1 parent 3167678 commit 4fec92d
Show file tree
Hide file tree
Showing 473 changed files with 403,524 additions and 64 deletions.
17 changes: 0 additions & 17 deletions .gitattributes

This file was deleted.

47 changes: 0 additions & 47 deletions .gitignore

This file was deleted.

22 changes: 22 additions & 0 deletions GoUrl.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gourl", "Gourl\Gourl.csproj", "{F3107923-3D2F-47A4-A3AB-239957430D38}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F3107923-3D2F-47A4-A3AB-239957430D38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F3107923-3D2F-47A4-A3AB-239957430D38}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F3107923-3D2F-47A4-A3AB-239957430D38}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F3107923-3D2F-47A4-A3AB-239957430D38}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added GoUrl/App_Data/GourlDb.mdf
Binary file not shown.
Binary file added GoUrl/App_Data/GourlDb_log.ldf
Binary file not shown.
23 changes: 23 additions & 0 deletions GoUrl/App_Start/RouteConfig.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace Gourl
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Examples", action = "Index", id = UrlParameter.Optional }
);
}
}
}
Loading

0 comments on commit 4fec92d

Please sign in to comment.