Skip to content

Commit

Permalink
Prep for release (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
slozier committed Dec 2, 2021
1 parent c91bd12 commit 60dfacb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@
<Target Name="ZipPackage" DependsOnTargets="Stage;MakePackageDir"
Outputs="$(PackageDir)\DynamicLanguageRuntime.$(PackageVersion).zip">
<ItemGroup>
<ZipFiles Include="$(StageDir)\**\*.dll;$(StageDir)\**\*.xml;$(StageDir)\README.md;$(StageDir)\LICENSE" />
<ZipFiles Include="$(StageDir)\**\*.dll;$(StageDir)\**\*.xml;$(StageDir)\README.md;$(StageDir)\LICENSE"
Exclude="$(StageDir)\netcoreapp2.1\**\*;$(StageDir)\net5.0*\**\*;$(StageDir)\net6.0*\**\*" />
</ItemGroup>
<Message Text="$(ZipFiles)" />
<Zip Files="@(ZipFiles)" ZipFileName="$(PackageDir)\DynamicLanguageRuntime.$(PackageVersion).zip" WorkingDirectory="$(StageDir)"/>
Expand Down
2 changes: 1 addition & 1 deletion CurrentVersion.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<MajorVersion>1</MajorVersion>
<MinorVersion>3</MinorVersion>
<MicroVersion>0</MicroVersion>
<MicroVersion>1</MicroVersion>
<ReleaseLevel>final</ReleaseLevel><!-- alpha, beta, candidate or final -->
<ReleaseSerial>0</ReleaseSerial><!-- this should only be 0 when final -->

Expand Down
8 changes: 4 additions & 4 deletions Package/nuget/DynamicLanguageRuntime.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>DynamicLanguageRuntime</id>
<title>Dynamic Language Runtime</title>
<version>1.3.0</version>
<version>1.3.1</version>
<authors>DLR Contributors,Microsoft</authors>
<owners>DLR Community</owners>
<projectUrl>http://ironpython.net</projectUrl>
Expand All @@ -30,9 +30,9 @@
</dependencies>
</metadata>
<files>
<file src="**\*.dll" target="lib" />
<file src="**\*.pdb" target="lib" />
<file src="**\*.xml" target="lib" />
<file src="**\*.dll" target="lib" exclude="netcoreapp2.1\**\*;net5.0*\**\*;net6.0*\**\*" />
<file src="**\*.pdb" target="lib" exclude="netcoreapp2.1\**\*;net5.0*\**\*;net6.0*\**\*" />
<file src="**\*.xml" target="lib" exclude="netcoreapp2.1\**\*;net5.0*\**\*;net6.0*\**\*" />
<file src="README.md;LICENSE" />
</files>
</package>

0 comments on commit 60dfacb

Please sign in to comment.