-
Notifications
You must be signed in to change notification settings - Fork 4
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
Create chocolatey package as a part of the build #24
Changes from all commits
230006b
e988978
f60b962
4d307f9
0eea991
b7ea244
34599e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
build_script: | ||
- ps: .\build.ps1 -Target "Appveyor" | ||
|
||
artifacts: | ||
- path: package\*.zip | ||
- path: package\*.nupkg | ||
|
||
# AppVeyor defaults to just its build number | ||
version: '{build}' | ||
|
||
# disable built-in tests. | ||
test: off | ||
test: off | ||
|
||
artifacts: | ||
- path: package\*.zip | ||
- path: package\*.nupkg | ||
|
||
deploy: | ||
- provider: NuGet | ||
server: https://www.myget.org/F/nunit/api/v2 | ||
api_key: | ||
secure: wtAvJDVl2tfwiVcyLExFHLvZVfUWiQRHsfdHBFCNEATeCHo1Nd8JP642PfY8xhji | ||
skip_symbols: true | ||
on: | ||
branch: master |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. --> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<id>nunit-project-editor</id> | ||
<version>0.0.0</version> | ||
<packageSourceUrl>https://github.com/nunit/nunit-project-editor</packageSourceUrl> | ||
<owners>Charlie Poole</owners> | ||
|
||
<title>NUnit Project Editor</title> | ||
<authors>Charlie Poole</authors> | ||
<projectUrl>https://github.com/nunit/nunit-project-editor</projectUrl> | ||
<iconUrl>http://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png</iconUrl> | ||
<copyright>2016 Charlie Poole</copyright> | ||
<licenseUrl>http://github.com/nunit/nunit-project-editor/blob/master/LICENSE.txt</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<projectSourceUrl>https://github.com/nunit/nunit-project-editor</projectSourceUrl> | ||
<docsUrl>https://github.com/nunit/docs/wiki/Project-Editor</docsUrl> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good shout including this! Chocolatey also has a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can include them if you think it's helpful (it's optional as far as chocolatey.org is concerned). Not sure whether to use a mailto: or the google groups url for support. You need to have a google id for the latter, so maybe the email is better. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd personally prefer a URL, mailto links are often naff when you use an online email client! That's just a personal preference however. 😄 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Off the top of my head, not sure how a mailto: url would be rendered via the markdown engine, so probably safer to stick with a URL. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ChrisMaddock There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Whoops sorry - looks like that one's planned but not implemented yet. Can't remember where I found it. |
||
<mailingListUrl>https://groups.google.com/forum/#!forum/nunit-discuss</mailingListUrl> | ||
<bugTrackerUrl>https://github.com/nunit/nunit-project-editor/issues</bugTrackerUrl> | ||
<tags>nunit project editor unit testing</tags> | ||
<summary>Editor for NUnit Test Projects</summary> | ||
<description>NUnit supports NUnit projects (extension .nunit) to define a collection of test assemblies that are loaded and run together. This tool is used to edit the contents of an NUnit Test Project.</description> | ||
<releaseNotes>This is the first independent production release of the editor, which was previously bundled with NUnit V2.</releaseNotes> | ||
</metadata> | ||
</package> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What benefit is adding these 2 files to the solution? Ease of editing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. :-)