-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cannot find package in nuget #357
Labels
Comments
Looks like it works if I pick .NET 6. Any plans to make this compatible with .NET 8? |
.NET 8 support is expected to work. What if you add this to your <ItemGroup>
<PackageReference Include="MetadataExtractor" Version="2.8.1" />
</ItemGroup> |
Just tested this on a .NET 8 console app and it worked for me:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MetadataExtractor" Version="2.8.1" />
</ItemGroup>
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WinForms project with .NET8. When trying to install the package from the Package Manager Console I get the below:
Not sure if this is the right place to ask for help with this, can anybody help?
The text was updated successfully, but these errors were encountered: