Recently, I updated my C# 4.5.1 .NET library named "ViewModels" to the newest 1.4.0 version of the Reinforced.Typings
library/tool using NuGet. This tool allows me to convert my C# code to .ts files.
During the upgrade process, I chose not to overwrite the .xml configuration file and instead manually compared it with the newly provided readme.txt file to see if any significant changes had been made. I noticed that the xml tag had lost its attributes in version 1.4.0, specifically the ones related to the build process and tools version:
ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
As a result, the build started crashing, prompting me to reinstate these attributes to avoid errors. After adding these back, I encountered two new issues related to the RtCli of the Reinforced.Typings library, which I am currently unable to resolve:
Severity Description File Code Project Line Suppression State Error The "RtCli" task could not be initialized with its input parameters. ViewModels
and...
Severity Description File Code Project Line Suppression State Error The "BuildDirectory" parameter is not supported by the "RtCli" task. Verify the parameter exists on the task, and it is a settable public instance property. ViewModels
Though I appreciate the updates made to the tool, I have decided to revert back to version 1.3.7 for now to avoid these issues.
If the author or anyone else reading this could offer assistance, it would be greatly appreciated.