File tree Expand file tree Collapse file tree 6 files changed +10
-13
lines changed Expand file tree Collapse file tree 6 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 579
579
<Uri >https://github.com/dotnet/arcade-services</Uri >
580
580
<Sha >bd2309670213218bc0e2073379e4985b346600c7</Sha >
581
581
</Dependency >
582
- <Dependency Name =" Microsoft.Testing.Platform" Version =" 1.8.0-preview.25257 .2" >
582
+ <Dependency Name =" Microsoft.Testing.Platform" Version =" 1.8.0-preview.25262 .2" >
583
583
<Uri >https://github.com/microsoft/testfx</Uri >
584
- <Sha >2b3a9fd44e2cbb1c52362a211b025b9eddbd8ec1 </Sha >
584
+ <Sha >9a016c071b017918233cbf99e1d21144fb9ce5f3 </Sha >
585
585
</Dependency >
586
- <Dependency Name =" MSTest" Version =" 3.10.0-preview.25257 .2" >
586
+ <Dependency Name =" MSTest" Version =" 3.10.0-preview.25262 .2" >
587
587
<Uri >https://github.com/microsoft/testfx</Uri >
588
- <Sha >2b3a9fd44e2cbb1c52362a211b025b9eddbd8ec1 </Sha >
588
+ <Sha >9a016c071b017918233cbf99e1d21144fb9ce5f3 </Sha >
589
589
</Dependency >
590
590
<Dependency Name =" Microsoft.Extensions.Configuration.Ini" Version =" 10.0.0-preview.5.25260.104" >
591
591
<Uri >https://github.com/dotnet/dotnet</Uri >
Original file line number Diff line number Diff line change 30
30
<UsingToolVSSDK >true</UsingToolVSSDK >
31
31
<FlagNetStandard1XDependencies Condition =" '$(DotNetBuildSourceOnly)' == 'true'" >true</FlagNetStandard1XDependencies >
32
32
<!-- This property is only used in the dotnet test integration tests. -->
33
- <MicrosoftTestingPlatformVersion >1.8.0-preview.25257 .2</MicrosoftTestingPlatformVersion >
33
+ <MicrosoftTestingPlatformVersion >1.8.0-preview.25262 .2</MicrosoftTestingPlatformVersion >
34
34
</PropertyGroup >
35
35
<PropertyGroup Label =" Servicing version information" >
36
36
<VersionFeature21 >30</VersionFeature21 >
328
328
<AwesomeAssertionsVersion >8.0.2</AwesomeAssertionsVersion >
329
329
<AwesomeAssertionsJsonVersion >8.0.0</AwesomeAssertionsJsonVersion >
330
330
<MoqPackageVersion >4.18.4</MoqPackageVersion >
331
- <MSTestVersion >3.10.0-preview.25257 .2</MSTestVersion >
331
+ <MSTestVersion >3.10.0-preview.25262 .2</MSTestVersion >
332
332
<XunitCombinatorialVersion >1.3.2</XunitCombinatorialVersion >
333
333
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion >8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion >
334
334
</PropertyGroup >
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ private static Command ConstructCommand()
43
43
}
44
44
else
45
45
{
46
- return new PackageAddCommand ( parseResult , parseResult . GetValue ( AddCommandParser . ProjectArgument ) ) . Execute ( ) ;
46
+ return new PackageAddCommand ( parseResult , parseResult . GetValue ( AddCommandParser . ProjectArgument ) ?? Directory . GetCurrentDirectory ( ) ) . Execute ( ) ;
47
47
}
48
48
} ) ;
49
49
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ public ReferenceListCommand(
22
22
23
23
_fileOrDirectory = parseResult . HasOption ( ReferenceCommandParser . ProjectOption ) ?
24
24
parseResult . GetValue ( ReferenceCommandParser . ProjectOption ) :
25
- parseResult . GetValue ( ListCommandParser . SlnOrProjectArgument ) ;
25
+ parseResult . GetValue ( ListCommandParser . SlnOrProjectArgument ) ??
26
+ Directory . GetCurrentDirectory ( ) ;
26
27
}
27
28
28
29
public override int Execute ( )
Original file line number Diff line number Diff line change @@ -164,8 +164,6 @@ public static string GetTestRunnerName()
164
164
var builder = new ConfigurationBuilder ( ) ;
165
165
166
166
string ? dotnetConfigPath = GetDotnetConfigPath ( Environment . CurrentDirectory ) ;
167
- Debug . Assert ( dotnetConfigPath is not null ) ;
168
-
169
167
if ( ! File . Exists ( dotnetConfigPath ) )
170
168
{
171
169
return CliConstants . VSTest ;
Original file line number Diff line number Diff line change 7
7
'$(TargetArchitecture)' != 'ppc64le' and
8
8
'$(DotNetBuildUseMonoRuntime)' != 'true'" >true</IsCrossgenSupported >
9
9
10
- <Crossgen2Rid >$(HostOSName)-$(BuildArchitecture)</Crossgen2Rid >
11
-
12
- <RuntimeNETCrossgenPackageName >microsoft.netcore.app.crossgen2.$(Crossgen2Rid)</RuntimeNETCrossgenPackageName >
10
+ <RuntimeNETCrossgenPackageName >microsoft.netcore.app.crossgen2.$(NETCoreSdkRuntimeIdentifier)</RuntimeNETCrossgenPackageName >
13
11
</PropertyGroup >
14
12
15
13
<!-- Download the runtime package with the crossgen executable in it -->
You can’t perform that action at this time.
0 commit comments