我已经进行了以下设置(为了简洁起见,删除了无趣的XML):
MyProject.fsproj
<Project ...>
<Import Project="MyTask.props" />
...
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
</Project>
MyTask.props
<Project ...>
<UsingTask XXX.UpdateAssemblyInfo />
<Target Name="UpdateAssemblyInfo"
BeforeTargets="CoreCompile">
<UpdateAssemblyInfo ...>
<Output
TaskParameter="AssemblyInfoTempFilePath"
PropertyName="AssemblyInfoTempFilePath" />
</UpdateAssemblyInfo>
<ItemGroup>
<Compile Include="$(AssemblyInfoTempFilePath)" />
</ItemGroup>
</Target>
</Project>
问题在于MyTask.props添加的ItemGroup被添加到 last ,尽管在项目的最开始就被导入。我认为这是因为ItemGroup实际上并未导入 - 它是在运行任务时添加的。
这在F#中不是一件好事,因为文件顺序很重要 - 包括构建列表末尾的文件意味着构建EXE是不可能的(例如,入口点必须在最后一个文件中)
因此我的问题 - 我有没有办法输出一个ItemGroup作为Target的一部分,并将生成的ItemGroup放在第一位?
答案 0 :(得分:1)
有点晚了,但是这可能会对未来的某些人有所帮助,我没有在此示例中使用导入标记,但它的工作方式相同,重要的部分是&#34; UpdateAssemblyInfo&#34 ;目标,主要思想是使用适当的排序顺序清除和重新生成Compile ItemGroup。
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Target Name="Build" DependsOnTargets="UpdateAssemblyInfo">
</Target>
<Target Name="UpdateAssemblyInfo">
<!-- Generate your property -->
<PropertyGroup>
<AssemblyInfoTempFilePath>ABC.xyz</AssemblyInfoTempFilePath>
</PropertyGroup>
<!-- Copy current Compile ItemGroup to TempCompile -->
<ItemGroup>
<TempCompile Include="@(Compile)"></TempCompile>
</ItemGroup>
<!-- Clear the Compile ItemGroup-->
<ItemGroup>
<Compile Remove="@(Compile)"/>
</ItemGroup>
<!-- Create the new Compile ItemGroup using the required order -->
<ItemGroup>
<Compile Include="$(AssemblyInfoTempFilePath)"/>
<Compile Include="@(TempCompile)"/>
</ItemGroup>
<!-- Display the Compile ItemGroup ordered -->
<Message Text="Compile %(Compile.Identity)"/>
</Target>
</Project>