Skip to content
This repository has been archived by the owner on Nov 29, 2019. It is now read-only.

Commit

Permalink
add readme, appveyor ci & nuspec to publish on nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
tomap committed May 13, 2016
1 parent dd1a670 commit 49cc0a3
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
28 changes: 28 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: '2.0.{build}.0'

configuration: Release

assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'

build:
parallel: true
project: 'radius-net.sln'
publish_nuget: true

after_build:
- cmd: nuget pack package.nuspec -version "%APPVEYOR_BUILD_VERSION%"

artifacts:
path: '*.nupkg'

deploy:
provider: NuGet
api_key:
secure: srBMVDnPbP0bAvQALTu0Pi+wQWUWCSDExxmbN5HQ/kDXQvvzf/hPwdV5e4zBnhVG
artifact: /Radius.*\.nupkg/
skip_symbols: false
19 changes: 19 additions & 0 deletions package.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Radius-Net</id>
<version>2.0.0</version>
<authors>Thomas Piart, Cyrille Colin</authors>
<summary>This project purpose a .Net library to authenticate with a Radius server.</summary>
<description>This project purpose a .Net library to authenticate with a Radius server.</description>
<language>en-US</language>
<licenseUrl>https://github.com/tomap/Radius-Net/license</licenseUrl>
<projectUrl>https://github.com/tomap/Radius-Net</projectUrl>
<tags>radius radius-net</tags>
</metadata>
<files>
<file src="radius-net\bin\Release\radius-net.dll" target="lib\net45" />
<file src="radius-net\bin\Release\radius-net.pdb" target="lib\net45" />
</files>
</package>

12 changes: 12 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
This is a fork from EcmaScript.Net.

Here are the main differences:
* VS 2015 project
* .Net 4.5
* has a signed nuget package https://www.nuget.org/packages/EcmaScript.Net45.Signed/
* CI with appveyor [![Build status](https://ci.appveyor.com/api/projects/status/mxix711nwjaipa6e?svg=true)](https://ci.appveyor.com/project/tomap/ecmascript-net)
* included changes from :
* Vladimir Svyatski https://github.com/vsvyatski/EcmaScript.NET
* James code-for-coffee https://github.com/code-for-coffee/EcmaScript.NET

License is New BSD. See LICENSE file

0 comments on commit 49cc0a3

Please sign in to comment.