Skip to content
This repository has been archived by the owner on Mar 6, 2023. It is now read-only.

Commit

Permalink
Update ASP.NET Core configuration text (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski authored Dec 30, 2021
1 parent 4307de3 commit fd1f1ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lang/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@
"Notice_Install_Node_Package":"Install Exceptionless using the <a href=\"https://www.npmjs.com\" target=\"_blank\">Node Package Manager</a>:",
"Notice_Update_ApiKey":"Update the <code>&lt;exceptionless apiKey=\"API_KEY_HERE\" /&gt;</code> section located in the project's {{config}} with your Exceptionless API key:",
"Notice_Application_Startup_NetFx":"Import the <code>Exceptionless</code> namespace and call the <code>ExceptionlessClient.Default.Startup(\"{{apiKey}}\")</code> method with your api key during the startup of your app.",
"Notice_Application_Startup_NetCore":"Import the <code>Exceptionless</code> namespace and call the <code>app.UseExceptionless(\"{{apiKey}}\")</code> method with your api key during the startup of your app.",
"Notice_Application_Startup_NetCore":"Import the <code>Exceptionless</code> namespace and call the <code>services.AddExceptionless(\"{{apiKey}}\")</code> method inside of the ConfigureServices method. Next, call the <code>app.UseExceptionless()</code> method in the Configure during the startup of your app.",
"Notice_Application_Startup_Nancy":"Import the <code>Exceptionless</code> namespace and call the <code>Exceptionless.ExceptionlessClient.Default.RegisterNancy(pipelines)</code> method with an instance of Nancy.Bootstrapper.IPipelines inside of your Nancy Bootstrapper's ApplicationStartup method.",
"Notice_Application_Startup_Windows":"Import the <code>Exceptionless</code> namespace and call the <code>ExceptionlessClient.Default.Register()</code> method during the startup of your app.",
"Notice_Application_Startup_WebApi":"Import the <code>Exceptionless</code> namespace and call the <code>ExceptionlessClient.Default.RegisterWebApi(config)</code> method with an instance of HttpConfiguration during the startup of your app.",
Expand Down
2 changes: 1 addition & 1 deletion src/lang/zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@
"Notice_Install_Node_Package":"通过 <a href=\"https://www.npmjs.com\" target=\"_blank\">Node 程序包管理器</a> 安装 Exceptionless :",
"Notice_Update_ApiKey":"在项目中的 {{config}} 文件中找到 <code>&lt;exceptionless apiKey=\"API_KEY_HERE\" /&gt;</code> 部分并使用您的 Exceptionless 相应项目的 API 密钥替换:",
"Notice_Application_Startup_NetFx":"在您的应用程序的启动文件中引入 <code>Exceptionless</code> 命名空间,然后通过 API 密钥执行 <code>ExceptionlessClient.Default.Startup(\"{{apiKey}}\")</code> 方法。",
"Notice_Application_Startup_NetCore":"在您的应用程序的启动文件中引入 <code>Exceptionless</code> 命名空间,然后通过 API 密钥执行 <code>app.UseExceptionless(\"{{apiKey}}\")</code> 方法。",
"Notice_Application_Startup_NetCore":"导入 <code>Exceptionless</code> 命名空间并在 ConfigureServices 方法中调用 <code>services.AddExceptionless(\"{{apiKey}}\")</code> 方法。 接下来,在应用程序启动期间调用配置中的 <code>app.UseExceptionless()</code> 方法。",
"Notice_Application_Startup_Nancy":"在您的 Nancy 引导程序中引入 <code>Exceptionless</code> 命名空间,然后在 ApplicationStartup 方法中通过 Nancy.Bootstrapper.IPipelines 类型的实例调用 <code>Exceptionless.ExceptionlessClient.Default.RegisterNancy(pipelines)</code> 方法。",
"Notice_Application_Startup_Windows":"在您的应用程序的启动文件中引入 <code>Exceptionless</code> 命名空间, 然后执行 <code>ExceptionlessClient.Default.Register()</code> 方法。",
"Notice_Application_Startup_WebApi":"在您的应用程序的启动文件中引入 <code>Exceptionless</code> 命名空间, 然后通过 HttpConfiguration 类型的实例调用 <code>ExceptionlessClient.Default.RegisterWebApi(config)</code> 方法。",
Expand Down

0 comments on commit fd1f1ab

Please sign in to comment.