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.
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
Sorry, I copied it incorrectly. Does the following code exist?
<ItemGroup>
<EmbeddedResource Include="wwwroot\swagger\ui\index.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
Add the following content to your project's csproj file.
<ItemGroup>
<Content Remove="wwwroot\swagger\ui\index.html" />
</ItemGroup>
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())));