Add support for separate native and managed code in packaged build

This commit is contained in:
Damian Korczowski
2021-07-03 19:12:23 +02:00
parent 2556edb8d3
commit 85398cbf3d
9 changed files with 42 additions and 28 deletions

View File

@@ -66,6 +66,17 @@ public:
return format;
}
/// <summary>
/// Checks if the given file is a native code.
/// </summary>
/// <param name="data">The cooking data.</param>
/// <param name="file">The file path.</param>
/// <returns>True if it's a native file, otherwise false.<returns>
virtual bool IsNativeCodeFile(CookingData& data, const String& file)
{
return false;
}
public:
/// <summary>