add appveyor, remove unneeded deploy config
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 19 KiB |
@@ -9,8 +9,8 @@ namespace UntappedWidgetGenerator.Web
|
||||
{
|
||||
public IndexModule()
|
||||
{
|
||||
Get["/"] = x => { return View["Views/Index/Index.cshtml", "tparnell"]; };
|
||||
Get["/{username}/browse"] = x => { return View["Views/Index/Index.cshtml", (string)x.username]; };
|
||||
Get["/"] = x => View["Views/Index/Index.cshtml", "tparnell"];
|
||||
Get["/{username}/browse"] = x => View["Views/Index/Index.cshtml", (string)x.username];
|
||||
Get["/{username}/html"] = parameters =>
|
||||
{
|
||||
var info = new UntappedRepository().Get(parameters.username);
|
||||
|
||||
@@ -90,7 +90,6 @@
|
||||
<Content Include="Content\jquery.UntappedWidget.min.css">
|
||||
<DependentUpon>jquery.UntappedWidget.css</DependentUpon>
|
||||
</Content>
|
||||
<Content Include="Content\nancy-logo.png" />
|
||||
<Content Include="Content\Site.css" />
|
||||
<Content Include="fonts\glyphicons-halflings-regular.svg" />
|
||||
<Content Include="fonts\glyphicons-halflings-regular.woff2" />
|
||||
|
||||
Reference in New Issue
Block a user