-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NuGet package containing the MSBuild runtime (#1080)
I copied most of the <file /> items from the existing NUSPEC and was able to add in the "shim" ones for full framework only. Fixes #1039 and #882
- Loading branch information
Showing
2 changed files
with
88 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
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,87 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>$id$</id> | ||
<version>$version$</version> | ||
<title>$id$</title> | ||
<authors>Microsoft</authors> | ||
<owners>Microsoft</owners> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<licenseUrl>$licenseUrl$</licenseUrl> | ||
<projectUrl>$projectUrl$</projectUrl> | ||
<iconUrl>$iconUrl$</iconUrl> | ||
<description>This package contains the runtime of MSBuild. Reference this package only if your application needs to load projects or execute in-process builds.</description> | ||
<tags>MSBuild</tags> | ||
<copyright>Copyright © Microsoft Corporation</copyright> | ||
<contentFiles> | ||
<files include="**" buildAction="None" copyToOutput="true" flatten="false" /> | ||
</contentFiles> | ||
<dependencies> | ||
<group targetFramework="netstandard1.5"> | ||
<dependency id="Microsoft.Build" version="[$version$]" /> | ||
<dependency id="Microsoft.Build.Framework" version="[$version$]" /> | ||
<dependency id="Microsoft.Build.Tasks.Core" version="[$version$]" /> | ||
<dependency id="Microsoft.Build.Utilities.Core" version="[$version$]" /> | ||
</group> | ||
<group targetFramework="net46"> | ||
<dependency id="Microsoft.Build" version="[$version$]" /> | ||
<dependency id="Microsoft.Build.Framework" version="[$version$]" /> | ||
<dependency id="Microsoft.Build.Tasks.Core" version="[$version$]" /> | ||
<dependency id="Microsoft.Build.Utilities.Core" version="[$version$]" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<!-- | ||
contentFiles\any\net46 | ||
--> | ||
<file src="$configuration$\Output\MSBuild.exe" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\MSBuild.exe.config" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.Common.CrossTargeting.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.Common.CurrentVersion.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.Common.overridetasks" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.Common.props" target="contentFiles\any\net46\$targetMSBuildToolsVersion$\" /> | ||
<file src="$configuration$\Output\Microsoft.Common.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.Common.tasks" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.CSharp.CurrentVersion.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.CSharp.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.Data.Entity.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.NETFramework.CurrentVersion.props" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.NETFramework.CurrentVersion.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.NETFramework.props" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.NETFramework.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.ServiceModel.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.VisualBasic.CurrentVersion.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.VisualBasic.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.VisualStudioVersion.v11.Common.props" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.VisualStudioVersion.v12.Common.props" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.VisualStudioVersion.v14.Common.props" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.WinFx.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.WorkflowBuildExtensions.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Microsoft.Xaml.targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Workflow.Targets" target="contentFiles\any\net46\" /> | ||
<file src="$configuration$\Output\Workflow.VisualBasic.Targets" target="contentFiles\any\net46\" /> | ||
|
||
<!-- | ||
contentFiles\any\netcoreapp1.0 | ||
--> | ||
<file src="$configuration$-NetCore\Output\MSBuild.exe" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.Common.CrossTargeting.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.Common.CurrentVersion.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.Common.overridetasks" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.Common.props" target="contentFiles\any\netcoreapp1.0\$targetMSBuildToolsVersion$\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.Common.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.Common.tasks" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.CSharp.CurrentVersion.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.CSharp.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.NETFramework.CurrentVersion.props" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.NETFramework.CurrentVersion.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.NETFramework.props" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.NETFramework.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.VisualBasic.CurrentVersion.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.VisualBasic.targets" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.VisualStudioVersion.v11.Common.props" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.VisualStudioVersion.v12.Common.props" target="contentFiles\any\netcoreapp1.0\" /> | ||
<file src="$configuration$-NetCore\Output\Microsoft.VisualStudioVersion.v14.Common.props" target="contentFiles\any\netcoreapp1.0\" /> | ||
</files> | ||
</package> |