1 write to Version
System.Workflow.Runtime (1)
Tracking\TrackingProfileSerializer.cs (1)
96
profile.
Version
= new Version(version);
16 references to Version
System.Workflow.Runtime (16)
RTTrackingProfile.cs (1)
210
get { return _profile.
Version
; }
Tracking.cs (2)
1230
if (TryGetFromCache(service.GetType(), workflowType, profile.
Version
, out tp))
1252
if (TryGetFromCache(service.GetType(), workflowType, profile.
Version
, out tmp))
Tracking\TrackingProfileSerializer.cs (13)
890
if (null == profile.
Version
)
894
if (profile.
Version
.Revision >= 0)
895
version = string.Format(NumberFormatInfo.InvariantInfo, "{0}.{1}.{2}.{3}", profile.
Version
.Major, profile.
Version
.Minor, profile.
Version
.Build, profile.
Version
.Revision);
896
else if (profile.
Version
.Build >= 0)
897
version = string.Format(NumberFormatInfo.InvariantInfo, "{0}.{1}.{2}", profile.
Version
.Major, profile.
Version
.Minor, profile.
Version
.Build);
898
else if (profile.
Version
.Minor >= 0)
899
version = string.Format(NumberFormatInfo.InvariantInfo, "{0}.{1}", profile.
Version
.Major, profile.
Version
.Minor);