Skip to content

Commit

Permalink
samples: Fix dotnet sample
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
AntonioND committed Sep 15, 2020
1 parent fcd4881 commit 943979c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"configProperties": {
"System.Globalization.Invariant": true
}
}

0 comments on commit 943979c

Please sign in to comment.