Skip to content

Commit cbfcf23

Browse files
committed
samples: Fix dotnet sample
When trying to run the dotnet sample the following error happened: ``` FailFast: Couldn't find a valid ICU package installed on the system. Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. ``` By adding this file, the configuration flag mentioned in the error message is set to true, and the sample works again. [1] [1] dotnet/core#2186 (comment)
1 parent 539b65a commit cbfcf23

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"configProperties": {
3+
"System.Globalization.Invariant": true
4+
}
5+
}

0 commit comments

Comments
 (0)