[MLKit] Disabling MLKit for now due to dependencies

This commit is contained in:
Israel Soto 2022-02-01 17:27:12 -06:00 коммит произвёл Israel Soto
Родитель a1afd1030b
Коммит 79905d00d9
3 изменённых файлов: 15 добавлений и 15 удалений

Просмотреть файл

@ -4,7 +4,7 @@ VisualStudioVersion = 17.0.32112.339
MinimumVisualStudioVersion = 15.0.26124.0
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "source", "source", "{66A8A447-CECE-4C0D-9F8E-8EC790A141F3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{69028465-228C-475F-A932-A161B6F17B75}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples-using-source", "samples-using-source", "{69028465-228C-475F-A932-A161B6F17B75}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Firebase", "Firebase", "{87DAFAF8-C745-44F0-BC8A-503BF4A97082}"
EndProject

Просмотреть файл

@ -187,7 +187,7 @@ Task ("samples")
c.Restore = true;
c.MaxCpuCount = 0;
c.Targets.Clear();
c.Targets.Add($@"samples{BACKSLASH}{target}");
c.Targets.Add($@"samples-using-source{BACKSLASH}{target}");
});
});

Просмотреть файл

@ -72,19 +72,19 @@ var ARTIFACTS = new Dictionary<string, Artifact> {
{ "Google.SignIn", GOOGLE_SIGN_IN_ARTIFACT },
{ "Google.TagManager", GOOGLE_TAG_MANAGER_ARTIFACT },
{ "MLKit.Core", MLKIT_CORE_ARTIFACT },
{ "MLKit.TextRecognition", MLKIT_TEXT_RECOGNITION },
{ "MLKit.Vision", MLKIT_VISION },
{ "MLKit.TextRecognition.Latin", MLKIT_TEXT_RECOGNITION_LATIN },
{ "MLKit.TextRecognition.Chinese", MLKIT_TEXT_RECOGNITION_CHINESE },
{ "MLKit.TextRecognition.Devanagari", MLKIT_TEXT_RECOGNITION_DEVANAGARI },
{ "MLKit.TextRecognition.Japanese", MLKIT_TEXT_RECOGNITION_JAPANESE },
{ "MLKit.TextRecognition.Korean", MLKIT_TEXT_RECOGNITION_KOREAN },
{ "MLKit.FaceDetection", MLKIT_FACE_DETECTION },
{ "MLKit.BarcodeScanning", MLKIT_BARCODE_SCANNING },
{ "MLKit.ImageLabeling", MLKIT_IMAGE_LABELING },
{ "MLKit.ObjectDetection", MLKIT_OBJECT_DETECTION },
{ "MLKit.DigitalInkRecognition", MLKIT_DIGITAL_INK_RECOGNITION },
// { "MLKit.Core", MLKIT_CORE_ARTIFACT },
// { "MLKit.TextRecognition", MLKIT_TEXT_RECOGNITION },
// { "MLKit.Vision", MLKIT_VISION },
// { "MLKit.TextRecognition.Latin", MLKIT_TEXT_RECOGNITION_LATIN },
// { "MLKit.TextRecognition.Chinese", MLKIT_TEXT_RECOGNITION_CHINESE },
// { "MLKit.TextRecognition.Devanagari", MLKIT_TEXT_RECOGNITION_DEVANAGARI },
// { "MLKit.TextRecognition.Japanese", MLKIT_TEXT_RECOGNITION_JAPANESE },
// { "MLKit.TextRecognition.Korean", MLKIT_TEXT_RECOGNITION_KOREAN },
// { "MLKit.FaceDetection", MLKIT_FACE_DETECTION },
// { "MLKit.BarcodeScanning", MLKIT_BARCODE_SCANNING },
// { "MLKit.ImageLabeling", MLKIT_IMAGE_LABELING },
// { "MLKit.ObjectDetection", MLKIT_OBJECT_DETECTION },
// { "MLKit.DigitalInkRecognition", MLKIT_DIGITAL_INK_RECOGNITION },
};
void SetArtifactsDependencies ()