-
Notifications
You must be signed in to change notification settings - Fork 67
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
Enabling multiple TFMs / tooling suffixes #632
Conversation
de1630f
to
e2f92f9
Compare
e2f92f9
to
0528a84
Compare
src/Microsoft.NET.Sdk.Functions.MSBuild/Targets/Microsoft.NET.Sdk.Functions.targets
Show resolved
Hide resolved
2b83280
to
2a683ea
Compare
src/Microsoft.NET.Sdk.Functions.MSBuild/Targets/Microsoft.NET.Sdk.Functions.targets
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure about intent for a few current changes and would appreciate some clarity on those.
src/Microsoft.NET.Sdk.Functions.MSBuild/Targets/Microsoft.NET.Sdk.Functions.targets
Outdated
Show resolved
Hide resolved
src/Microsoft.NET.Sdk.Functions.MSBuild/Targets/Microsoft.NET.Sdk.Functions.targets
Outdated
Show resolved
Hide resolved
98c7f8f
to
5762af6
Compare
Since I'm the original author of the PR, I am unable to approve, but the current state looks good to me. Let's go ahead and get this in. |
Since i am not the original author i can approve. |
@@ -12,7 +12,7 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and | |||
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||
|
|||
<PropertyGroup> | |||
<_FunctionsTaskFramework>net6.0</_FunctionsTaskFramework> | |||
<_FunctionsTaskFramework>$(TargetFramework)</_FunctionsTaskFramework> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is what broke builds later on...
Updates to support .NET 8 builds in the future, in alignment with upcoming tooling feed changes.
This takes inspiration from what's done in the isolated worker mode. However, note that the conditions here are just based on TFM. This will override AzureFunctionsVersion, which should be perfectly fine here.