diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..758eb9e --- /dev/null +++ b/appveyor.yml @@ -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 diff --git a/package.nuspec b/package.nuspec new file mode 100644 index 0000000..d41c418 --- /dev/null +++ b/package.nuspec @@ -0,0 +1,19 @@ + + + + Radius-Net + 2.0.0 + Thomas Piart, Cyrille Colin + This project purpose a .Net library to authenticate with a Radius server. + This project purpose a .Net library to authenticate with a Radius server. + en-US + https://github.com/tomap/Radius-Net/license + https://github.com/tomap/Radius-Net + radius radius-net + + + + + + + diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..417b0af --- /dev/null +++ b/readme.md @@ -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 \ No newline at end of file