error creating the route with name 'Nop.Plugin.Myplugin.Configure' and template 'Plugins/MyPluginl/Configure'

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
I have had the same mistake as you

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <!--<DefineConstants>TRACE;DEBUG;NET461;</DefineConstants>-->
    <!--<Optimize>true</Optimize>-->
    <OutputPath>..\..\Presentation\Nop.Web\Plugins\Misc.Sample\</OutputPath>
  </PropertyGroup>


There was/is 1 line missing:


​ ​
​ <OutDir>$(OutputPath)</OutDir>


it has got to look like this

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <!--<DefineConstants>TRACE;DEBUG;NET461;</DefineConstants>-->
    <!--<Optimize>true</Optimize>-->
    <OutputPath>..\..\Presentation\Nop.Web\Plugins\Misc.Sample\</OutputPath>
<OutDir>$(OutputPath)</OutDir>
  </PropertyGroup>
6 years ago
yes perfect, I also faced same issue.

I added
<OutDir>$(OutputPath)</OutDir>
and it's work for me.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.