Is it possible to output and rename build artifacts from the TeamCity checkout directory (that are not archives)?

前端 未结 3 498
一生所求
一生所求 2021-02-12 22:25

I have gone through the documentation for TeamCity on build artifact outputs

(https://confluence.jetbrains.com/display/TCD8/Configuring+General+Settings#ConfiguringGene

3条回答
  •  逝去的感伤
    2021-02-12 22:45

    You can use the following thing when you are using octopack with msbuild to create the nuget package.

    The command line parameter /p:OctoPackAppendToPackageId=foo adds foo to your nuget package name. Docs (under publishing)

    Example:

    Without parameter: abc.nupkg

    With parameter: abc.foo.nupkg

提交回复
热议问题