-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added NuSpec for Resources library and incremented the version number…
…s. Updated the build file as well.
- Loading branch information
Showing
5 changed files
with
38 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
..\Tools\nuget pack ..\Src\Workshell.PE\Workshell.PE.csproj -Build -Prop Configuration=Release; | ||
..\Tools\nuget pack ..\Src\Workshell.PE\Workshell.PE.csproj -Build -Prop Configuration=Release; | ||
..\Tools\nuget pack ..\Src\Workshell.PE.Resources\Workshell.PE.Resources.csproj -Build -Prop Configuration=Release; |
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
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,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>Workshell.PE.Resources</id> | ||
<version>$version$</version> | ||
<title>Workshell PE Resource Extentensions</title> | ||
<summary>A set of extensions for Workshell PE to help deal with resources.</summary> | ||
<description>A set of classes to help deal with resources within an executable such as bitmaps, icons and cursors.</description> | ||
<authors>Workshell Ltd</authors> | ||
<copyright>Workshell Ltd</copyright> | ||
<language>en-US</language> | ||
<projectUrl>https://github.com/Workshell/pe</projectUrl> | ||
<licenseUrl>https://raw.githubusercontent.com/Workshell/pe/master/license.txt</licenseUrl> | ||
<iconUrl>http://img.workshell.co.uk/logo_128.png</iconUrl> | ||
<tags>pe executable native resources</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.0"> | ||
<dependency id="Workshell.PE" version="$version$" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
</package> |
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