如何在 MsBuild 项目中包含自动生成的文件?

发布于 2024-10-17 01:21:48 字数 201 浏览 3 评论 0原文

使用 MsBuild 4.0,我包含了一个生成项目源文件之一的预构建事件。 但它会在生成之前查找该文件:

错误CS1504:无法打开源文件“c:\src\Data\Main.Designer.cs”(“未指定错误”)

该文件由DbMetal / SqlMetal生成。 有什么办法可以让这个工作吗?

Using MsBuild 4.0 I included a pre-build event that generates one of the project source files.
But it seeks for the file before it is generated:

error CS1504: Source file 'c:\src\Data\Main.Designer.cs' could not be opened ('Unspecified error ')

The file is generated by DbMetal/SqlMetal.
Is there any way to make this work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘亓 2024-10-24 01:21:48

将您的操作移至 BeforeBuild 目标。在项目 *.csproj 中,它默认被注释。
取消注释并使用 Exec 任务 调用 DBMetal

<Target Name="BeforeBuild">
    <Exec Command="<your prebuild action 1>"/>
    <Exec Command="<your prebuild action 2>"/>
</Target>

如果您正在使用 Datasource.db 并想要生成 Main.Designer.cs
您可以为目标指定输入和输出参数。它将节省您调用 DBMetal 并重建项目本身的时间。

<Target Name="BeforeBuild"
        Inputs="Datasource.db"
        Outputs="Main.Designer.cs">
    <Exec Command="<your prebuild action 1>"/>
    <Exec Command="<your prebuild action 2>"/>
</Target>

Move your action to BeforeBuild target. In the project *.csproj it is by default commented.
Uncomment it and call DBMetal using Exec task

<Target Name="BeforeBuild">
    <Exec Command="<your prebuild action 1>"/>
    <Exec Command="<your prebuild action 2>"/>
</Target>

If you are working with Datasource.db and want to generate Main.Designer.cs
you can specify Input and Output parameters for the target. It will saves you calling DBMetal and rebuilding the project itself.

<Target Name="BeforeBuild"
        Inputs="Datasource.db"
        Outputs="Main.Designer.cs">
    <Exec Command="<your prebuild action 1>"/>
    <Exec Command="<your prebuild action 2>"/>
</Target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文