MSBuild:Compile 生成器如何工作
本文关键字:何工作 工作 Compile MSBuild | 更新日期: 2023-09-27 18:34:15
我正在尝试使用 MSBuild:Compile 生成器在将文件保存在 Visual Studio 中时触发我的自定义文件类型的编译(应该像自定义工具一样工作,但使用 msbuild)。构建过程本身正在工作,但如果保存文件,它似乎不会触发。
有人可以解释一下MSBuild:Compile条目到底在做什么吗?到目前为止,我刚刚看到它在antlr msbuild脚本和XAML中使用。
下面我摘录了我用来将 *.myext 文件编译为 *.g.ts 文件的 msbuild 设置。
我的目标文件:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="SampleNamespace.CustomCompilerTask" AssemblyFile="MyTask.dll" />
<PropertyGroup>
<PrepareResourcesDependsOn>
CustomLayoutCompile;
$(PrepareResourcesDependsOn)
</PrepareResourcesDependsOn>
</PropertyGroup>
<ItemDefinitionGroup>
<CustomTypeCompile>
<Generator>MSBuild:Compile</Generator>
</CustomTypeCompile>
</ItemDefinitionGroup>
<Target Name="CustomLayoutCompile" Inputs="@(TypeScriptCompile);@(CustomTypeCompile)" Outputs="@(CustomTypeCompile->'%(RootDir)%(Directory)%(Filename).g.ts')">
<CustomCompilerTask TypeScriptFiles="@(TypeScriptCompile)" LayoutFiles="@(CustomTypeCompile)" />
</Target>
</Project>
项目文件中的条目:
....
<ItemGroup>
<TypeScriptCompile Include="MyControl.ts">
<DependentUpon>MyControl.myext</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="MyControl.g.ts">
<DependentUpon>MyControl.myext</DependentUpon>
</TypeScriptCompile>
</ItemGroup>
<ItemGroup>
<CustomTypeCompile Include="MyControl.myext">
<Generator>MSBuild:Compile</Generator>
</CustomTypeCompile>
</ItemGroup>
....
<Import Project="path/to/my/target/file/mytargets.targets" />
....
我正在使用VS 2019,并且遇到了同样的问题。我终于想出了一个解决方法,它使这个问题对我来说更像是一个VisualStudio/MSBuild错误。我的解决方法是,当您定义ItemDefinitionGroup
时,定义自定义/扩展文件属性页,如下所示。 它对我有用。希望它也适用于其他人。
<ItemGroup>
<PropertyPageSchema Include="$(MSBuildThisFileDirectory)CustomPerperties.CSharp.xml">
<Context>File;BrowseObject</Context>
</PropertyPageSchema>
<AvailableItemName Include="CustomTypeCompile" />
</ItemGroup>