Last active
August 29, 2015 13:57
-
-
Save SyntaxC4/9545768 to your computer and use it in GitHub Desktop.
This target file can be used to deploy WebJobs via WebDeploy (Visual Studio Publish)
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8" ?> | |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" | |
ToolsVersion="4.0"> | |
<ItemGroup> | |
<FilesForPackagingFromProject Include="App_Data\jobs\**\*"> | |
<DestinationRelativePath>App_Data\jobs\%(RecursiveDir)%(FileName)%(Extension)</DestinationRelativePath> | |
</FilesForPackagingFromProject> | |
</ItemGroup> | |
</Project> |
This file contains hidden or 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
rem Replace [WebProjectName] with the name of your Web Application project name | |
xcopy "$(TargetDir)*.*" "$(SolutionDir)[WebProjectName]\App_Data\jobs\continuous\$(ProjectName)\" /y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment