File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -65,14 +65,14 @@ public Task<bool> ExecuteAsync()
6565 if ( parser != null && parser . Contains ( "watch" ) )
6666 {
6767
68- // if not exists then create mklink
69- if ( ! Directory . Exists ( $ "{ tempBinPath } ") ) Directory . CreateDirectory ( tempBinPath ) ;
70- if ( ! Directory . Exists ( $ "{ tempBinPath } \\ wwwroot") ) resultCode = ProcessHelper . CmdExecute ( $ "mklink /D { tempBinPath } \\ wwwroot wwwroot", aspCoreProjectPath ) ;
71-
72- if ( ! File . Exists ( $ "{ tempBinPath } \\ electron.manifest.json") )
73- {
74- resultCode = ProcessHelper . CmdExecute ( $ "mklink /h { tempBinPath } \\ electron.manifest.json electron.manifest.json", aspCoreProjectPath ) ;
75- }
68+ // no need for this code i will remove this before PRS
69+ // if (!Directory.Exists($"{tempBinPath}")) Directory.CreateDirectory(tempBinPath);
70+ // if (!Directory.Exists($"{tempBinPath}\\wwwroot")) resultCode = ProcessHelper.CmdExecute($"mklink /D {tempBinPath}\\wwwroot wwwroot", aspCoreProjectPath);
71+
72+ // if (!File.Exists($"{tempBinPath}\\electron.manifest.json"))
73+ // {
74+ // resultCode = ProcessHelper.CmdExecute($"mklink /h {tempBinPath}\\electron.manifest.json electron.manifest.json", aspCoreProjectPath);
75+ // }
7676
7777 }
7878 else
You can’t perform that action at this time.
0 commit comments