3 writes to CurrentLocalTime
Microsoft.CodeAnalysis (1)
Compilation\CompilationOptions.cs (1)
314this.CurrentLocalTime = currentLocalTime;
Microsoft.CodeAnalysis.CSharp (1)
CSharpCompilationOptions.cs (1)
529return new CSharpCompilationOptions(this) { CurrentLocalTime = value };
Microsoft.CodeAnalysis.VisualBasic (1)
VisualBasicCompilationOptions.vb (1)
679Return New VisualBasicCompilationOptions(Me) With {.CurrentLocalTime = value}
12 references to CurrentLocalTime
Microsoft.CodeAnalysis (4)
Compilation\CompilationOptions.cs (3)
626this.CurrentLocalTime == other.CurrentLocalTime && 674Hash.Combine(this.CurrentLocalTime.GetHashCode(),
Compilation\DeterministicKeyBuilder.cs (1)
479writer.WriteInvariant("localtime", options.CurrentLocalTime);
Microsoft.CodeAnalysis.CSharp (3)
CSharpCompilationOptions.cs (2)
250currentLocalTime: other.CurrentLocalTime, 524if (value == this.CurrentLocalTime)
Symbols\Source\SourceAssemblySymbol.cs (1)
2157VersionHelper.GenerateVersionFromPatternAndCurrentTime(_compilation.Options.CurrentLocalTime, AssemblyVersionAttributeSetting),
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Compilation\CSharpCompilationOptionsTests.cs (1)
130TestProperty((old, value) => old.WithCurrentLocalTime(value), opt => opt.CurrentLocalTime, new DateTime(2005, 1, 1));
Microsoft.CodeAnalysis.VisualBasic (3)
Symbols\Source\SourceAssemblySymbol.vb (1)
1705VersionHelper.GenerateVersionFromPatternAndCurrentTime(_compilation.Options.CurrentLocalTime, AssemblyVersionAttributeSetting),
VisualBasicCompilationOptions.vb (2)
323currentLocalTime:=other.CurrentLocalTime, 675If value.Equals(CurrentLocalTime) Then
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Compilation\VisualBasicCompilationOptionsTests.vb (1)
120TestProperty(Function(old, value) old.WithCurrentLocalTime(value), Function(opt) opt.CurrentLocalTime, #2015/1/1#)