Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Couvreur <jcouv@users.noreply.github.com>2018-03-01 08:37:14 +0300
committerJan Kotas <jkotas@microsoft.com>2018-03-01 08:37:14 +0300
commit552e76b3aee63ac76020edee8f0f67ebcd1476ef (patch)
tree986aacb263fca773ea2d4c485f5c02a83763b542
parent2a8438440b1d2303849822b71fbbf8ddfbaa9f45 (diff)
Use correct name to fetch embedded resource (#5464)
-rw-r--r--src/ILVerification/src/Verifier.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ILVerification/src/Verifier.cs b/src/ILVerification/src/Verifier.cs
index b9780d2c0..9341ef395 100644
--- a/src/ILVerification/src/Verifier.cs
+++ b/src/ILVerification/src/Verifier.cs
@@ -18,7 +18,7 @@ namespace ILVerify
public class Verifier
{
private Lazy<ResourceManager> _stringResourceManager =
- new Lazy<ResourceManager>(() => new ResourceManager("ILVerify.Resources.Strings", typeof(Verifier).GetTypeInfo().Assembly));
+ new Lazy<ResourceManager>(() => new ResourceManager("FxResources.ILVerification.SR", typeof(Verifier).GetTypeInfo().Assembly));
private ILVerifyTypeSystemContext _typeSystemContext;