Update Internal.AspNetCore.Sdk
This commit is contained in:
parent
0d18f1e6f7
commit
8d7e9b737a
|
|
@ -208,7 +208,7 @@
|
||||||
<!-- ASP.NET Core Tools feed -->
|
<!-- ASP.NET Core Tools feed -->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AspNetCoreToolsFeed>https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json</AspNetCoreToolsFeed>
|
<AspNetCoreToolsFeed>https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json</AspNetCoreToolsFeed>
|
||||||
<InternalAspNetCoreSdkPackageVersion>2.1.0-preview1-15551</InternalAspNetCoreSdkPackageVersion>
|
<InternalAspNetCoreSdkPackageVersion>$(KoreBuildVersion)</InternalAspNetCoreSdkPackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -64,16 +64,6 @@ try {
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
$deps = Get-Content "$RepoRoot/build/dependencies.props" `
|
|
||||||
| % {
|
|
||||||
if ($_ -like '*<InternalAspNetCoreSdkPackageVersion>*') {
|
|
||||||
" <InternalAspNetCoreSdkPackageVersion>$newVersion</InternalAspNetCoreSdkPackageVersion>"
|
|
||||||
} else {
|
|
||||||
$_
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$deps | Set-Content -Encoding UTF8 "$RepoRoot/build/dependencies.props"
|
|
||||||
|
|
||||||
Invoke-Block { git add "$RepoRoot/korebuild-lock.txt" }
|
Invoke-Block { git add "$RepoRoot/korebuild-lock.txt" }
|
||||||
Invoke-Block { git add "$RepoRoot/build/dependencies.props" }
|
Invoke-Block { git add "$RepoRoot/build/dependencies.props" }
|
||||||
|
|
||||||
|
|
@ -85,11 +75,11 @@ try {
|
||||||
|
|
||||||
$gitConfigArgs = @()
|
$gitConfigArgs = @()
|
||||||
if ($GitAuthorName) {
|
if ($GitAuthorName) {
|
||||||
$gitConfigArgs += '-c',"user.name=$GitAuthorName"
|
$gitConfigArgs += '-c', "user.name=$GitAuthorName"
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($GitAuthorEmail) {
|
if ($GitAuthorEmail) {
|
||||||
$gitConfigArgs += '-c',"user.email=$GitAuthorEmail"
|
$gitConfigArgs += '-c', "user.email=$GitAuthorEmail"
|
||||||
}
|
}
|
||||||
|
|
||||||
Invoke-Block { git @gitConfigArgs commit -m $message @GitCommitArgs }
|
Invoke-Block { git @gitConfigArgs commit -m $message @GitCommitArgs }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue