This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Default Startup Class for OWIN WebAPI apps | |
| /// </summary> | |
| /// <remarks> | |
| /// Requires the following NuGet Packages to be installed: | |
| /// - Install-Package Microsoft.AspNet.WebApi.Owin | |
| /// - Install-Package Microsoft.AspNet.WebApi.WebHost (If IIS-hosted) | |
| /// </remarks> | |
| public class Startup | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #============================================================ | |
| # | |
| # ALIASES AND FUNCTIONS | |
| # | |
| # Arguably, some functions defined here are quite big. | |
| # If you want to make this file smaller, these functions can | |
| #+ be converted into scripts and removed from here. | |
| # | |
| #============================================================ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2011 Damien Antipa, http://www.nethead.at/, http://damien.antipa.at | |
| Permission is hereby granted, free of charge, to any person obtaining | |
| a copy of this software and associated documentation files (the | |
| "Software"), to deal in the Software without restriction, including | |
| without limitation the rights to use, copy, modify, merge, publish, | |
| distribute, sublicense, and/or sell copies of the Software, and to | |
| permit persons to whom the Software is furnished to do so, subject to | |
| the following conditions: |
NewerOlder