| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 604c567 commit 3835944
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -123,6 +123,11 @@ private static void AssemblyLoadHandler(object ob, AssemblyLoadEventArgs args) | |||
| 123 | 123 | ||
| 124 | 124 | internal static AssemblyName? TryParseAssemblyName(string name) | |
| 125 | 125 | { | |
| 126 | + // workaround for https://github.com/dotnet/runtime/issues/123951 | ||
| 127 | + if (name.IndexOfAny([Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar]) >= 0) | ||
| 128 | + { | ||
| 129 | + return null; | ||
| 130 | + } | ||
| 126 | 131 | try | |
| 127 | 132 | { | |
| 128 | 133 | return new AssemblyName(name); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ | |||
| 2 | 2 | <PropertyGroup> | |
| 3 | 3 | <TargetFrameworks>netstandard2.0</TargetFrameworks> | |
| 4 | 4 | <Platforms>AnyCPU</Platforms> | |
| 5 | - <LangVersion>10</LangVersion> | ||
| 5 | + <LangVersion>12</LangVersion> | ||
| 6 | 6 | <RootNamespace>Python.Runtime</RootNamespace> | |
| 7 | 7 | <AssemblyName>Python.Runtime</AssemblyName> | |
| 8 | 8 | <Nullable>enable</Nullable> | |
| Back | FazBrowse Home | New Git URL |
0 commit comments