practicekea_backend/microservices/_layers/common/Path.cs

20 lines
505 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Common
{
public static class Path
{
//public static string XmlCommentsFilePath
//{
// get
// {
// var basePath = PlatformServices.Default.Application.ApplicationBasePath;
// var fileName = typeof(Startup).GetTypeInfo().Assembly.GetName().Name + ".xml";
// return Path.Combine(basePath, fileName);
// }
//}
}
}