Skip to content

Commit

Permalink
fix: NugetAssemblyLocator should load assemblies > .net 5
Browse files Browse the repository at this point in the history
  • Loading branch information
ky-one committed Feb 13, 2024
1 parent 7fe2bd2 commit f74ec98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Core.Common.Standard/KY.Core.Common.Standard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>KY.Core</RootNamespace>
<AssemblyName>KY.Core.Common</AssemblyName>
<Version>4.34.0</Version>
<Version>4.34.1</Version>
<Authors>KY-Programming</Authors>
<Company>KY-Programmingp</Company>
<Product>KY.Core</Product>
<Copyright>2022 - KY-Programming</Copyright>
<Copyright>2024 - KY-Programming</Copyright>
<Description>KY.Core.Common for .net Standard
Contains Dependency Injection, Module Loader and some helper classes
</Description>
Expand Down
2 changes: 1 addition & 1 deletion Core.Common.Standard/Nuget/NugetAssemblyLocator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class NugetAssemblyLocator

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

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

public List<SearchLocation> Locations { get; }
Expand Down

0 comments on commit f74ec98

Please sign in to comment.