Skip to content
This repository has been archived by the owner on Sep 14, 2018. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'jsakamoto/split-dlrnupkg' into ipy-2.7-…
Browse files Browse the repository at this point in the history
…maint
  • Loading branch information
jdhardy committed Apr 25, 2015
2 parents 7aab2d6 + 850578e commit 45b1933
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CurrentVersion.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,14 @@

<AssemblyRevision>0</AssemblyRevision>
</PropertyGroup>
<PropertyGroup>
<DlrMajorVersion>1</DlrMajorVersion>
<DlrMinorVersion>1</DlrMinorVersion>
<DlrMicroVersion>0</DlrMicroVersion>
<!-- Allowed: alpha,beta,candidate,final -->
<DlrReleaseLevel>final</DlrReleaseLevel>
<DlrReleaseSerial>0</DlrReleaseSerial>

<DlrAssemblyRevision>21</DlrAssemblyRevision>
</PropertyGroup>
</Project>
5 changes: 4 additions & 1 deletion Languages/IronPython/IronPython.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@
<summary>IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework.</summary>
<language>en-US</language>
<tags>ironpython python dynamic dlr</tags>
<dependencies>
<dependency id="DynamicLanguageRuntime" version="1.1.0" />
</dependencies>
</metadata>
<files>
<file src="ipy*.exe" target="tools" />
<file src="ipy*.exe.config" target="tools" />
<file src="Platforms\**\*.*" target="lib" />
<file src="Platforms\**\*.*" target="lib" exclude="**\Microsoft.*.*" />
</files>
</package>
21 changes: 21 additions & 0 deletions Runtime/DynamicLanguageRuntime.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>DynamicLanguageRuntime</id>
<title>DynamicLanguageRuntime</title>
<!-- version number defined by Dlr*Version property in ~/CurrentVersion.props. -->
<version>0.0.0</version>
<authors>DLR Contributors,Microsoft</authors>
<owners>DLR Community</owners>
<projectUrl>http://dlr.codeplex.com</projectUrl>
<licenseUrl>http://dlr.codeplex.com/license</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>The Dynamic Language Runtime enables language developers to more easily create dynamic languages for the .NET platform.</summary>
<description>The Dynamic Language Runtime enables language developers to more easily create dynamic languages for the .NET platform.</description>
<language>en-US</language>
<tags>dynamic dlr</tags>
</metadata>
<files>
<file src="Platforms\**\Microsoft.*.*" target="lib" />
</files>
</package>
5 changes: 5 additions & 0 deletions Solutions/Build.IronPython.proj
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,12 @@
<NuGetVersion Condition="'$(ReleaseLevel)' == 'final' and '$(ReleaseSerial)' == '0'">$(MajorVersion).$(MinorVersion).$(MicroVersion)</NuGetVersion>
<NuGetVersion Condition="'$(ReleaseLevel)' != 'final' or '$(ReleaseSerial)' != '0'">$(MajorVersion).$(MinorVersion).$(MicroVersion)-$(ReleaseLevel)$(ReleaseSerial)</NuGetVersion>
</PropertyGroup>
<PropertyGroup>
<DlrNuGetVersion Condition="'$(ReleaseLevel)' == 'final' and '$(ReleaseSerial)' == '0'">$(DlrMajorVersion).$(DlrMinorVersion).$(DlrMicroVersion)</DlrNuGetVersion>
<DlrNuGetVersion Condition="'$(ReleaseLevel)' != 'final' or '$(ReleaseSerial)' != '0'">$(DlrMajorVersion).$(DlrMinorVersion).$(DlrMicroVersion)-$(DlrReleaseLevel)$(DlrReleaseSerial)</DlrNuGetVersion>
</PropertyGroup>
<MakeDir Directories="$(PackageDir)" Condition="!Exists('$(PackageDir)')" />
<Exec Command="$(UtilDir)\Misc\NuGet.exe pack -Version $(DlrNuGetVersion) &quot;$(BaseDir)\Runtime\DynamicLanguageRuntime.nuspec&quot; -BasePath &quot;$(StageDir)&quot; -OutputDirectory &quot;$(PackageDir)&quot;" />
<Exec Command="$(UtilDir)\Misc\NuGet.exe pack -Version $(NuGetVersion) &quot;$(BaseDir)\Languages\IronPython\IronPython.nuspec&quot; -BasePath &quot;$(StageDir)&quot; -OutputDirectory &quot;$(PackageDir)&quot;" />
<Exec Command="$(UtilDir)\Misc\NuGet.exe pack -Version $(NuGetVersion) &quot;$(BaseDir)\Languages\IronPython\IronPython.StdLib.nuspec&quot; -BasePath &quot;$(StageDir)&quot; -OutputDirectory &quot;$(PackageDir)&quot;" />
</Target>
Expand Down

0 comments on commit 45b1933

Please sign in to comment.