Open Closed

Solution with Blazor UI points to Blazorise version which not available in nuget. #637


User avatar
0
dev1.abp.advantiss created

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

  • ABP Framework version: vX.X.X
  • UI type: Blazor
    • Tiered (MVC) or Identity Server Seperated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:

Hi Solution with Blazor UI points to Blazorise version 0.9.3-preview2 which not available in nuget yet, so solution can not restore packages and build. Best regards Yuriy


2 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Blazorise package are available on myget. You can add https://www.myget.org/F/blazorise/api/v3/index.json to your nuget.config file.

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <packageSources>
            <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
            <add key="BlazoriseMyGet" value="https://www.myget.org/F/blazorise/api/v3/index.json" />
        </packageSources>
    </configuration>
    
  • User Avatar
    0
    fmaurizio created

    Hi, At least on my project, on top of above mentioned "BlazoriseMyGet", I had to manually add, using nuget manager the following:

    • Blazorise.BootStrap
    • Blazorise.Icons.FontAwesome
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11