Import from internal git

This commit is contained in:
2025-10-11 13:08:09 +02:00
commit 97aaa715dc
175 changed files with 7014 additions and 0 deletions

20
Core/ISpecFile.cs Normal file
View File

@@ -0,0 +1,20 @@
using Core.SpecConfig;
namespace Core;
public interface ISpecFile
{
public Location Location { get; }
public string Name { get; }
public string Folder { get; }
public ISet<string> ScopedRefs { get; set; }
public SpecType SpecType { get; }
public string NugetPackage { get; }
public string MavenGroup { get; }
public string NpmPackage { get; }
public string Version { get; }
public int Priority { get; }
public Queue<ISpecFile>GetTasksBy(Language language, GenerationType type);
}