@@ -32,36 +32,6 @@ public void VerifyPackageContentsHasRuntimeSupport()
32
32
string runtimeSupportPath = Path . Combine ( solutionRoot , "Libraries" , "src" , "Amazon.Lambda.RuntimeSupport" , "Amazon.Lambda.RuntimeSupport.csproj" ) ;
33
33
string projectPath = Path . Combine ( solutionRoot , "Tools" , "LambdaTestTool-v2" , "src" , "Amazon.Lambda.TestTool" , "Amazon.Lambda.TestTool.csproj" ) ;
34
34
35
- // Build RuntimeSupport first
36
- _output . WriteLine ( "Building RuntimeSupport..." ) ;
37
- var buildProcess = new Process
38
- {
39
- StartInfo = new ProcessStartInfo
40
- {
41
- FileName = "dotnet" ,
42
- Arguments = $ "build { runtimeSupportPath } -c Release",
43
- RedirectStandardOutput = true ,
44
- RedirectStandardError = true ,
45
- UseShellExecute = false ,
46
- CreateNoWindow = true ,
47
- }
48
- } ;
49
-
50
- buildProcess . Start ( ) ;
51
- string buildOutput = buildProcess . StandardOutput . ReadToEnd ( ) ;
52
- string buildError = buildProcess . StandardError . ReadToEnd ( ) ;
53
- buildProcess . WaitForExit ( ) ;
54
-
55
- _output . WriteLine ( "Build Output:" ) ;
56
- _output . WriteLine ( buildOutput ) ;
57
- if ( ! string . IsNullOrEmpty ( buildError ) )
58
- {
59
- _output . WriteLine ( "Build Errors:" ) ;
60
- _output . WriteLine ( buildError ) ;
61
- }
62
-
63
- Assert . Equal ( 0 , buildProcess . ExitCode ) ;
64
-
65
35
// Now pack the test tool
66
36
_output . WriteLine ( "\n Packing TestTool..." ) ;
67
37
var packProcess = new Process
0 commit comments