Skip to content

Commit 88202cc

Browse files
committed
fix AbpAspNetCoreDemo.PlugIn.dll path in unit test
1 parent 0fa1041 commit 88202cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/aspnet-core-demo/AbpAspNetCoreDemo/Startup.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ public IServiceProvider ConfigureServices(IServiceCollection services)
9292
string plugDllInPath = "";
9393
#if DEBUG
9494
plugDllInPath = Path.Combine(_env.ContentRootPath,
95-
@"..\AbpAspNetCoreDemo.PlugIn\bin\Debug\net7.0\AbpAspNetCoreDemo.PlugIn.dll");
95+
@"..\AbpAspNetCoreDemo.PlugIn\bin\Debug\net8.0\AbpAspNetCoreDemo.PlugIn.dll");
9696
#else
9797
plugDllInPath = Path.Combine(_env.ContentRootPath,
98-
@"..\AbpAspNetCoreDemo.PlugIn\bin\Release\net7.0\AbpAspNetCoreDemo.PlugIn.dll");
98+
@"..\AbpAspNetCoreDemo.PlugIn\bin\Release\net8.0\AbpAspNetCoreDemo.PlugIn.dll");
9999
#endif
100100
if (!File.Exists(plugDllInPath))
101101
{

0 commit comments

Comments
 (0)