-
Notifications
You must be signed in to change notification settings - Fork 10k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release/2.1 into release/2.2 (#12290)
- Loading branch information
1 parent
fd5517f
commit 9a6d4af
Showing
4 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright (c) .NET Foundation and contributors. All rights reserved. | ||
# Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
param( | ||
[Parameter(Mandatory=$true)][string]$Name, | ||
[Parameter(Mandatory=$true)][string]$MsiPath, | ||
[Parameter(Mandatory=$false)][string]$CabPath, | ||
[Parameter(Mandatory=$true)][string]$NuspecFile, | ||
[Parameter(Mandatory=$true)][string]$OutputDirectory, | ||
[Parameter(Mandatory=$true)][string]$Architecture, | ||
[Parameter(Mandatory=$true)][string]$PackageVersion, | ||
[Parameter(Mandatory=$true)][string]$RepoRoot, | ||
[Parameter(Mandatory=$true)][string]$MajorVersion, | ||
[Parameter(Mandatory=$true)][string]$MinorVersion | ||
) | ||
|
||
$NuGetDir = Join-Path $RepoRoot "obj\Tools\nuget\$Name\$Architecture" | ||
$NuGetExe = Join-Path $NuGetDir "nuget.exe" | ||
|
||
if (-not (Test-Path $NuGetDir)) { | ||
New-Item -ItemType Directory -Force -Path $NuGetDir | Out-Null | ||
} | ||
|
||
if (-not (Test-Path $NuGetExe)) { | ||
# Using 3.5.0 to workaround https://github.com/NuGet/Home/issues/5016 | ||
Write-Output "Downloading nuget.exe to $NuGetExe" | ||
wget https://dist.nuget.org/win-x86-commandline/v3.5.0/nuget.exe -OutFile $NuGetExe | ||
} | ||
|
||
& $NuGetExe pack $NuspecFile -Version $PackageVersion -OutputDirectory $OutputDirectory -NoDefaultExcludes -NoPackageAnalysis -Properties ASPNETCORE_RUNTIME_MSI=$MsiPath`;ASPNETCORE_CAB_FILE=$CabPath`;ARCH=$Architecture`;MAJOR=$MajorVersion`;MINOR=$MinorVersion`; | ||
Exit $LastExitCode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/Installers/Windows/SharedFramework/SharedFrameworkPackage.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>VS.Redist.Common.AspNetCore.SharedFramework.$ARCH$.$MAJOR$.$MINOR$</id> | ||
<version>1.0.0</version> | ||
<title>VS.Redist.Common.AspNetCore.SharedFramework.$ARCH$.$MAJOR$.$MINOR$</title> | ||
<authors>Microsoft</authors> | ||
<owners>Microsoft</owners> | ||
<licenseUrl>https://www.microsoft.com/net/dotnet_library_license.htm</licenseUrl> | ||
<projectUrl>https://github.com/aspnet/aspnetcore</projectUrl> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<description>$MAJOR$.$MINOR$ ASP.NET Core TargetingPack ($ARCH$) Windows Installer MSI as a .nupkg for internal Visual Studio build consumption</description> | ||
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
</metadata> | ||
<files> | ||
<file src="$ASPNETCORE_RUNTIME_MSI$" /> | ||
<file src="$ASPNETCORE_CAB_FILE$" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters