Skip to content

Commit

Permalink
nuget binary release might finally work
Browse files Browse the repository at this point in the history
updated version
fix issue with nuget package not including dlls
  • Loading branch information
hannasm committed Mar 10, 2016
1 parent 0cba985 commit b6d582a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,6 @@ FakesAssemblies/

# Visual Studio 6 workspace options file
*.opt

# ignore auto generate .pp files
*.cs.pp
Binary file modified ExpressiveExpressionTrees/ExpressiveExpressionTrees.Sources.nuspec
Binary file not shown.
6 changes: 5 additions & 1 deletion ExpressiveExpressionTrees/Package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
<package >
<metadata>
<id>ExpressiveExpressionTrees</id>
<version>1.1.0</version>
<version>1.1.1</version>
<authors>hannasm</authors>
<owners>hannasm</owners>
<licenseUrl>https://github.com/hannasm/ExpressiveExpressionTreesDotNet/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/hannasm/ExpressiveExpressionTreesDotNet</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This is a library that simplifies creating / manipulating expression trees.</description>
<releaseNotes>
* 1.1.1 - Apparently the binary nuget packages didn't have a dll in them
* 1.1.0 - Added ConvertExpressions() / Split() / Join() / MultiProject() helpers
* 1.1.0 - This is the first release that is also available as a Sources package on nuget
* 1.1.0 - This version imports the Sources nuget package of ExpressiveReflection
Expand All @@ -18,6 +19,9 @@
</metadata>
<files>
<file src="..\readme.md" target="" />
<file src="bin\Release\*.dll" target="lib" />
<file src="bin\Release\*.pdb" target="lib" />
<file src="bin\Release\*.xml" target="lib" />
</files>
</package>
<!-- vim: set expandtab ts=2 sw=2: -->
4 changes: 2 additions & 2 deletions ExpressiveExpressionTrees/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0")]
[assembly: AssemblyFileVersion("1.1.0")]
[assembly: AssemblyVersion("1.1.1")]
[assembly: AssemblyFileVersion("1.1.1")]
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Versioning
This is version 1.1.0 of the Expressive Expression Tree library.
This is version 1.1.1 of the Expressive Expression Tree library.

This package is available on nuget at: https://www.nuget.org/packages/ExpressiveExpressionTrees/1.1.0
This package is available on nuget at: https://www.nuget.org/packages/ExpressiveExpressionTrees/1.1.1

This package is also available from nuget as an embeddable sources package at: https://www.nuget.org/packages/ExpressiveExpressionTrees.Sources/1.1.0
This package is also available from nuget as an embeddable sources package at: https://www.nuget.org/packages/ExpressiveExpressionTrees.Sources/1.1.1

The source for this package is available on github at: https://github.com/hannasm/ExpressiveExpressionTreesDotNet/releases/tag/1.1.0
The source for this package is available on github at: https://github.com/hannasm/ExpressiveExpressionTreesDotNet/releases/tag/1.1.1

# ExpressiveExpressionTreesDotNet
This is a library that simplifies creating / manipulating expression trees. This includes various expression tree related utilities
Expand Down Expand Up @@ -53,6 +53,9 @@ will be treated as equal.

# Changelog

## 1.1.1
* Apparently the binary nuget packages didn't have a dll in them

## 1.1.0
* Added ConvertExpressions() / Split() / Join() / MultiProject() helpers
* Add helpers for MakeBinary() / etc...
Expand Down

0 comments on commit b6d582a

Please sign in to comment.