Skip to content

Instantly share code, notes, and snippets.

@pvandervelde
Created January 19, 2017 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pvandervelde/c6490e33fd73d0f7afc15677a4bf2e8b to your computer and use it in GitHub Desktop.
Save pvandervelde/c6490e33fd73d0f7afc15677a4bf2e8b to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="11.0"
DefaultTargets="MindVortex_Deploy_PushTo_AppVeyor_Run"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Defines whether the current script file has been loaded / imported or not -->
<ExistsDeployPushToGitHubRelease>true</ExistsDeployPushToGitHubRelease>
</PropertyGroup>
<Import Project="$(DirNBuildKitMsBuildShared)\shared.importdeploysharedsettings.props"
Condition="Exists('$(DirNBuildKitMsBuildShared)\shared.importdeploysharedsettings.props') AND '$(ExistsSharedImportDeploySharedSettings)' != 'true' " />
<Target Name="MindVortex_Deploy_PushTo_AppVeyor_Run">
<CallTarget Targets="_MindVortex_Deploy_PushTo_AppVeyor_Push" />
</Target>
<Target Name="_MindVortex_Deploy_PushTo_AppVeyor_Push"
Condition=" '$(IsOnAppVeyorBuildServer)' == 'true' "
Outputs="%(PushToGitHubReleaseSpecs.Identity)">
<ItemGroup>
<AppVeyorArtefacts Include="$(DirBuildDeploy)\**\*.zip" />
</ItemGroup>
<Exec
Command="appveyor PushArtifact %(AppVeyorArtefacts.Identity)"
Condition="" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment