dotnet publish - set outputpath in csproj



我想知道它们是否是在.csproj-file中设置dotnet publish的输出路径的任何标签。我知道我可以从命令行中使用publish "someproject.csproj" --output "..mypubfolder"的线。但是我想在.csproj-file

中指定(默认(发布文件夹

您可以设置用于Publish目标的PublishDir属性:

<PropertyGroup>
  <PublishDir>..mypubfolder</PublishDir>
</PropertyGroup>

相关内容

  • 没有找到相关文章

最新更新