diff options
| -rw-r--r-- | Project Ports/Project_Ports.csproj | 1 | ||||
| -rw-r--r-- | appveyor.yml | 32 |
2 files changed, 29 insertions, 4 deletions
diff --git a/Project Ports/Project_Ports.csproj b/Project Ports/Project_Ports.csproj index c8bcbfb..0a63fac 100644 --- a/Project Ports/Project_Ports.csproj +++ b/Project Ports/Project_Ports.csproj @@ -57,6 +57,7 @@ <HintPath>..\packages\ConsoleControl.1.1.0.0\lib\net40\ConsoleControlAPI.dll</HintPath> </Reference> <Reference Include="System" /> + <Reference Include="System.ComponentModel.Composition" /> <Reference Include="System.Core" /> <Reference Include="System.Xml.Linq" /> <Reference Include="System.Data.DataSetExtensions" /> diff --git a/appveyor.yml b/appveyor.yml index 0f851da..2c35afa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,31 @@ +image: Visual Studio 2015 +configuration: Debug +platform: Any CPU +before_build: +- nuget restore + +build: + verbosity: detailed + project: Project_Silicon.sln + after_build: - - tree /F - - 7z a "%APPVEYOR_BUILD_FOLDER%\Project Ports\bin\Debug\Ports-%APPVEYOR_BUILD_VERSION%.zip" "%APPVEYOR_BUILD_FOLDER%\Project Ports\bin\Debug\**" +- cmd: tree /F +- cmd: 7z a -tzip "Project Ports/bin/Debug/Project-Silicon.zip" "Project Ports/bin/Debug/*" artifacts: - - path: \bin\Debug\Ports-%APPVEYOR_BUILD_VERSION%.zip - name: Ports-%APPVEYOR_BUILD_VERSION% +- path: Project Ports/bin/Debug/BSODPrank.zip + name: DevBuild + +deploy: + provider: GitHub + release: Continuous build + description: 'Project Silicon Development Builds' + auth_token: + secure: MeuJU9DaBpnzRdWaqvDfR4M7WhtB90FIpmYkZ5GmS8GyVSWyHT2FAMtDczW3D/JQ + artifact: /.*\.zip/ + draft: false + prerelease: true + force_update: true + tag: continuous + on: + appveyor_repo_tag: true
\ No newline at end of file |
