This repository has been archived by the owner on Nov 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add readme, appveyor ci & nuspec to publish on nuget
- Loading branch information
Showing
3 changed files
with
59 additions
and
0 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 |
---|---|---|
@@ -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 |
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,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> | ||
|
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,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 |