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

Activities of "manojreddy"

But why it's not showing .net core 2.0 in the target framework dropdown list when you right-click the project and select properties.

Whats difference between .net standard and .net core?

What do you suggest? Should I target .net standard or .net core?

@aaron

public Dictionary<int, List<TaxonomyItemsLocDto>> GetLookupItems(GetLookupInput input)
        {
            var lookup = _commonRepository.GetAll()
                .Include(i => i.TaxonomyItems).Select(a=>a)
                .Where(p => input.MasterIds.Contains(p.TaxonomyMasterId) && p.AbpLanguages.Name == input.LanguageCode)
                .OrderBy(p => p.SortOrder)
                .ToList();

            var lookups = new List<TaxonomyItemsLocDto>(ObjectMapper.Map<List<TaxonomyItemsLocDto>>(lookup));

            Dictionary<int, List<TaxonomyItemsLocDto>> _lookup = new Dictionary<int, List<TaxonomyItemsLocDto>>();
            foreach (var l in lookups)
            {
                if (_lookup.ContainsKey(l.TaxonomyMasterId))
                {
                    _lookup[l.TaxonomyMasterId].Add(l);
                }
                else
                {
                    _lookup.Add(l.TaxonomyMasterId, new List<TaxonomyItemsLocDto>()
                    {
                        new TaxonomyItemsLocDto()
                        {
                            TaxonomyItemLocDesc = l.TaxonomyItemLocDesc,
                            TaxonomyMasterId = l.TaxonomyMasterId,
                            TaxonomyItemsId = l.TaxonomyItemsId,
                            TaxonomyItems = l.TaxonomyItems
                        }
                    });
                }
            }

            return _lookup;
        }

Any updates?

What’s difference between .core 2.0 and . net standards 2.0?

I cannot see .core 2.0 option in the target framework drop down in project properties. I can see only .net standards 1.1......... .net standards 2.0.

How will it impact by project which is based on abp framework?

Then I downloaded the project from aspnetzero site for core 2.0. In it’s project I can see .core 1.1 and core2.0 not .net standards, why?

Why I cannot see target framework.core 2.0 in the target framework?

I have downloaded code from aspnetzero site which was targeting 1.1.

I downloaded .net standard 2 sdk from Microsoft site. I’m trying to set target framework of projects to core2.0. But I cannot see this option. I’m seeing all .standdard in target framework drop down .

Then I downloaded the code from aspnetzero site for core2.0. In this project I can see target framework core 2.0.

So what’s difference between .core 2.0 and .net standards 2.0?

How it will impact my code which is using the abp framework.

and what about testingappsettings.json?

I want to use/read both json file. appsettings.json and testingappsettings.json

So, Could you help me with the working code? Thanks

Any updates?

Any updates?

Any updates?

Showing 81 to 90 of 199 entries