We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the following source file and target file 1.source file
<?xml version="1.0" encoding="UTF-8"?> <configuration> <runtime> <assemblyBinding> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" /> </dependentAssembly> </assemblyBinding> </runtime> </configuration>
2.target file
<?xml version="1.0" encoding="UTF-8"?> <configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31BF3856AD364E35" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-5.6.4.0" newVersion="5.6.4.0" /> </dependentAssembly> </assemblyBinding> </runtime> </configuration>
3.when I generated the patch file,I got this
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" xdt:Transform="SetAttributes(xmlns)"> <dependentAssembly> <assemblyIdentity name="Microsoft.Data.Edm" publicKeyToken="31BF3856AD364E35" xdt:Transform="SetAttributes(name,publicKeyToken)" /> <bindingRedirect oldVersion="0.0.0.0-5.6.4.0" newVersion="5.6.4.0" xdt:Transform="Replace" xmlns="urn:schemas-microsoft-com:asm.v1" /> </dependentAssembly> </assemblyBinding> </runtime> </configuration>
4.After applying the patch to source file,I got nothing. The base.xml keep the same as before.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the following source file and target file
1.source file
2.target file
3.when I generated the patch file,I got this
4.After applying the patch to source file,I got nothing. The base.xml keep the same as before.
The text was updated successfully, but these errors were encountered: