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)
2641
if (!VersionHelper.TryParseAssemblyVersion(
AssemblyVersion
, allowWildcard: true, version: out _, out bool hasWildcard)
2642
&& !string.IsNullOrWhiteSpace(
AssemblyVersion
))
2644
throw new AssemblyVersionParseException(SR.Format(SR.InvalidAssemblyVersion,
AssemblyVersion
));
2656
string version = hasWildcard || String.IsNullOrEmpty(
AssemblyVersion
)
2658
: COMPONENT_DELIMITER + VER +
AssemblyVersion
;