Skip to content

Commit 3f24d0a

Browse files
committed
Address copilot review
1 parent f7c5263 commit 3f24d0a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Azure.Functions.Sdk/Targets/Azure.Functions.Sdk.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
8383
<_FunctionsExecutable>dotnet</_FunctionsExecutable>
8484
<!-- If self-contained, get the name of the .exe to run. This also covers PublishAot scenarios. -->
8585
<_FunctionsExecutable Condition="'$(SelfContained)' == 'true'">{WorkerRoot}$(AssemblyName)$(_NativeExecutableExtension)</_FunctionsExecutable>
86-
<_FunctionsExecutable Condition="$(TargetFrameworkIdentifier) == '.NETFramework'">{WorkerRoot}$(TargetName)$(TargetExt)</_FunctionsExecutable>
86+
<_FunctionsExecutable Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">{WorkerRoot}$(TargetName)$(TargetExt)</_FunctionsExecutable>
8787
</PropertyGroup>
8888
</Target>
8989

src/Azure.Functions.Sdk/Tasks/GenerateWorkerConfig.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ public GenerateWorkerConfig()
2626
}
2727

2828
/// <summary>
29-
/// Gets or sets the apps executable path.
29+
/// Gets or sets the app's executable path.
3030
/// </summary>
3131
/// <remarks>
3232
/// This is typically one of the following:
3333
/// 1. netcoreapp: the dotnet executable
34-
/// 2. netcoreapp self-contained: the apps executable
35-
/// 3. netfx: the apps executable
34+
/// 2. netcoreapp self-contained: the app's executable
35+
/// 3. netfx: the app's executable
3636
/// </remarks>
3737
[Required]
3838
public string Executable { get; set; } = string.Empty;
3939

4040
/// <summary>
41-
/// Gets or sets the apps entry point.
41+
/// Gets or sets the app's entry point.
4242
/// </summary>
4343
/// <remarks>
44-
/// This is typically the apps dll, which is passed to the dotnet executable.
44+
/// This is typically the app's dll, which is passed to the dotnet executable.
4545
/// </remarks>
4646
[Required]
4747
public string EntryPoint { get; set; } = string.Empty;

0 commit comments

Comments
 (0)