1 write to AssemblyVersion
PresentationBuildTasks (1)
MS\Internal\Tasks\CompilerWrapper.cs (1)
67
set { _mc.
AssemblyVersion
= value; }
5 references to AssemblyVersion
PresentationBuildTasks (5)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (5)
2657
if (!VersionHelper.TryParseAssemblyVersion(
AssemblyVersion
, allowWildcard: true, version: out _, out bool hasWildcard)
2658
&& !string.IsNullOrWhiteSpace(
AssemblyVersion
))
2660
throw new AssemblyVersionParseException(SR.Format(SR.InvalidAssemblyVersion,
AssemblyVersion
));
2672
string version = hasWildcard || String.IsNullOrEmpty(
AssemblyVersion
)
2674
: COMPONENT_DELIMITER + VER +
AssemblyVersion
;