Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov committed Nov 14, 2024
1 parent da1cc66 commit 62aabe9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .run/Build.run.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Build" type="DotNetProject" factoryName=".NET Project">
<option name="EXE_PATH" value="$PROJECT_DIR$/Build/bin/Debug/net8.0/Build.exe" />
<option name="PROGRAM_PARAMETERS" value="-p:integrationTests=true" />
<option name="EXE_PATH" value="$PROJECT_DIR$/Build/bin/Debug/net9.0/Build.exe" />
<option name="PROGRAM_PARAMETERS" value="-p:integrationTests=true -p:version=1.1.4" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<option name="PASS_PARENT_ENVS" value="1" />
<option name="USE_EXTERNAL_CONSOLE" value="0" />
Expand All @@ -12,7 +12,7 @@
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="0" />
<option name="PROJECT_KIND" value="DotNetCore" />
<option name="PROJECT_TFM" value="net8.0" />
<option name="PROJECT_TFM" value="net9.0" />
<method v="2">
<option name="Build" />
</method>
Expand Down
1 change: 1 addition & 0 deletions Build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@
{
var logicOp = integrationTests && dockerLinuxTests ? "|" : "&";
test
.AddProps(("TestTfmsInParallel", "false"))
.WithFilter($"Integration={integrationTests}{logicOp}Docker={dockerLinuxTests}")
.Build().EnsureSuccess(buildResult => buildResult is {ExitCode: 0, Summary.FailedTests: 0});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,5 @@ public void Run()
.WithConfigKey("repositoryPath")
.Run().EnsureSuccess();
// }

string? repositoryPath = default;
new DotNetNuGetConfigGet()
.WithConfigKey("repositoryPath")
.Run(output => repositoryPath = output.Line).EnsureSuccess();
repositoryPath.ShouldNotBe("MyValue");
}
}
1 change: 1 addition & 0 deletions CSharpInteractive.sln.DotSettings
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@
<s:Boolean x:Key="/Default/UserDictionary/Words/=testfailed/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=testfinished/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=testignored/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=tfms/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=timestamper/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=unlists/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=Unregister/@EntryIndexedValue">True</s:Boolean>
Expand Down

0 comments on commit 62aabe9

Please sign in to comment.