File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -103,15 +103,6 @@ void Push(string package) => Exec("dotnet",
103103 $@ "nuget push { ReleasePackagesPath } /{ package } .{ Version } .nupkg " +
104104 "-k %NuGetApiKey% -s https://nuget.org/ --skip-duplicate" ) ;
105105
106- void Mirror ( string source , string destination )
107- {
108- foreach ( string dir in Directory . GetDirectories ( source , "*" , SearchOption . AllDirectories ) )
109- Directory . CreateDirectory ( dir . Replace ( source , destination ) ) ;
110-
111- foreach ( string file in Directory . GetFiles ( source , "*.*" , SearchOption . AllDirectories ) )
112- File . Copy ( file , file . Replace ( source , destination ) , true ) ;
113- }
114-
115106
116107/// Restores build-time packages and 3rd party dependencies used in demo projects
117108[ Nake ] void Restore ( bool packagesOnly = false )
You can’t perform that action at this time.
0 commit comments