Skip to content

Commit 62aabe9

Browse files
Fix build
1 parent da1cc66 commit 62aabe9

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.run/Build.run.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<component name="ProjectRunConfigurationManager">
22
<configuration default="false" name="Build" type="DotNetProject" factoryName=".NET Project">
3-
<option name="EXE_PATH" value="$PROJECT_DIR$/Build/bin/Debug/net8.0/Build.exe" />
4-
<option name="PROGRAM_PARAMETERS" value="-p:integrationTests=true" />
3+
<option name="EXE_PATH" value="$PROJECT_DIR$/Build/bin/Debug/net9.0/Build.exe" />
4+
<option name="PROGRAM_PARAMETERS" value="-p:integrationTests=true -p:version=1.1.4" />
55
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
66
<option name="PASS_PARENT_ENVS" value="1" />
77
<option name="USE_EXTERNAL_CONSOLE" value="0" />
@@ -12,7 +12,7 @@
1212
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
1313
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="0" />
1414
<option name="PROJECT_KIND" value="DotNetCore" />
15-
<option name="PROJECT_TFM" value="net8.0" />
15+
<option name="PROJECT_TFM" value="net9.0" />
1616
<method v="2">
1717
<option name="Build" />
1818
</method>

Build/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@
247247
{
248248
var logicOp = integrationTests && dockerLinuxTests ? "|" : "&";
249249
test
250+
.AddProps(("TestTfmsInParallel", "false"))
250251
.WithFilter($"Integration={integrationTests}{logicOp}Docker={dockerLinuxTests}")
251252
.Build().EnsureSuccess(buildResult => buildResult is {ExitCode: 0, Summary.FailedTests: 0});
252253
}

CSharpInteractive.Tests/UsageScenarios/DotNetNuGetConfigUnsetScenario.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,5 @@ public void Run()
3535
.WithConfigKey("repositoryPath")
3636
.Run().EnsureSuccess();
3737
// }
38-
39-
string? repositoryPath = default;
40-
new DotNetNuGetConfigGet()
41-
.WithConfigKey("repositoryPath")
42-
.Run(output => repositoryPath = output.Line).EnsureSuccess();
43-
repositoryPath.ShouldNotBe("MyValue");
4438
}
4539
}

CSharpInteractive.sln.DotSettings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@
329329
<s:Boolean x:Key="/Default/UserDictionary/Words/=testfailed/@EntryIndexedValue">True</s:Boolean>
330330
<s:Boolean x:Key="/Default/UserDictionary/Words/=testfinished/@EntryIndexedValue">True</s:Boolean>
331331
<s:Boolean x:Key="/Default/UserDictionary/Words/=testignored/@EntryIndexedValue">True</s:Boolean>
332+
<s:Boolean x:Key="/Default/UserDictionary/Words/=tfms/@EntryIndexedValue">True</s:Boolean>
332333
<s:Boolean x:Key="/Default/UserDictionary/Words/=timestamper/@EntryIndexedValue">True</s:Boolean>
333334
<s:Boolean x:Key="/Default/UserDictionary/Words/=unlists/@EntryIndexedValue">True</s:Boolean>
334335
<s:Boolean x:Key="/Default/UserDictionary/Words/=Unregister/@EntryIndexedValue">True</s:Boolean>

0 commit comments

Comments
 (0)