Skip to content

Commit f74ec98

Browse files
committed
fix: NugetAssemblyLocator should load assemblies > .net 5
1 parent 7fe2bd2 commit f74ec98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Core.Common.Standard/KY.Core.Common.Standard.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>KY.Core</RootNamespace>
66
<AssemblyName>KY.Core.Common</AssemblyName>
7-
<Version>4.34.0</Version>
7+
<Version>4.34.1</Version>
88
<Authors>KY-Programming</Authors>
99
<Company>KY-Programmingp</Company>
1010
<Product>KY.Core</Product>
11-
<Copyright>2022 - KY-Programming</Copyright>
11+
<Copyright>2024 - KY-Programming</Copyright>
1212
<Description>KY.Core.Common for .net Standard
1313
Contains Dependency Injection, Module Loader and some helper classes
1414
</Description>

Core.Common.Standard/Nuget/NugetAssemblyLocator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class NugetAssemblyLocator
1616

1717
private readonly List<string> resolvedAssemblies = new List<string>();
1818

19-
public static List<string> FrameworkFolders { get; } = new List<string>(new[] { "netstandard*", "netcore*", "net5*", "net4*" });
19+
public static List<string> FrameworkFolders { get; } = new List<string>(new[] { "netstandard*", "net*" });
2020
public static List<string> NugetFolders { get; } = new List<string>(new[] { "lib", "ref" });
2121

2222
public List<SearchLocation> Locations { get; }

0 commit comments

Comments
 (0)