skip to Main Content

How to add DLL reference in Visual Studio Code

I'm working on an application where I can get the CPU and GPU temperature. I followed the steps here (http://www.lattepanda.com/topic-f11t3004.html ) while developing the application, but I'm using VS Code and I couldn't add the OpenHardwareMonitorLib.dll file as a reference…

VIEW QUESTION

I want to show multiple pages with routing when user is not Authorized in Blazor – Asp.net

I have App.razor file looking like this: @using MyFirstServerSideBlazor.Pages <CascadingAuthenticationState> <Router AppAssembly="@typeof(App).Assembly"> <Found Context="routeData"> <AuthorizeView> <Authorized> <RouteView DefaultLayout="@typeof(MainHeaderLayout)" RouteData="@routeData" /> </Authorized> <NotAuthorized> <RouteView DefaultLayout="@typeof(LoginBody)" RouteData="@routeData" /> </NotAuthorized> </AuthorizeView> </Found> <NotFound> <PageTitle>Not found</PageTitle> <p role="alert">Sorry, there's nothing at this address.</p> </NotFound>…

VIEW QUESTION
Back To Top
Search