Skip to content

Commit 72834e3

Browse files
committed
minor cleanup
1 parent c898079 commit 72834e3

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/tests/BuildWasmApps/Wasm.Build.Tests/BuildTestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ protected static BuildArgs ExpandBuildArgs(BuildArgs buildArgs, string extraProp
359359
_testOutput.WriteLine($"Binlog path: {logFilePath}");
360360
_testOutput.WriteLine($"Binlog path: {logFilePath}");
361361
sb.Append($" /bl:\"{logFilePath}\" /nologo");
362-
sb.Append($" /fl /flp:\"v:diag,LogFile={logFilePath}.log\" /v:{options.Verbosity ?? "minimal"}");
362+
sb.Append($" /v:{options.Verbosity ?? "minimal"}");
363363
if (buildArgs.ExtraBuildArgs != null)
364364
sb.Append($" {buildArgs.ExtraBuildArgs} ");
365365

src/tests/BuildWasmApps/Wasm.Build.Tests/PInvokeTableGeneratorTests.cs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
using System.Collections.Generic;
55
using System.IO;
6-
using System.Text;
7-
using System.Reflection;
86
using Xunit;
97
using Xunit.Abstractions;
108

@@ -202,7 +200,7 @@ public static void Main()
202200
)
203201
);
204202

205-
// Build a project with ManagedToNativeGenerator task reading icals from the above library and runtime-icall-table.h bellow.
203+
// Build a project with ManagedToNativeGenerator task reading icalls from the above library and runtime-icall-table.h bellow.
206204

207205
string projectCode =
208206
"""
@@ -220,11 +218,6 @@ public static void Main()
220218
###WasmPInvokeModule###
221219
</ItemGroup>
222220
223-
<!-- Retrieve CoreLib's targetpath via GetTargetPath as it isn't binplaced yet. -->
224-
<MSBuild Projects="$(CoreLibProject)" Targets="GetTargetPath">
225-
<Output TaskParameter="TargetOutputs" ItemName="WasmPInvokeAssembly" />
226-
</MSBuild>
227-
228221
<ManagedToNativeGenerator
229222
Assemblies="@(WasmPInvokeAssembly)"
230223
PInvokeModules="@(WasmPInvokeModule)"

0 commit comments

Comments
 (0)