dll conflicts

I'm using Blazor server side adding in the project the Syncfusion.Blazor 18.4.0.46 and after using several components it was necessary to add the Syncfusion.WorProcessor 18.4.0.46 to read data from word documents
In this way I received a lot of conflicts between several components present in both Syncfusion.Blazor and Syncfusion.WordProcessor.
How can I solve it ?
I tried to remove the Syncfusion.Blazor package adding then the single components like Syncfusion.Grid, Syncfusion.Notification and so on, but in this way the CSS are totally different I suppose because all the pages have a confused layout
Thanks in advance



6 Replies 1 reply marked as answer

SM Suriya Murugan Syncfusion Team March 5, 2021 09:18 AM UTC

Hi Walter, 

Syncfusion Greetings! 

From Vol 4 release [18.4.0.30], we have provided individual NuGet packages for components.   So if you want to use any other components, please refer it NuGet packages to resolve the reported conflicts. 
   
Please check the details from below link.    
   
  
  
Please refer the required dependency package  
   
To resolve style issue: Syncfusion.Blazor.Themes is a dependent package for Syncfusion.Blazor.Core NuGet, which is a dependent for all component packages.   
   
Also, try adding below line:   
   
<link rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" />   
   
Kindly check it and let us know still you are facing issue.   

Regards, 
Suriya M. 



WM Walter Martin March 5, 2021 12:47 PM UTC

Thanks for your answer
I try to add here in attachment my project semplified to show you the result
Actually I think I already tried to follow your suggestions but at the end the layout is totally wrong for the components SfSidebar SfTab and SfCard as you can see opening the project and then clicking on "new" on the left

My original project had only Syncfusion.Blazor library but after adding Syncfusion.Blazor.Worprocessor I removed Syncfusion.Blazor and added Syncfusion.Blazor.Grid, Syncfusion.Blazor.Card, Syncfusion.Blazor.Notification

Even adding    <link rel='nofollow' rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" /> didn't help
It's surely a CSS problem but I don't know how to solve it

Thanks



Attachment: Test_worprocessor_de47afe7.zip


SM Suriya Murugan Syncfusion Team March 8, 2021 10:26 AM UTC

Hi Walter,  
 
We have checked the provided code project and found the problem. You have referred styles like below: 
 
<link rel='nofollow' rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" /> 
 

Change it like below and try run sample(before install Syncfusion.Blazor.Themes nuget package) 

<link rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" /> 

Please let us know if you facing any other issue. 

Regards, 
Suriya M. 



WM Walter Martin March 8, 2021 10:37 AM UTC

You're right 
thanks, now it works
Best Regards


AA Adnan Ali February 16, 2022 05:43 PM UTC

I am facing the same issue in a Blazor WebAssembly Project. CSS for TreeGrids,Grids,Popups,Input fields is completely destroyed, Kindly let me know how can i resolve this issue



SM Suriya Murugan Syncfusion Team February 18, 2022 08:27 AM UTC

Hi Adnan,


We are able to reproduce the reported issue at our end also when applying the theme link as mentioned in the previous update. Refer the below code.


<link rel='nofollow' rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" />  


Kindly remove the above highlighted code example to resolve the reported issue. Please find the updated codes from below


<link rel='nofollow' href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" /> 


Please get back to us if you have further queries.


Regards,

Suriya M.


Marked as answer
Loader.
Up arrow icon