diff options
author | Kyungwoo Lee <kyulee@microsoft.com> | 2016-03-23 14:41:20 -0700 |
---|---|---|
committer | Kyungwoo Lee <kyulee@microsoft.com> | 2016-03-23 14:45:11 -0700 |
commit | 45bbee56529086f8476dc430ae971cf5bd29ba11 (patch) | |
tree | aa3fa18e0f51e20738c413cb9778cb526591be3b | |
parent | 6120148c2f3df11ea902989675fb33dd0d71723c (diff) | |
download | coreclr-45bbee56529086f8476dc430ae971cf5bd29ba11.tar.gz coreclr-45bbee56529086f8476dc430ae971cf5bd29ba11.tar.bz2 coreclr-45bbee56529086f8476dc430ae971cf5bd29ba11.zip |
Remove Old NuGet RyuJit Package from Build
This eliminates the old way of nuget package creation as a part of prep:
https://github.com/dotnet/coreclr/issues/3442.
-rw-r--r-- | dir.props | 9 | ||||
-rw-r--r-- | src/build.proj | 14 |
2 files changed, 0 insertions, 23 deletions
@@ -114,15 +114,6 @@ <DnuRestoreCommand>$(DnuRestoreCommand) --packages "$(PackagesDir.TrimEnd('\\'))"</DnuRestoreCommand> </PropertyGroup> - <!-- Setup Nuget properties --> - <ItemGroup> - <NuSpecSrcs Include="$(SourceDir)\.nuget\toolchain.win7-x64.Microsoft.DotNet.RyuJit.nuspec" /> - </ItemGroup> - <ItemGroup> - <!-- Backslash appended, see note in dir.props about the PackagesBinDir property --> - <NuSpecs Include="$(PackagesBinDir)\toolchain.win7-x64.Microsoft.DotNet.RyuJit.nuspec" /> - </ItemGroup> - <!-- Set up Roslyn predefines --> diff --git a/src/build.proj b/src/build.proj index 704cf49892..f125e83765 100644 --- a/src/build.proj +++ b/src/build.proj @@ -10,20 +10,6 @@ <Import Project="..\dir.traversal.targets" /> - - <!-- Hook into the local publishing by providing the task that needs to run before we can do the local publishing --> - <Import Project="$(BuildToolsLocation)\lib\packages.targets" Condition="Exists('$(BuildToolsLocation)\lib\packages.targets')" /> - <PropertyGroup> - <NugetPackageBuildTargets>BuildNuGetPackages</NugetPackageBuildTargets> - </PropertyGroup> - - <!-- Generate RyuJIT nuget package - currently only supported for x64 --> - <Target Name="BuildNuGetPackages" AfterTargets="MovePDB" Condition="'$(BuildNugetPackage)' != 'false' and '$(BuildArch)' == 'x64'"> - <MakeDir Directories="$(PackagesBinDir)" Condition="!Exists('$(PackagesBinDir)')" /> - <Copy SourceFiles="@(NuSpecSrcs)" DestinationFolder="$(PackagesBinDir)" /> - <Exec Command=""$(NuGetToolPath)" pack "%(NuSpecs.Identity)" -NoPackageAnalysis -NoDefaultExcludes -OutputDirectory "$(PackagesBinDir)"" /> - </Target> - <ItemGroup> <PDBSToMove Include="$(BinDir)mscorlib.pdb"/> </ItemGroup> |