7 references to ProductVersion
Microsoft.DotNet.Build.Tasks.Workloads (3)
Msi\MsiProperties.wix.cs (1)
109ProductVersion = productVersion == null ? MsiUtils.GetProperty(path, MsiProperty.ProductVersion) : productVersion,
Msi\MsiProperty.wix.cs (1)
14public static readonly string ProductVersion = nameof(ProductVersion);
Msi\MsiUtils.wix.cs (1)
173new Version(GetProperty(packagePath, MsiProperty.ProductVersion));
Microsoft.DotNet.Build.Tasks.Workloads.Tests (4)
CreateVisualStudioWorkloadTests.cs (2)
84Assert.Equal("6.33.28", MsiUtils.GetProperty(manifestMsiItem.ItemSpec, MsiProperty.ProductVersion)); 220Assert.Equal("6.33.28", MsiUtils.GetProperty(manifestMsiItem.ItemSpec, MsiProperty.ProductVersion));
MsiTests.cs (2)
98Assert.Equal("1.2.3", MsiUtils.GetProperty(msiPath, MsiProperty.ProductVersion)); 131Assert.Equal("15.2.302.0", MsiUtils.GetProperty(msiPath, MsiProperty.ProductVersion));