Skip to content
This repository was archived by the owner on Nov 6, 2024. It is now read-only.

Commit 0c0cc8e

Browse files
committed
TFM changes + spelling
1 parent ab3fe7b commit 0c0cc8e

File tree

1 file changed

+5
-21
lines changed

1 file changed

+5
-21
lines changed

utilities.cake

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,7 @@ Task ("spell-check")
580580
"TLS",
581581
"InteractiveMedia",
582582
"V3",
583+
"InjectApi",
583584
};
584585
var dictionary_custom = WeCantSpell.Hunspell.WordList.CreateFromWords(words);
585586

@@ -1697,9 +1698,7 @@ Task("java-resolution-analysis")
16971698

16981699
string dir = "output/java-resolution-analysis";
16991700
EnsureDirectoryExists(dir);
1700-
EnsureDirectoryExists($"{dir}/net6.0-android");
1701-
EnsureDirectoryExists($"{dir}/net7.0-android");
1702-
EnsureDirectoryExists($"{dir}/monoandroid12.0");
1701+
EnsureDirectoryExists($"{dir}/net8.0-android");
17031702

17041703
ConcurrentDictionary
17051704
<
@@ -1740,7 +1739,7 @@ Task("java-resolution-analysis")
17401739

17411740
java_resolution_analysis.TryAdd
17421741
(
1743-
"net7.0-android",
1742+
"net8.0-android",
17441743
new ConcurrentDictionary
17451744
<
17461745
string,
@@ -1755,6 +1754,7 @@ Task("java-resolution-analysis")
17551754
>
17561755
>()
17571756
);
1757+
/*
17581758
java_resolution_analysis.TryAdd
17591759
(
17601760
"net6.0-android",
@@ -1772,23 +1772,7 @@ Task("java-resolution-analysis")
17721772
>
17731773
>()
17741774
);
1775-
java_resolution_analysis.TryAdd
1776-
(
1777-
"monoandroid12.0",
1778-
new ConcurrentDictionary
1779-
<
1780-
string,
1781-
Dictionary
1782-
<
1783-
string,
1784-
(
1785-
string[] lines, // lines
1786-
Dictionary<string, int> types, // types
1787-
Dictionary<string, int> types_filtered // types
1788-
)
1789-
>
1790-
>()
1791-
);
1775+
*/
17921776

17931777
Parallel.ForEach
17941778
(

0 commit comments

Comments
 (0)