Skip to content

Commit

Permalink
Remove recurse thing.
Browse files Browse the repository at this point in the history
Sort usings.
Increase diagnostic level?
  • Loading branch information
wasabii committed Dec 10, 2023
1 parent dfb2631 commit d24bf1e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/IKVM.Maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,6 @@ jobs:
timeout-minutes: 240
shell: pwsh
run: |
gci .\tests\ -Recurse
# assign powershell variables
$run = "${{ matrix.run }}"
$tfm = "${{ matrix.tfm }}"
Expand Down
8 changes: 1 addition & 7 deletions src/IKVM.Maven.Sdk.Tasks/MavenReferenceItemPrepare.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using com.sun.tools.javac.util;
using System.Linq;

using IKVM.Maven.Sdk.Tasks.Resources;

using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;

using org.apache.maven.model;
using org.eclipse.aether.util.artifact;

namespace IKVM.Maven.Sdk.Tasks
Expand Down
2 changes: 1 addition & 1 deletion src/IKVM.Maven.Sdk.Tests/ProjectTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public void CanBuildProject(EnvironmentPreference env, string tfm, string rid, s
options.TargetsToBuild.Add("Clean");
options.TargetsToBuild.Add("Build");
options.TargetsToBuild.Add("Publish");
options.Arguments.Add("/v:d");
options.Arguments.Add("/v:diag");
analyzer.Build(options).OverallSuccess.Should().Be(true);

var binDir = Path.Combine("Project", "Exe", "bin", "Release", tfm, rid);
Expand Down

0 comments on commit d24bf1e

Please sign in to comment.