This repository was archived by the owner on Mar 12, 2025. It is now read-only.
Commit ee4c075 1 parent 921b31c commit ee4c075 Copy full SHA for ee4c075
File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 9
9
<AppDesignerFolder >Properties</AppDesignerFolder >
10
10
<RootNamespace >IProcessDll</RootNamespace >
11
11
<AssemblyName >IProcessDll</AssemblyName >
12
- <TargetFrameworkVersion >v4.0 </TargetFrameworkVersion >
12
+ <TargetFrameworkVersion >v3.5 </TargetFrameworkVersion >
13
13
<FileAlignment >512</FileAlignment >
14
14
<TargetFrameworkProfile >
15
15
</TargetFrameworkProfile >
Original file line number Diff line number Diff line change 2
2
<configuration >
3
3
<startup >
4
4
5
- <supportedRuntime version =" v4.0 " sku = " .NETFramework,Version=v4.0 " /></startup >
5
+ <supportedRuntime version =" v2.0.50727 " /></startup >
6
6
</configuration >
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ static int SpawnOriginalExecutable(string[] args)
103
103
var currentModulePath = Assembly . GetExecutingAssembly ( ) . Location ;
104
104
var orgModulePath = currentModulePath . Substring ( 0 , currentModulePath . Length - 3 ) + "org.exe" ;
105
105
106
- var orgArgs = string . Join ( " " , args . Select ( a => '"' + a + '"' ) ) ;
106
+ var orgArgs = string . Join ( " " , args . Select ( a => '"' + a + '"' ) . ToArray ( ) ) ;
107
107
Log ( string . Format ( "Spawn: Exec={0}" , orgModulePath ) ) ;
108
108
Log ( string . Format ( " Args={0}" , orgArgs ) ) ;
109
109
var handle = Process . Start ( orgModulePath , orgArgs ) ;
@@ -120,7 +120,7 @@ static int SpawnOriginalExecutable(string[] args)
120
120
var currentModulePath = Assembly . GetExecutingAssembly ( ) . Location ;
121
121
var orgModulePath = currentModulePath . Substring ( 0 , currentModulePath . Length - 3 ) + "org.exe" ;
122
122
123
- var orgArgs = '"' + orgModulePath + '"' + ' ' + string . Join ( " " , args . Select ( a => '"' + a + '"' ) ) ;
123
+ var orgArgs = '"' + orgModulePath + '"' + ' ' + string . Join ( " " , args . Select ( a => '"' + a + '"' ) . ToArray ( ) ) ;
124
124
Log ( string . Format ( "Spawn: Mono={0}" , monoPath ) ) ;
125
125
Log ( string . Format ( " Exec={0}" , orgModulePath ) ) ;
126
126
Log ( string . Format ( " Args={0}" , orgArgs ) ) ;
Original file line number Diff line number Diff line change 9
9
<AppDesignerFolder >Properties</AppDesignerFolder >
10
10
<RootNamespace >UnusedBytecodeStripper2</RootNamespace >
11
11
<AssemblyName >UnusedBytecodeStripper2</AssemblyName >
12
- <TargetFrameworkVersion >v4.0 </TargetFrameworkVersion >
12
+ <TargetFrameworkVersion >v3.5 </TargetFrameworkVersion >
13
13
<FileAlignment >512</FileAlignment >
14
14
<AutoGenerateBindingRedirects >true</AutoGenerateBindingRedirects >
15
15
<IsWebBootstrapper >false</IsWebBootstrapper >
You can’t perform that action at this time.
0 commit comments