Changed to include adf

This commit is contained in:
hiroj
2020-05-20 20:13:12 +09:00
parent c0fe54a4de
commit b148a6f008

View File

@@ -180,30 +180,7 @@ namespace VRM.DevOnly.PackageExporter
string[] fileNames
)
{
CreateUnityPackageWithoutAsmDefs(outputDir, name, containsPath, basePath, fileNames);
CreateUnityPackageOnlyWithAsmDefs(outputDir, name, containsPath, basePath, fileNames);
}
public static void CreateUnityPackageWithoutAsmDefs(
string outputDir,
string name,
string[] containsPath,
string basePath,
string[] fileNames
)
{
CreateUnityPackageStandalone(outputDir, name, containsPath, basePath, fileNames, null, new string[] {".asmdef"});
}
public static void CreateUnityPackageOnlyWithAsmDefs(
string outputDir,
string name,
string[] containsPath,
string basePath,
string[] fileNames
)
{
CreateUnityPackageStandalone(outputDir, name + ".asmdef", containsPath, basePath, fileNames, new string[] {".asmdef"}, null);
CreateUnityPackageStandalone(outputDir, name, containsPath, basePath, fileNames, null, null);
}
public static void CreateUnityPackageStandalone(