From 44fd165dec262bb6236efa5dcf0718f304ae5ee8 Mon Sep 17 00:00:00 2001 From: yubaolee Date: Thu, 3 Mar 2022 23:13:33 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=8E=B7=E5=8F=96=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E6=A0=B9=E7=9B=AE=E5=BD=95=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Infrastructure/Utilities/ProjectPath.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Infrastructure/Utilities/ProjectPath.cs b/Infrastructure/Utilities/ProjectPath.cs index 4e209caa..189f726e 100644 --- a/Infrastructure/Utilities/ProjectPath.cs +++ b/Infrastructure/Utilities/ProjectPath.cs @@ -45,7 +45,7 @@ namespace Infrastructure.Utilities return null; } if (directoryInfo.Exists - && directoryInfo.GetDirectories().Where(x => x.Name.LastIndexOf(".Mvc") != -1).FirstOrDefault() != null) + && directoryInfo.GetDirectories().Where(x => x.Name.LastIndexOf(".App") != -1).FirstOrDefault() != null) { return directoryInfo; }