Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated nuspec for Dnn #5

Merged
merged 6 commits into from
May 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ image: Visual Studio 2017
nuget:
project_feed: true
disable_publish_on_pr: true

version: 1.9.2.{build}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I specifically removed this because it will cause duplicate build numbers. Besides, it will have no effect on the outcome because the build number is then changed programmatically using the Update-AppveyorBuild command. It doesn't hurt either but it feels redundant to have this and ProductVersion variable below

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The build number wasn't working for me on my fork so I added it in to certify it was working from the config file


environment:
ProductVersion: 1.9.2

Expand All @@ -17,4 +18,4 @@ before_build:
build_script:
- ps: .\Build-Release.ps1 $env:BuildVersion ''
after_build:
- ps: Push-AppveyorArtifact build\Releases\v$env:BuildVersion\ClientDependency.$env:BuildVersion.nupkg
- ps: Push-AppveyorArtifact build\Releases\v$env:BuildVersion\Dnn.ClientDependency.$env:BuildVersion.nupkg
6 changes: 3 additions & 3 deletions build/ClientDependency.nuspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>ClientDependency</id>
<title>Client Dependency Framework</title>
<id>Dnn.ClientDependency</id>
<title>Client Dependency Framework - Dnn Fork</title>
<version>0.0.0.0</version>
<authors>Shannon Deminick</authors>
<description>ClientDependency is a framework for simplifying colaborative development of ASP.NET components, allowing components to state what CSS and JavaScript files they require, and ensuring that each file only is only added once to the response. ClientDependency also handles combination, minification and compression of CSS and JavaScript.</description>
<description>Forked for DNN. ClientDependency is a framework for simplifying colaborative development of ASP.NET components, allowing components to state what CSS and JavaScript files they require, and ensuring that each file only is only added once to the response. ClientDependency also handles combination, minification and compression of CSS and JavaScript.</description>
<summary>A library for handling CSS and JavaScript dependencies</summary>
<language>en-US</language>
<licenseUrl>http://www.opensource.org/licenses/ms-pl</licenseUrl>
Expand Down