2 writes to AssemblyVersion
Microsoft.Build.Tasks.Core (1)
TlbReference.cs (1)
167AssemblyVersion = null,
Microsoft.Build.Tasks.UnitTests (1)
TlbImp_Tests.cs (1)
121t.AssemblyVersion = testParameterValue;
5 references to AssemblyVersion
Microsoft.Build.Tasks.Core (3)
TlbImp.cs (3)
132get => (Version)Bag[nameof(AssemblyVersion)]; 133set => Bag[nameof(AssemblyVersion)] = value; 242commandLine.AppendSwitchIfNotNull("/asmversion:", AssemblyVersion?.ToString());
Microsoft.Build.Tasks.UnitTests (2)
TlbImp_Tests.cs (2)
115Assert.Null(t.AssemblyVersion); // "AssemblyVersion should be null by default" 122Assert.Equal(testParameterValue, t.AssemblyVersion); // "New AssemblyNamespace value should be set"