forked from ninject/Ninject
-
Notifications
You must be signed in to change notification settings - Fork 5
/
appveyor.yml
36 lines (29 loc) · 1.5 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
configuration: Release
init:
- cmd: set
install:
- cmd: appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
- cmd: nuget install GitVersion.CommandLine -SolutionDir %APPVEYOR_BUILD_FOLDER% -Verbosity quiet -ExcludeVersion -pre
- cmd: nuget install gitlink -SolutionDir %APPVEYOR_BUILD_FOLDER% -Verbosity quiet -ExcludeVersion -pre
before_build:
- cmd: nuget restore Ninject.sln
- cmd: '.\packages\GitVersion.CommandLine\tools\GitVersion.exe /l console /output buildserver /updateAssemblyInfo'
build:
verbosity: normal
parallel: true
project: Ninject.sln
after_build:
- cmd: '.\packages\gitlink\lib\net45\GitLink.exe . -f src\Humanizer.sln -u https://github.com/MehdiK/Humanizer -s %APPVEYOR_REPO_COMMIT% -errorsaswarnings'
- cmd: nuget pack src\Portable.Ninject.nuspec -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%" -NoPackageAnalysis
- cmd: nuget pack src\Portable.CommonServiceLocator.NinjectAdapter.nuspec -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%" -NoPackageAnalysis
- cmd: appveyor PushArtifact "Portable.Ninject.%GitVersion_NuGetVersion%.nupkg"
- cmd: appveyor PushArtifact "Portable.CommonServiceLocator.NinjectAdapter.%GitVersion_NuGetVersion%.nupkg"
test:
assemblies:
- '**\Ninject.Tests.dll'
deploy:
provider: NuGet
server: https://www.myget.org/F/ninject/api/v2/package
api_key:
secure: bmqlJK8a5HYiUXOT99HXT1j7JiM5+fpR4kHhxIC30oaaEXbv94f0fKdiKlU1QC/l
artifact: /.*\.nupkg/