Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "maliming"

try:

On the Anzure VM you should change the IP or domain name to access the api.

The current privilege system does not have the capability of data permissions. You can take a look at data filtering. https://aspnetboilerplate.com/Pages/Documents/Data-Filters

Answer

Sorry, I copied it incorrectly. Does the following code exist?

<ItemGroup>
     <EmbeddedResource Include="wwwroot\swagger\ui\index.html">
       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
     </EmbeddedResource>
   </ItemGroup>
Answer

Add the following content to your project's csproj file.

<ItemGroup>
    <Content Remove="wwwroot\swagger\ui\index.html" />
 </ItemGroup>
Answer

I think your problem is in

options.IndexStream = () => Assembly.GetExecutingAssembly() .GetManifestResourceStream("ELEVEN_SOFT.Myapp.Web.wwwroot.swagger.ui.index.html");

Please check: var names = Assembly.GetExecutingAssembly().GetManifestResourceNames().ToList();

see:https://github.com/aspnetboilerplate/module-zero-core-template/issues/233#issuecomment-389168846

Try to inherit the ITransientDependency interface

public class YourController : ITransientDependency

Try using it under your PreInitialize method:

IocManager.IocContainer.Register(Component.For<IConverter>().LifestyleSingleton().UsingFactoryMethod(() => new SynchronizedConverter(new PdfTools())));

This is just a hint of VS, It may be possible to restart vs. it won't have any effect.

Have you tried to restore the package? For example: execute: yarn

https://docs.aspnetzero.com/documents/zero/latest/Getting-Started-Angular

Showing 2561 to 2570 of 2998 entries