Created
May 25, 2017 16:25
-
-
Save RichieBzzzt/ce5a2bf1e2e2e48b7b312f8e3859db37 to your computer and use it in GitHub Desktop.
This file contains 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
<Target Name="AfterGet"> | |
<CallTarget Targets="DevEnvInstaller"> | |
</Target> |
This file contains 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
<Target Name="DevEnvInstaller"> | |
<PropertyGroup> | |
<DevEnv>C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\devenv.com</DevEnv> | |
<SolutionFile>$(SolutionRoot)\ssis_guy\ssis_guy.sln</SolutionFile> | |
<ProjectFile>$(SolutionRoot)\ssis_guy\ssis_guy\ssis_guy.dtproj</ProjectFile> | |
<Configuration>Release</Configuration> | |
</PropertyGroup> | |
<Exec | |
Command=""$(devenv)" "$(SolutionFile)" /Rebuild "$(Configuration)" /Project "$(ProjectFile)" /ProjectConfig "$(Configuration)" /Log" | |
ContinueOnError="false" | |
IgnoreExitCode="false" | |
WorkingDirectory="$(MSBuildProjectDirectory)" /> | |
</Target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment