From 3c02e85ee3773254c7447e768798c72613cf9fb0 Mon Sep 17 00:00:00 2001 From: Masters Date: Mon, 11 Apr 2022 09:10:15 -0400 Subject: [PATCH 1/2] 5.2.13 Bump version to make sure CI still works --- build.proj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.proj b/build.proj index fa41a57d..afbf537d 100644 --- a/build.proj +++ b/build.proj @@ -11,7 +11,7 @@ of patent rights can be found in the PATENTS file in the same directory. 5 2 - 12 + 13 0 http://reactjs.net/packages/ $(MSBuildProjectDirectory)\tools\MSBuildTasks From 6d5bdb03157798e661900f895729496c0ffd9570 Mon Sep 17 00:00:00 2001 From: Bon <5704760+Bonfire@users.noreply.github.com> Date: Tue, 26 Apr 2022 08:16:26 -0400 Subject: [PATCH 2/2] Fix minor typo in ASP.NET Core tutorials (#1293) * Fix minor typo in tutorials/aspnetcore.md * Fix typo in reactnet-vanilla/Startup.cs --- site/jekyll/tutorials/aspnetcore.md | 2 +- src/React.Template/reactnet-vanilla/Startup.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/jekyll/tutorials/aspnetcore.md b/site/jekyll/tutorials/aspnetcore.md index 47868669..0a79d245 100644 --- a/site/jekyll/tutorials/aspnetcore.md +++ b/site/jekyll/tutorials/aspnetcore.md @@ -149,7 +149,7 @@ app.UseReact(config => // .AddScript("~/js/First.jsx") // .AddScript("~/js/Second.jsx"); - // If you use an external build too (for example, Babel, Webpack, + // If you use an external build tool (for example, Babel, Webpack, // Browserify or Gulp), you can improve performance by disabling // ReactJS.NET's version of Babel and loading the pre-transpiled // scripts. Example: diff --git a/src/React.Template/reactnet-vanilla/Startup.cs b/src/React.Template/reactnet-vanilla/Startup.cs index 7777ffb1..6ca7827e 100644 --- a/src/React.Template/reactnet-vanilla/Startup.cs +++ b/src/React.Template/reactnet-vanilla/Startup.cs @@ -72,7 +72,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerF ContractResolver = new CamelCasePropertyNamesContractResolver() }); - // If you use an external build too (for example, Babel, Webpack, + // If you use an external build tool (for example, Babel, Webpack, // Browserify or Gulp), you can improve performance by disabling // ReactJS.NET's version of Babel and loading the pre-transpiled // scripts. Example: