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