Click here to Skip to main content
15,884,388 members
Articles / Desktop Programming / WPF

Wish You Were Here… Only Once

Rate me:
Please Sign up or sign in to vote.
4.89/5 (71 votes)
10 Mar 2017CPOL10 min read 114K   349   87  
A description of techniques based on context-sensitive conditions
@echo off

set tool=%WINDIR%\Microsoft.NET\Framework\v3.5\MSBuild.exe
set solution=FirstTime.2008.sln

IF EXIST %tool% (
	%tool% %solution% /t:Rebuild /p:Configuration=Debug 
	%tool% %solution% /t:Rebuild /p:Configuration=Release
) ELSE (
	echo MSBuild is not found
	echo    at "%tool%"
	set /p var=Press ENTER...
	goto:eof
)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Physics, physical and quantum optics, mathematics, computer science, control systems for manufacturing, diagnostics, testing, and research, theory of music, musical instruments… Contact me: https://www.SAKryukov.org

Comments and Discussions