skip to Main Content

ASP.NET Boilerplate start project with CLI

Using ASP.Net Boilerplate (.net 8), whats the correct way to run the project using CLI on Linux. When listing the projects I get the following: ▶ dotnet sln list Project(s) ---------- src/SimpleTaskSsytem.Application/SimpleTaskSsytem.Application.csproj src/SimpleTaskSsytem.Core/SimpleTaskSsytem.Core.csproj src/SimpleTaskSsytem.EntityFrameworkCore/SimpleTaskSsytem.EntityFrameworkCore.csproj src/SimpleTaskSsytem.Migrator/SimpleTaskSsytem.Migrator.csproj src/SimpleTaskSsytem.Web.Core/SimpleTaskSsytem.Web.Core.csproj src/SimpleTaskSsytem.Web.Host/SimpleTaskSsytem.Web.Host.csproj test/SimpleTaskSsytem.Tests/SimpleTaskSsytem.Tests.csproj When trying…

VIEW QUESTION

Increase number until mets condition – Asp.net

I have creation of tenant Here is code var tenant = new Tenant(tenancyName, name) { IsActive = isActive, EditionId = editionId, SubscriptionEndDateUtc = subscriptionEndDate?.ToUniversalTime(), IsInTrialPeriod = isInTrialPeriod, ConnectionString = connectionString.IsNullOrWhiteSpace() ? null : SimpleStringCipher.Instance.Encrypt(connectionString) }; await CreateAsync(tenant); await _unitOfWorkManager.Current.SaveChangesAsync(); //To…

VIEW QUESTION
Back To Top
Search