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

Activities of "ramezani583"

Hi, i use VS 2017.4.5 for build PhoneBook solution i have this error:

Could not find android.jar for API Level 26. This means the Android SDK platform for API Level 26 is not installed. Either install it in the Android SDK Manager (Tools > Open Android SDK Manager...), or change your Xamarin.Android project to target an API version that is installed. (C:\Program Files (x86)\Android\android-sdk\platforms\android-26\android.jar missing.) SSoft.PhoneBook.Mobile.Droid

hi, I use visual studio 2017 version 15.3.5 my solution: asp .net core & angular with .net framework 4.6.1

Error NU1202 Package Microsoft.EntityFrameworkCore.Tools.DotNet 2.0.0 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0). Package Microsoft.EntityFrameworkCore.Tools.DotNet 2.0.0 supports: netcoreapp2.0 (.NETCoreApp,Version=v2.0)

Error NU1202 Package Microsoft.Extensions.SecretManager.Tools 2.0.0 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0). Package Microsoft.Extensions.SecretManager.Tools 2.0.0 supports: netcoreapp2.0 (.NETCoreApp,Version=v2.0)

Error The version of Microsoft.NET.Sdk used by this project is insufficient to support references to libraries targeting .NET Standard 1.5 or higher. Please install version 2.0 or higher of the .NET Core SDK. SSoft.PhoneBook.Migrator C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\Microsoft\Microsoft.NET.Build.Extensions\Microsoft.NET.Build.Extensions.NETFramework.targets 57

Question

Hi, If I choose .net Core 2 framework for my solution, my users can't chat with friends in my web application (because SignalR is not available in .NET Core version)?

hi, can i convert or upgrade projects with ( spa,mvc5, angularjs) to core2 and angular4? what steps need to this change?

Hello, To use Combobox, radiobutton and checkedlistbox in web project(angular JS ), I need a sample (fill data and select the row for edit mode) Can you provide * .js and * .cshtml samples for me? Thank you for providing guidance.

hi, Why does not go to "catch" when an error occurred? Why error handling is not available to me?

protected virtual async Task CreateStudentAsync(CreateOrUpdateStudentInput input)
        {
            
            var student = new Student
            {
                StudentNumber = input.Student.StudentNumber,
                Name = input.Student.Name,
                Surname = input.Student.Surname,
                Degree = input.Student.Degree
            };
            try
            {
                await _studentRepository.InsertAsync(student); //It's done to get Id of the student.
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
                throw;
            }
            
        }

hi, i create Entity for entry cities and write vm.getCities = function () { vm.loading = true; cityService.getCities({ filter: vm.filterText }).then(function (result) { vm.cityGridOptions.data = result.data.items; }).finally(function () { vm.loading = false; }); }; such as role form!

But i have error "angular.js:14700 TypeError: vm.getcities is not a function" in Clint side! please help me!. Error.zip

Hi, i'm in final step in the "Phonebook" sample. for test multi tenant, i enable that and login with default tenant, but I cannot find "Tenant Management Page"!

Hi I'm implementing "DEVELOPING AN APPLICATION STEP BY STEP" I'm in step: "DELETING A PERSON" I changed the index.cshtml view to add a button and created a file named index.less But delete button do not fire any action! Related files have been attached. Which step do I do wrong? Please help me. phonebook.zip

hi, Could not load file or assembly 'netfx.force.conflicts' or one of its dependencies. Reference assemblies should not be loaded for execution. They can only be loaded in the Reflection-only loader context

Showing 21 to 30 of 32 entries