Make BlazorLinkerDescriptor public (#19649)
This was accidentally made non-public as part of the API review
This commit is contained in:
parent
e40fc36783
commit
247c0ddae9
|
|
@ -148,7 +148,7 @@
|
||||||
<Target
|
<Target
|
||||||
Name="_ResolveBlazorOutputsWhenLinked"
|
Name="_ResolveBlazorOutputsWhenLinked"
|
||||||
Condition="'$(BlazorWebAssemblyEnableLinking)' == 'true'"
|
Condition="'$(BlazorWebAssemblyEnableLinking)' == 'true'"
|
||||||
DependsOnTargets="_PrepareBlazorLinkerInputs;_Generate_BlazorLinkerDescriptor;_GenerateTypeGranularLinkerDescriptor;_LinkBlazorApplication">
|
DependsOnTargets="_PrepareBlazorLinkerInputs;_GenerateBlazorLinkerDescriptor;_GenerateTypeGranularLinkerDescriptor;_LinkBlazorApplication">
|
||||||
|
|
||||||
<!-- _BlazorLinkerOutputCache records files linked during the last incremental build of the target. Read the contents and assign linked files to be copied to the output. -->
|
<!-- _BlazorLinkerOutputCache records files linked during the last incremental build of the target. Read the contents and assign linked files to be copied to the output. -->
|
||||||
<ReadLinesFromFile File="$(_BlazorLinkerOutputCache)">
|
<ReadLinesFromFile File="$(_BlazorLinkerOutputCache)">
|
||||||
|
|
@ -179,10 +179,10 @@
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<UsingTask TaskName="BlazorCreateRootDescriptorFile" AssemblyFile="$(_BlazorTasksPath)" />
|
<UsingTask TaskName="BlazorCreateRootDescriptorFile" AssemblyFile="$(_BlazorTasksPath)" />
|
||||||
<Target Name="_Generate_BlazorLinkerDescriptor"
|
<Target Name="_GenerateBlazorLinkerDescriptor"
|
||||||
Inputs="@(IntermediateAssembly)"
|
Inputs="@(IntermediateAssembly)"
|
||||||
Outputs="$(_GeneratedBlazorLinkerDescriptor)"
|
Outputs="$(_GeneratedBlazorLinkerDescriptor)"
|
||||||
Condition="'@(_BlazorLinkerDescriptor)' == ''">
|
Condition="'@(BlazorLinkerDescriptor)' == ''">
|
||||||
|
|
||||||
<!-- Generate linker descriptors if the project doesn't explicitly provide one. -->
|
<!-- Generate linker descriptors if the project doesn't explicitly provide one. -->
|
||||||
|
|
||||||
|
|
@ -192,8 +192,8 @@
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<FileWrites Include="$(_GeneratedBlazorLinkerDescriptor)" />
|
<FileWrites Include="$(_GeneratedBlazorLinkerDescriptor)" />
|
||||||
<_BlazorLinkerDescriptor Include="$(_GeneratedBlazorLinkerDescriptor)" />
|
<BlazorLinkerDescriptor Include="$(_GeneratedBlazorLinkerDescriptor)" />
|
||||||
<_BlazorLinkerDescriptor Include="$(_BlazorBuiltInBclLinkerDescriptor)" />
|
<BlazorLinkerDescriptor Include="$(_BlazorBuiltInBclLinkerDescriptor)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
|
@ -207,7 +207,7 @@
|
||||||
OutputPath="$(_TypeGranularityLinkerDescriptor)" />
|
OutputPath="$(_TypeGranularityLinkerDescriptor)" />
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_BlazorLinkerDescriptor Include="$(_TypeGranularityLinkerDescriptor)" />
|
<BlazorLinkerDescriptor Include="$(_TypeGranularityLinkerDescriptor)" />
|
||||||
<FileWrites Include="$(_TypeGranularityLinkerDescriptor)" />
|
<FileWrites Include="$(_TypeGranularityLinkerDescriptor)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
@ -217,7 +217,7 @@
|
||||||
Name="_LinkBlazorApplication"
|
Name="_LinkBlazorApplication"
|
||||||
Inputs="$(ProjectAssetsFile);
|
Inputs="$(ProjectAssetsFile);
|
||||||
@(_BlazorManagedRuntimeAssemby);
|
@(_BlazorManagedRuntimeAssemby);
|
||||||
@(_BlazorLinkerDescriptor);
|
@(BlazorLinkerDescriptor);
|
||||||
$(MSBuildAllProjects)"
|
$(MSBuildAllProjects)"
|
||||||
Outputs="$(_BlazorLinkerOutputCache)">
|
Outputs="$(_BlazorLinkerOutputCache)">
|
||||||
|
|
||||||
|
|
@ -246,7 +246,7 @@
|
||||||
ILLinkPath="$(ComponentsWebAssemblyLinkerPath)"
|
ILLinkPath="$(ComponentsWebAssemblyLinkerPath)"
|
||||||
AssemblyPaths="@(_BlazorAssemblyToLink)"
|
AssemblyPaths="@(_BlazorAssemblyToLink)"
|
||||||
RootAssemblyNames="@(_BlazorLinkerRoot)"
|
RootAssemblyNames="@(_BlazorLinkerRoot)"
|
||||||
RootDescriptorFiles="@(_BlazorLinkerDescriptor)"
|
RootDescriptorFiles="@(BlazorLinkerDescriptor)"
|
||||||
OutputDirectory="$(_BlazorIntermediateLinkerOutputPath)"
|
OutputDirectory="$(_BlazorIntermediateLinkerOutputPath)"
|
||||||
ExtraArgs="$(_BlazorLinkerAdditionalOptions)"
|
ExtraArgs="$(_BlazorLinkerAdditionalOptions)"
|
||||||
ToolExe="$(_DotNetHostFileName)"
|
ToolExe="$(_DotNetHostFileName)"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue