This repository was archived by the owner on Apr 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
Microsoft.DotNet.Cli.Utils.Tests Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 9
9
<DotnetSqlCachePackageVersion >2.1.0</DotnetSqlCachePackageVersion >
10
10
<DotnetUserSecretsPackageVersion >2.1.0</DotnetUserSecretsPackageVersion >
11
11
<DotnetWatchPackageVersion >2.1.0</DotnetWatchPackageVersion >
12
- <MicrosoftNETCoreAppPackageVersion >2.1.0 </MicrosoftNETCoreAppPackageVersion >
12
+ <MicrosoftNETCoreAppPackageVersion >2.1.1-rtm-26531-02 </MicrosoftNETCoreAppPackageVersion >
13
13
<MicrosoftNETCoreDotNetHostResolverPackageVersion >$(MicrosoftNETCoreAppPackageVersion)</MicrosoftNETCoreDotNetHostResolverPackageVersion >
14
14
<MicrosoftBuildPackageVersion >15.7.179</MicrosoftBuildPackageVersion >
15
15
<MicrosoftBuildFrameworkPackageVersion >$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion >
Original file line number Diff line number Diff line change 89
89
</Target >
90
90
91
91
<Target Name =" TestsForBuildItself" >
92
- <DotNetMSBuild Arguments =" /v:diag $(RepoRoot)/test/MsBuildScript.Tests/runtests.target"
92
+ <DotNetMSBuild Arguments =" /v:diag $(RepoRoot)/test/MsBuildScript.Tests/runtests.target /p:PB_AssetRootUrl=$(PB_AssetRootUrl) "
93
93
ToolPath =" $(PreviousStageDirectory)" />
94
94
</Target >
95
95
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ public void ItAddsFxVersionAsAParamWhenTheToolHasThePrefercliruntimeFile()
304
304
305
305
result . Should ( ) . NotBeNull ( ) ;
306
306
307
- result . Args . Should ( ) . Contain ( "--fx-version 2.1.0 " ) ;
307
+ result . Args . Should ( ) . Contain ( "--fx-version 2.1.1 " ) ;
308
308
}
309
309
310
310
[ Fact ]
Original file line number Diff line number Diff line change @@ -75,8 +75,7 @@ private void CreateAndRestoreNewProject(
75
75
}
76
76
77
77
[ Theory ]
78
- [ InlineData ( "console" , "microsoft.netcore.app" ) ]
79
- // re-enable when this bug is resolved: https://github.com/dotnet/cli/issues/7574
78
+ // [InlineData("console", "microsoft.netcore.app")] re-enable when this issue is resolved: "https://github.com/dotnet/cli/issues/9420"
80
79
[ InlineData ( "classlib" , "netstandard.library" ) ]
81
80
public void NewProjectRestoresCorrectPackageVersion ( string type , string packageName )
82
81
{
@@ -107,7 +106,7 @@ string GetFrameworkPackageVersion()
107
106
var sharedFxDir = dotnetDir
108
107
. GetDirectory ( "shared" , "Microsoft.NETCore.App" )
109
108
. EnumerateDirectories ( )
110
- . Single ( d => d . Name . StartsWith ( "2.1.0 " ) ) ;
109
+ . Single ( d => d . Name . StartsWith ( "2.1.1 " ) ) ;
111
110
112
111
if ( packageName == "microsoft.netcore.app" )
113
112
{
You can’t perform that action at this time.
0 commit comments