Thursday, April 27, 2017

mark or make job as durable in Quartz .net?

Mark or make job as durable in Quartz .net?   This is the code segment to mark Job as durable in case you are not trigging through ITrigger. public static ISchedulerFactory schedFact = new StdSchedulerFactory();         IScheduler sched = schedFact.GetScheduler(); IJobDetail jobEOD = JobBuilder.Create<Facilities>().WithIdentity("Facilities").StoreDurably(true).Build();...

Tuesday, April 25, 2017

Exclude controllers methods from docs or swagger

Exclude controllers methods from docs or swagger If you would like to ignore controller’s action method from documentation or swagger ,kindly out an annotation just above an action method.  [ApiExplorerSettings(IgnoreApi = true)] Than...

Tuesday, April 18, 2017

There was an error running the selected code generator dotnet -aspnet-generator: Resolution for this issue is as given below: Kindly put the following line of code into .csproj file if you have created the solution in Visual Studio 2017 under item group. Open .csproj file either in notepad or desired editor .paste the following line in ItemGroup...
Unable to resolve service for type 'Microsoft.Extensions.Configuration.IConfiguration' while attempting to activate Resolution: Put this line in Startup.cs file under Configuration Services Method to inject dependency as shown below: services.AddSingleton<IConfiguration>(Configuration); // This method gets called by the runtime. Use...

Monday, April 17, 2017

ASP.NET Core 1.0 ConfigurationBuilder().AddJsonFile(“appsettings.json”); not finding file Or "The configuration file 'appsettings.json' was not found and is not optional. The physical path is   "The configuration file 'appsettings.json' was not found and is not optional. The physical path is Resolution I was working on .net core for...