Hi
Would it be possible to move the settings in the environment.ts file to the appsettings.json file in the HttpApi.Host project.
I am aware of how to add custom settings using the ISettingDefinitionContext etc. I am able to see those settings in the ConfigState:setting variable when running my angular apps. Is possible to replace the ConfigState:environment state with the settings from appsettings.json file and if so how would I go about doing this?
The reason I want to do this is to avoid having to build my angular apps for different environments and be able to control the settings in a file that I can modify at runtime. ie appsettings.json which will handle different settings for different environments using transforms.
Regards,
Warick
Hi
I am receiving the following error when doing a Production build of our Angular app: ''' ERROR in Can't resolve all parameters for ɵj in /node_modules/@volo/abp.ng.account/volo-abp.ng.account.d.ts: ([object Object], [object Object], ?, [object Object], [object Object], [object Object]). '''
This does not happen when doing a normal "ng build".
We are using version 2.3.0 of abp npm packages
Hi
I am having an issue adding a menu item at the same level as the "Administration" (AbpUiNavigation::Menu:Administration) menu item with child items that will be part of a lazy loaded module?
I have looked at the following github issues and the docs but there is no comprehensive documentation explaining how to achieve what I need to. https://github.com/abpframework/abp/issues/2186 https://github.com/abpframework/abp/pull/2425 https://docs.abp.io/en/abp/dev/Tutorials/Part-1?UI=NG
I have also had a look at the source code and tried various things from there in my code. ie using addAbpRoutes but still no luck.
Can I please get some info or code examples on how to achieve this?
Thanks.
Hi
I am getting the following error in my Azure Devops build pipeline on the '.NET Core Build' task.
##[error]/home/vsts/.nuget/packages/sourcelink.create.commandline/2.8.3/build/SourceLink.Create.CommandLine.targets(30,5): Error : unable to convert OriginUrl: https://eohesa@dev.azure.com/eohesa/NextecBase/_git/NextecBase
This is what my pipeline yaml looks like:
- job: aspnetcore
displayName: .NET Core
pool:
vmImage: 'ubuntu-latest'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Install .NET Core Sdk'
inputs:
version: 3.1.101
- task: DotNetCoreCLI@2
displayName: '.NET Core Restore'
inputs:
command: restore
verbosityRestore: Normal
feedsToUse: config
nugetConfigPath: NexBase/aspnet-core/NuGet.Config
projects: |
NexBase/aspnet-core/**/*.csproj
- task: DotNetCoreCLI@2
displayName: '.NET Core Build'
inputs:
command: build
projects: |
NexBase/aspnet-core/src/NexBase.DbMigrator/NexBase.DbMigrator.csproj
NexBase/aspnet-core/src/NexBase.HttpApi.Host/NexBase.HttpApi.Host.csproj
arguments: '--configuration $(BuildConfiguration) --no-restore'
Can you please provide an example to get my build working or provide some feedback to get this working. I have googled the problem and I found this issue:
[https://github.com/dotnet/sourcelink/issues/166]
One of the comments suggests: "Could you try to remove SourceLink.Create.CommandLine 2.8.3? The only package reference you need to get SoruceLink working for Azure DevOps hosted repo is Microsoft.SourceLink.Vsts.Git. See https://github.com/dotnet/sourcelink#visual-studio-team-services".
Please advise on a way forward
Hi
Is there a way to customize the Lepton theme to use our company's color scheme?
If so, how would I go about doing this?
We are using the Angular start up template.
Regards,
Warick