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

Activities of "maliming"

What is the console output after executing refresh.bat?

I guess it might be that the service proxy was not updated when the new version was released. If you don't have a problem, it will be fine.

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())));

Showing 2561 to 2570 of 3000 entries