Not compatible with dot net core 1.1
See original GitHub issueIs dotnet core compatibility on the roadmap for this project? I would love to use it. Thanks!
Errors in C:\Users\[REDACTED].xproj
Package TypeGen 1.4.1 is not compatible with netcoreapp1.1 (.NETCoreApp,Version=v1.1). Package TypeGen 1.4.1 supports: net (.NETFramework,Version=v0.0)
One or more packages are incompatible with .NETCoreApp,Version=v1.1.
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
NET Framework 1.1 isn't supported - Windows Client
Microsoft .NET Framework version 1.1 is not supported on any version of Windows 7 or Windows Server 2008 R2 and higher Operating Systems....
Read more >Compatibility to .net Core 1.1 · Issue #7
I'm currently trying out .net core, using the (at least I think so) current version and get the following error: Package BingMapsRESTToolkit ...
Read more >asp.net - Package [some package] is not compatible with ...
NET Core are incompatible. ... It all depends on other other dependencies and their compatibility with dotnet core.
Read more >Please stop lying about .NET Standard 2.0 support!
NET Core 3.0 are now out of support. According to the original PR and this document about the change: Continuing to build for...
Read more >.NET - Wikipedia
NET is a free and open-source, managed computer software framework for Windows, Linux, and macOS operating systems. It is a cross-platform successor to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m happy to announce that TypeGen 1.5.0 has just been released, which provides support for .NET Standard 1.3. This means that you can install it if you have a .NET Core 1.x or .NET 4.6 application (for .NET < 4.6 support, you can still use TypeGen 1.4.1, which has essentially the same functionality).
If you’re getting an error when installing the NuGet package, saying that it’s incompatible with .NET Core, you may execute this command to clear the NuGet cache:
./nuget.exe locals -clear all
If you’re using CLI with a .NET Core app, you probably also need to add this to your tgconfig.json:
"externalAssemblyPaths": ["C:/Users/[user_name]/.nuget/packages"]
This will allow to load NuGet dependencies when reading the project’s assembly, as they cannot be resolved automatically.Also, please ignore the “build not passing” icon on the main page for the time being. It’s because AppVeyor doesn’t recognise Visual Studio 2017 RC projects.
In case of any problems/questions not related to this topic, please raise another issue or contact me on e-mail.
Hope the new version works well! 😉
This is fantastic, thank you so much! I’m having having some troubles getting the CLI to work, possibly related to VS2015. I’ll email you about it.