Created
May 6, 2017 19:39
-
-
Save aramkoukia/18c954f75d3d68ac9ba196156d987f9e to your computer and use it in GitHub Desktop.
.net core configure web api
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
| public void ConfigureServices(IServiceCollection services) | |
| { | |
| // Add framework services. | |
| services.AddMvc().AddWebApiConventions(); //Add WebApi | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment