Compare commits

...

2 Commits

2 changed files with 17 additions and 3 deletions

View File

@ -37,9 +37,6 @@
<Reference Include="AyCode.Interfaces.Server">
<HintPath>..\..\..\..\..\..\Aycode\Source\AyCode.Core\AyCode.Services.Server\bin\FruitBank\Debug\net9.0\AyCode.Interfaces.Server.dll</HintPath>
</Reference>
<Reference Include="AyCode.Utils">
<HintPath>..\..\..\..\..\..\Aycode\Source\AyCode.Core\AyCode.Services.Server\bin\FruitBank\Debug\net9.0\AyCode.Utils.dll</HintPath>
</Reference>
</ItemGroup>
</Project>

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AyCode.Core.Consts;
namespace Mango.Nop.Core
{
public abstract class NopCommonConst: AcConst
{
//public static string DefaultLocale = "en-US";
//public static string BaseUrl = "https://localhost:7144";
//public static string LoggerHubName = "loggerHub";
}
}