使用 msbuild 创建 wsp 文件

发布于 2024-12-11 02:57:57 字数 163 浏览 0 评论 0原文

当我右键单击共享点项目并选择“部署”时,会生成一个 wsp 文件。

我现在想要自动化构建过程。我已经使用 nant 来调用 MsBuild。这会构建我的 csproj 文件。

我怎样才能从这里获取我的 wsp 文件?我读过一些讨论 ddf 文件的文章,但在我的解决方案中没有看到。

When I rightclick on a sharepoint project and select "deploy" a wsp file gets generated.

I now want to automate the buildprocsses. I already use nant to call MsBuild. This builds my csproj-file.

How can I get from this to my wsp files? I read some articles that talked about a ddf file but I don't see one in my solution.

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

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

发布评论

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

评论(1

氛圍 2024-12-18 02:57:57

试试这个

set msbuild="C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe"
set config=Debug
set outdir="C:\out\"
%msbuild% /p:Configuration=%config% /m  project.csproj /t:Package /p:BasePackagePath=%outdir%

Try this

set msbuild="C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe"
set config=Debug
set outdir="C:\out\"
%msbuild% /p:Configuration=%config% /m  project.csproj /t:Package /p:BasePackagePath=%outdir%
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文