Base solution for your next web application
Open Closed

Problem after Upgrade #1688


User avatar
0
hugol created

Hi there,

I've update my project to the lastest version using the following commands:

get-project -all | get-package | ?{ $_.Id -like 'Abp*' } | update-package
Install-Package Abp.Zero
Install-Package Abp.Zero.Ldap
Install-Package Abp.Zero.EntityFramework
Install-Package Abp.Zero.NHibernate

and I'm now getting the following error: Severity Code Description Project File Line Suppression State Error CS0246 The type or namespace name 'IValidate' could not be found (are you missing a using directive or an assembly reference?) Mood2Success.Test_PlaygroundPrj.Application C:_Projects\Test_PlaygroundPrj\Mood2Success.Test_PlaygroundPrj.Application\Configuration\Host\Dto\EmailSettingsEditDto.cs 5 Active

The project reference is: Assembly Abp C:_Projects\Test_PlaygroundPrj\packages\Abp.0.12.0.0\lib\net452\Abp.dll Assembly Abp.Zero C:_Projects\Test_PlaygroundPrj\packages\Abp.Zero.0.12.0.0\lib\net452\Abp.Zero.dll

Do you know what do I need to do to sort this problem?

Kind regards, Hugo


2 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    IValidate interface is removed. You can also remove IValidate interface usages from your project. Please see this issue <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/1199">https://github.com/aspnetboilerplate/as ... ssues/1199</a>.

  • User Avatar
    0
    hugol created

    Thank you very much for the help ismcagdas.

    Cheers Hugo