Cake.Common.Solution.CodeCakeSolutionExtensions.CreateTemporarySolutionFile C# (CSharp) Метод

CreateTemporarySolutionFile() публичный статический Метод

Creates a ITemporarySolutionFile for a solution (.sln) file.
public static CreateTemporarySolutionFile ( this context, FilePath solutionPath ) : ITemporarySolutionFile
context this The context.
solutionPath FilePath The solution path.
Результат ITemporarySolutionFile
        public static ITemporarySolutionFile CreateTemporarySolutionFile( this ICakeContext context, FilePath solutionPath )
        {
            if( solutionPath == null ) throw new ArgumentNullException( "solution" );
            return new TemporarySolutionFile( context, solutionPath );
        }
CodeCakeSolutionExtensions