将Newtonsoft.Json升级到版本9.0.0并将ReactJS.Net软件包升级到2.5.0后,TransformBabel.proj停止工作:
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="TransformBabel">
<!-- ReactJS.NET - Transpile JavaScript via Babel -->
<UsingTask AssemblyFile="$(OutputPath)\React.MSBuild.dll" TaskName="TransformBabel" />
<Target Name="TransformBabel">
<TransformBabel SourceDir="$(MSBuildProjectDirectory)" />
</Target>
</Project>
返回以下内容:
TransformBabel.proj(6, 3): error MSB4018: The "TransformBabel" task failed unexpectedly.
[Exec] TransformBabel.proj(6, 3): error MSB4018: React.TinyIoC.TinyIoCResolutionException: Unable to resolve type: React.IReactSiteConfiguration ---> System.TypeInitializationException: The type initializer for 'React.ReactSiteConfiguration' threw an exception. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The system cannot find the file specified.
似乎无法加载Newtonsoft 6.0.0.0版本。 web.config有一个程序集重定向:
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
</dependentAssembly>
但我不确定,因为它正在启动一个新的msbuild进程,如果它被忽略。我想暗示msbuild装配的位置,但直到现在都没有成功。
答案 0 :(得分:1)
这里的派对有点晚了,但希望我的经验能帮助其他有同样问题的人。
我最近遇到了与React.MSBuild 3.1.0.
相同的问题它似乎已经硬编码了特定版本,因为我使用NuGet将Newtonsoft.Json
更新为最新版本(10.0.3)并正确设置了重定向,但是构建仍然没有像你提到的那样出错。
我所做的只是卸载所有React软件包(MSBuild和Core)以及Newtonsoft.Json
(使用 -force ,因为还有其他依赖项)然后让NuGet安装{{ 1}}再次。它已经安装了所有依赖项,导致获得React.MSBuild
不确定为什么他们会将Newtonsoft.Json 9.0.1.
库限制为特定版本,但这对React开发人员来说更是一个问题。除非您需要最新版本(或其他特定版本),否则这应解决问题。
答案 1 :(得分:0)
我知道这是一篇旧帖子......但这是我的解决方法:
我将Newtonsoft.Json.dll v6.0.0.0
放入相对于项目目录的Tools
目录中,让msbuild将其复制到$(OutputPath)
以满足TransformBabel
任务条件。
我的TransformBabel.proj
看起来像这样:
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="TransformBabel">
<!-- ReactJS.NET - Transpile JavaScript via Babel -->
<UsingTask AssemblyFile="$(OutputPath)\React.MSBuild.dll" TaskName="TransformBabel" />
<Target Name="TransformBabel">
<Copy SourceFiles="$(MSBuildProjectDirectory)\Tools\Newtonsoft.Json.dll" DestinationFolder="$(OutputPath)" />
<TransformBabel SourceDir="$(MSBuildProjectDirectory)" />
</Target>
</Project>
完成此TransformBabel
任务后,让msbuild覆盖Newtonsoft.Json.dll v6.0.0.0
中$(OutputPath)
覆盖我的项目实际使用的Newtonsoft.Json.dll
版本,例如:v8.0.3
。
所以,在主项目.csproj
中,我有类似的东西:
<ItemGroup>
...
<Reference Include="React.MSBuild, Version=2.3.0.0, Culture=neutral, PublicKeyToken=9aed67b161f7db78, processorArchitecture=MSIL">
<HintPath>Tools\React.MSBuild.dll</HintPath>
<Private>True</Private>
</Reference>
...
</ItemGroup>
...
<ItemGroup>
...
<Content Include="Tools\Newtonsoft.Json.dll" />
<Content Include="Tools\React.MSBuild.dll" />
...
</ItemGroup>
...
<Target Name="TransformBabel" AfterTargets="Build">
<Exec Command=""$(msbuildtoolspath)\msbuild.exe" $(ProjectDirectory)TransformBabel.proj /p:OutputPath=$(OutputPath) /nr:false" />
</Target>
<Target Name="AfterTransformBabel" AfterTargets="TransformBabel">
<Copy SourceFiles="..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll" DestinationFolder="$(OutputPath)" />
</Target>
将Newtonsoft.Json.8.0.3
任务中的路径AfterTransformBabel
替换为您的需要。