-
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.
Raise version to 2.2 and modify assembly info and nuspec files to fol…
…low the naming conventions.
- Loading branch information
Showing
4 changed files
with
43 additions
and
26 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
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 |
---|---|---|
@@ -1,18 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>SenseNet.Tools</id> | ||
<version>$version$</version> | ||
<title>Sense/Net Tools for .Net</title> | ||
<authors>tusmester,kavics</authors> | ||
<owners>Sense/Net</owners> | ||
<licenseUrl>https://github.com/SenseNet/sn-tools/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/SenseNet/sn-tools</projectUrl> | ||
<iconUrl>https://raw.githubusercontent.com/SenseNet/sn-resources/master/images/sn-icon/sensenet-icon-64.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>General .Net tools that can be used even in projects independent from Sense/Net ECM.</description> | ||
<copyright>Copyright © Sense/Net Inc.</copyright> | ||
<language>en-US</language> | ||
<tags>sensenet tools</tags> | ||
</metadata> | ||
<metadata> | ||
<id>SenseNet.Tools</id> | ||
<version>$version$</version> | ||
<title>sensenet ECM Tools</title> | ||
<authors>tusmester,kavics</authors> | ||
<owners>Sense/Net</owners> | ||
<licenseUrl>https://github.com/SenseNet/sn-tools/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/SenseNet/sn-tools</projectUrl> | ||
<iconUrl>https://raw.githubusercontent.com/SenseNet/sn-resources/master/images/sn-icon/sensenet-icon-64.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>General .Net tools that can be used even in projects independent from sensenet ECM.</description> | ||
<releaseNotes>See release notes on GitHub.</releaseNotes> | ||
<copyright>Copyright © Sense/Net Inc.</copyright> | ||
<language>en-US</language> | ||
<tags>sensenet tools</tags> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$srcPath = [System.IO.Path]::GetFullPath(($PSScriptRoot + '\..\..\src')) | ||
|
||
# delete existing packages | ||
Remove-Item $PSScriptRoot\*.nupkg | ||
|
||
nuget pack $srcPath\SenseNet.Tools\SenseNet.Tools.csproj -properties Configuration=Release -OutputDirectory $PSScriptRoot |