Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions TUnit.Pipeline/Modules/PackTUnitFilesModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ public class PackTUnitFilesModule : Module<List<PackedProject>>

var properties = new List<KeyValue>
{
// Explicitly set PackageVersion to match the version the pipeline uses
// for downstream operations (template install, nuget test, etc.).
// GitVersion.MsBuild handles AssemblyVersion/FileVersion automatically.
new KeyValue("PackageVersion", packageVersion),
new KeyValue("AssemblyVersion", version.AssemblySemVer!),
new KeyValue("FileVersion", version.AssemblySemFileVer!),
new KeyValue("InformationalVersion", version.InformationalVersion!),
new KeyValue("Version", version.SemVer!),
};

await context.DotNet()
Expand Down
Loading