File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public Startup( IConfiguration configuration )
18
18
// This method gets called by the runtime. Use this method to add services to the container.
19
19
public void ConfigureServices ( IServiceCollection services )
20
20
{
21
- // the sample application always uses the latest version, but you may want an explict version such as Version_2_2
21
+ // the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
22
22
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
23
23
services . AddMvc ( options => options . EnableEndpointRouting = true ) . SetCompatibilityVersion ( Latest ) ;
24
24
services . AddApiVersioning (
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public Startup( IConfiguration configuration )
19
19
// This method gets called by the runtime. Use this method to add services to the container.
20
20
public void ConfigureServices ( IServiceCollection services )
21
21
{
22
- // the sample application always uses the latest version, but you may want an explict version such as Version_2_2
22
+ // the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
23
23
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
24
24
services . AddMvc ( options => options . EnableEndpointRouting = true ) . SetCompatibilityVersion ( Latest ) ;
25
25
services . AddApiVersioning (
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public Startup( IConfiguration configuration )
21
21
// This method gets called by the runtime. Use this method to add services to the container.
22
22
public void ConfigureServices ( IServiceCollection services )
23
23
{
24
- // the sample application always uses the latest version, but you may want an explict version such as Version_2_2
24
+ // the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
25
25
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
26
26
services . AddMvc ( options => options . EnableEndpointRouting = true ) . SetCompatibilityVersion ( Latest ) ;
27
27
services . AddApiVersioning (
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public Startup( IConfiguration configuration )
20
20
// This method gets called by the runtime. Use this method to add services to the container.
21
21
public void ConfigureServices ( IServiceCollection services )
22
22
{
23
- // the sample application always uses the latest version, but you may want an explict version such as Version_2_2
23
+ // the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
24
24
// note: Endpoint Routing is enabled by default; however, it is unsupported by OData and MUST be false
25
25
services . AddMvc ( options => options . EnableEndpointRouting = false ) . SetCompatibilityVersion ( Latest ) ;
26
26
services . AddApiVersioning (
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public class Startup
26
26
/// <param name="services">The collection of services to configure the application with.</param>
27
27
public void ConfigureServices ( IServiceCollection services )
28
28
{
29
- // the sample application always uses the latest version, but you may want an explict version such as Version_2_2
29
+ // the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
30
30
// note: Endpoint Routing is enabled by default; however, it is unsupported by OData and MUST be false
31
31
services . AddMvc ( options => options . EnableEndpointRouting = false ) . SetCompatibilityVersion ( Latest ) ;
32
32
services . AddApiVersioning ( options => options . ReportApiVersions = true ) ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public Startup( IConfiguration configuration )
37
37
/// <param name="services">The collection of services to configure the application with.</param>
38
38
public void ConfigureServices ( IServiceCollection services )
39
39
{
40
- // the sample application always uses the latest version, but you may want an explict version such as Version_2_2
40
+ // the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
41
41
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
42
42
services . AddMvc ( options => options . EnableEndpointRouting = true ) . SetCompatibilityVersion ( Latest ) ;
43
43
services . AddApiVersioning (
You can’t perform that action at this time.
0 commit comments