-
Notifications
You must be signed in to change notification settings - Fork 558
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
TargetFramework logic insufficient for .NET 5 #4387
Comments
cc @mconnew |
This is probably fine because WCF has not been updated to .NET 5.0, we are still staying on .NET 3.0. |
@imcarolwang can you please take a look at this issue? |
This also impacts the new .NET6 based Xamarin projects which use A workaround is to temporarily change the TFM in the project to |
@imcarolwang, can you please verify whether these new versions are already included? |
In PR #4650 we added support of net5.0-* and net6.0-* targets, the code has been merged so the next release of dotnet-svcutil and WCF Connected Service tool should support project types such as |
@imcarolwang the code hardcodes net5.0 and net6.0 though so it'll break again on net7.0:
|
Address in PR #4893 which is under review. |
Fix is in and released to dotnet-svcutil version 2.1.0. Closing issue. |
With .NET 5 we are introducing a new style of target framework that includes target platform information (for example, net5.0-windows). This repo contains logic that will break with these new target framework and duplicated target framework logic.
Details:
The text was updated successfully, but these errors were encountered: