私のプロジェクトでは、Web APIのために必要なコードが用意されています。 Resharperでこれらの命令を設定する方法はありますか?私はResharper Ultimate版を使用しています。また、resharperを設定して、これらの指示に従わないとエラーを投げて提案を表示するように設定できます。あなたは、このようなものを設定することができますのVisual Studioで、ReSharperのからオプションメニューを開くとResharperを使用したコーディングガイドラインの実装
Use Camel case in Payload
Use camel case for the data elements in the payload. Eg:firstName,lastName
Use lowercase in Endpoints
Use only lower case when defining the endpoints.
Eg: GET \api\v1\customers\{CustomerID}\rewards
Use hyphen for compound words in Endpoints
Use hyphen for compound words in Endpoints.
Eg: GET \api\v1\customers\{CustomerId}\order-history
Use Nouns not verbs
Noun based endpoint should be used rather than verb based endpoint for CRUD operations.
Eg: GET \api\v1\\customers, GET \api\v1\customers\{CustomerID}
GET \api\v1\GetAllCustomers
Use verb followed by noun in case of certain functions.
Eg: PUT \api\v1\customers\{CustomerID}\send-email
すべての迅速な応答をありがとう。しかし、私はより多くのカスタマイズが必要です。例: {Route( "売り手/検索/ {Page}/{PageSize}")]としてエンドポイントを定義している場合、 pageSize} ")] – SKiran