Skip to content

Commit d46f025

Browse files
committed
Bump version
1 parent ae7dedb commit d46f025

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

build.proj

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ of patent rights can be found in the PATENTS file in the same directory.
99
-->
1010
<Project ToolsVersion="4.0" DefaultTargets="Build;Test;Package" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1111
<PropertyGroup>
12-
<Major>0</Major>
13-
<Minor>2</Minor>
14-
<Build>1</Build>
12+
<Major>1</Major>
13+
<Minor>0</Minor>
14+
<Build>0</Build>
1515
<Revision>0</Revision>
1616
<DevBuild>true</DevBuild>
1717
<DevNuGetServer>http://reactjs.net/packages/</DevNuGetServer>

src/React/Exceptions/JsxUnsupportedEngineException.cs

+3-4
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,9 @@ private static string GetMessage()
3838
return
3939
"The current JavaScript engine does not support compilation of JSX files. If " +
4040
"you are on Windows, try upgrading your version of Internet Explorer to 9 or " +
41-
"above to use the updated engine. \n\nJSX Transformation is currently " +
42-
"unsupported on Mono. If you are using Mono, it is suggested to precompile all " +
43-
"JSX files on Windows before deployment. Refer to the ReactJS.NET documentation " +
44-
"for more details.";
41+
"above to use the updated engine. \n\nIf you are using Mono, ensure that you " +
42+
"have installed the React.JavaScriptEngine.VroomJs package and V8 is installed " +
43+
"correcty. Refer to the ReactJS.NET documentation for more details.";
4544
}
4645
}
4746
}

0 commit comments

Comments
 (0)