예제 #1
0
 public static CompilationTarget ChangeAspect(this CompilationTarget target, string aspect)
 {
     return(new CompilationTarget(target.Name, target.TargetFramework, target.Configuration, aspect));
 }
예제 #2
0
 public static CompilationTarget ChangeName(this CompilationTarget target, string name)
 {
     return(new CompilationTarget(name, target.TargetFramework, target.Configuration, target.Aspect));
 }
예제 #3
0
 public static CompilationTarget ChangeTargetFramework(this CompilationTarget target, FrameworkName targetFramework)
 {
     return(new CompilationTarget(target.Name, targetFramework, target.Configuration, target.Aspect));
 }