File tree Expand file tree Collapse file tree 8 files changed +95
-5
lines changed Expand file tree Collapse file tree 8 files changed +95
-5
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <package xmlns =" http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd" >
3
+ <metadata >
4
+ <id >VS.Redist.Common.AspNetCore.AspNetCoreModuleV2IISExpress.$MAJOR$.$MINOR$</id >
5
+ <version >1.0.0</version >
6
+ <title >VS.Redist.Common.AspNetCore.AspNetCoreModuleV2IISExpress.$MAJOR$.$MINOR$</title >
7
+ <authors >Microsoft</authors >
8
+ <owners >Microsoft</owners >
9
+ <license type =" expression" >$PackageLicenseExpression$</license >
10
+ <projectUrl >https://github.com/dotnet/aspnetcore</projectUrl >
11
+ <icon >$PackageIcon$</icon >
12
+ <requireLicenseAcceptance >true</requireLicenseAcceptance >
13
+ <description >$MAJOR$.$MINOR$ ASP.NET Core Module IIS Express Windows Installer MSI as a .nupkg for internal Visual Studio build consumption</description >
14
+ <copyright >© Microsoft Corporation. All rights reserved.</copyright >
15
+ <serviceable >true</serviceable >
16
+ </metadata >
17
+ <files >
18
+ <file src =" $ASPNETCORE_RUNTIME_MSI$" />
19
+ <file src =" $ASPNETCORE_CAB_FILE$" />
20
+ <file src =" $PackageIconFullPath$" target =" $PackageIcon$" />
21
+ </files >
22
+ </package >
Original file line number Diff line number Diff line change 13
13
<SchemaVersion >2.0</SchemaVersion >
14
14
<TempPlatform Condition =" '$(Platform)' == 'x64'" >x64</TempPlatform >
15
15
<TempPlatform Condition =" '$(Platform)' == 'x86'" >Win32</TempPlatform >
16
+ <ToolsetInstallerNuspecFile >$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuspec</ToolsetInstallerNuspecFile >
16
17
</PropertyGroup >
17
18
18
19
<ItemGroup >
68
69
69
70
<PropertyGroup >
70
71
<PackageFileName >ancm_iis_express_$(Platform)_en_v2_$(PackageVersion)$(TargetExt)</PackageFileName >
72
+ <ProductNameShort >ASP.NET Core Module IIS Express V2</ProductNameShort >
71
73
</PropertyGroup >
74
+
75
+ <Target Name =" CreateANCMIISExpressNugetPackage" DependsOnTargets =" CopyToArtifactsDirectory" BeforeTargets =" Build" >
76
+ <PropertyGroup >
77
+ <MsiFullPath >$(InstallersOutputPath)$(PackageFileName)</MsiFullPath >
78
+ </PropertyGroup >
79
+
80
+ <Exec Command =" powershell -NoProfile -NoLogo $(GenerateNupkgPowershellScript) ^
81
+ '$(ProductNameShort)' ^
82
+ '$(MsiFullPath)' ^
83
+ '$(CabFullPath)' ^
84
+ '$(ToolsetInstallerNuspecFile)' ^
85
+ '$(ArtifactsNonShippingPackagesDir)' ^
86
+ '$(Platform)' ^
87
+ '$(_GeneratedPackageVersion)' ^
88
+ '$(RepoRoot)' ^
89
+ '$(AspNetCoreMajorVersion)' ^
90
+ '$(AspNetCoreMinorVersion)' ^
91
+ '$(PackageIcon)' ^
92
+ '$(PackageIconFullPath)' ^
93
+ '$(PackageLicenseExpression)' " />
94
+ </Target >
72
95
</Project >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <package xmlns =" http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd" >
3
+ <metadata >
4
+ <id >VS.Redist.Common.AspNetCore.AspNetCoreModuleV2.$MAJOR$.$MINOR$</id >
5
+ <version >1.0.0</version >
6
+ <title >VS.Redist.Common.AspNetCore.AspNetCoreModuleV2.$MAJOR$.$MINOR$</title >
7
+ <authors >Microsoft</authors >
8
+ <owners >Microsoft</owners >
9
+ <license type =" expression" >$PackageLicenseExpression$</license >
10
+ <projectUrl >https://github.com/dotnet/aspnetcore</projectUrl >
11
+ <icon >$PackageIcon$</icon >
12
+ <requireLicenseAcceptance >true</requireLicenseAcceptance >
13
+ <description >$MAJOR$.$MINOR$ ASP.NET Core Module Windows Installer MSI as a .nupkg for internal Visual Studio build consumption</description >
14
+ <copyright >© Microsoft Corporation. All rights reserved.</copyright >
15
+ <serviceable >true</serviceable >
16
+ </metadata >
17
+ <files >
18
+ <file src =" $ASPNETCORE_RUNTIME_MSI$" />
19
+ <file src =" $ASPNETCORE_CAB_FILE$" />
20
+ <file src =" $PackageIconFullPath$" target =" $PackageIcon$" />
21
+ </files >
22
+ </package >
Original file line number Diff line number Diff line change 11
11
<GenerateRandomNamespaceGuid >true</GenerateRandomNamespaceGuid >
12
12
<SchemaVersion >2.0</SchemaVersion >
13
13
<DisableGuidGeneration >true</DisableGuidGeneration >
14
+ <ToolsetInstallerNuspecFile >$(MSBuildProjectDirectory)\$(MSBuildProjectName).nuspec</ToolsetInstallerNuspecFile >
14
15
</PropertyGroup >
15
16
16
17
<ItemGroup >
56
57
57
58
<PropertyGroup >
58
59
<PackageFileName >aspnetcoremodule_$(Platform)_en_v2_$(PackageVersion)$(TargetExt)</PackageFileName >
60
+ <ProductNameShort >ASP.NET Core Module V2</ProductNameShort >
59
61
</PropertyGroup >
62
+
63
+ <Target Name =" CreateANCMNugetPackage" DependsOnTargets =" CopyToArtifactsDirectory" BeforeTargets =" Build" >
64
+ <PropertyGroup >
65
+ <MsiFullPath >$(InstallersOutputPath)$(PackageFileName)</MsiFullPath >
66
+ </PropertyGroup >
67
+
68
+ <Exec Command =" powershell -NoProfile -NoLogo $(GenerateNupkgPowershellScript) ^
69
+ '$(ProductNameShort)' ^
70
+ '$(MsiFullPath)' ^
71
+ '$(CabFullPath)' ^
72
+ '$(ToolsetInstallerNuspecFile)' ^
73
+ '$(ArtifactsNonShippingPackagesDir)' ^
74
+ '$(Platform)' ^
75
+ '$(_GeneratedPackageVersion)' ^
76
+ '$(RepoRoot)' ^
77
+ '$(AspNetCoreMajorVersion)' ^
78
+ '$(AspNetCoreMinorVersion)' ^
79
+ '$(PackageIcon)' ^
80
+ '$(PackageIconFullPath)' ^
81
+ '$(PackageLicenseExpression)' " />
82
+ </Target >
60
83
</Project >
Original file line number Diff line number Diff line change 10
10
<projectUrl >https://github.com/dotnet/aspnetcore</projectUrl >
11
11
<icon >$PackageIcon$</icon >
12
12
<requireLicenseAcceptance >true</requireLicenseAcceptance >
13
- <description >$MAJOR$.$MINOR$ ASP.NET Core TargetingPack ($ARCH$) Windows Installer MSI as a .nupkg for internal Visual Studio build consumption</description >
13
+ <description >$MAJOR$.$MINOR$ ASP.NET Core Shared Framework ($ARCH$) Windows Installer MSI as a .nupkg for internal Visual Studio build consumption</description >
14
14
<copyright >© Microsoft Corporation. All rights reserved.</copyright >
15
15
<serviceable >true</serviceable >
16
16
</metadata >
Original file line number Diff line number Diff line change 21
21
<DefineConstants >$(DefineConstants);AspNetCoreSharedFrameworkSource=$(HarvestSource)</DefineConstants >
22
22
<NamespaceGuid >$(SharedFrameworkNamespaceGuid)</NamespaceGuid >
23
23
<SchemaVersion >2.0</SchemaVersion >
24
- <ToolsetInstallerNuspecFile >$(RepoRoot)\src\Installers\Windows\SharedFramework\SharedFrameworkPackage .nuspec</ToolsetInstallerNuspecFile >
24
+ <ToolsetInstallerNuspecFile >$(MSBuildProjectDirectory)\$(MSBuildProjectName) .nuspec</ToolsetInstallerNuspecFile >
25
25
</PropertyGroup >
26
26
27
27
<ItemGroup >
86
86
<DefineConstants >$(DefineConstants);ProductName=$(ProductName)</DefineConstants >
87
87
</PropertyGroup >
88
88
89
- <Target Name =" CreateSharedFrameworkNugetPackage" AfterTargets =" CopyToArtifactsDirectory; Build" >
89
+ <Target Name =" CreateSharedFrameworkNugetPackage" DependsOnTargets =" CopyToArtifactsDirectory" BeforeTargets = " Build" >
90
90
<PropertyGroup >
91
91
<MsiFullPath >$(InstallersOutputPath)$(PackageFileName)</MsiFullPath >
92
92
</PropertyGroup >
File renamed without changes.
Original file line number Diff line number Diff line change 20
20
<DefineConstants >$(DefineConstants);AspNetCoreTargetingPackSource=$(HarvestSource)</DefineConstants >
21
21
<NamespaceGuid >DDBB771F-963F-47D3-8510-9ABD04DBE1D1</NamespaceGuid >
22
22
<SchemaVersion >2.0</SchemaVersion >
23
- <ToolsetInstallerNuspecFile >$(RepoRoot)\src\Installers\Windows\TargetingPack\TargetingPackPackage .nuspec</ToolsetInstallerNuspecFile >
23
+ <ToolsetInstallerNuspecFile >$(MSBuildProjectDirectory)\$(MSBuildProjectName) .nuspec</ToolsetInstallerNuspecFile >
24
24
<PackageVersion >$(TargetingPackVersionPrefix)</PackageVersion >
25
25
<BundleVersion >$(TargetingPackVersionPrefix)</BundleVersion >
26
26
</PropertyGroup >
80
80
<DefineConstants >$(DefineConstants);ProductName=$(ProductName)</DefineConstants >
81
81
</PropertyGroup >
82
82
83
- <Target Name =" CreateTargetingPackNugetPackage" AfterTargets =" CopyToArtifactsDirectory; Build" >
83
+ <Target Name =" CreateTargetingPackNugetPackage" DependsOnTargets =" CopyToArtifactsDirectory" BeforeTargets = " Build" >
84
84
<PropertyGroup >
85
85
<MsiFullPath >$(InstallersOutputPath)$(PackageFileName)</MsiFullPath >
86
86
</PropertyGroup >
You can’t perform that action at this time.
0 commit comments