File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments