Created
December 11, 2015 04:32
-
-
Save masaru-b-cl/e6063336825a9d968dbd to your computer and use it in GitHub Desktop.
環境変数で指定した先にビルド成果物を作成する*.*proj
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
... | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
<OutputPath Condition="'$(SPECIAL_EXE_DIR)' != ''">$(SPECIAL_EXE_DIR)\</OutputPath> | |
<OutputPath Condition="'$(OutputPath)' == ''">.\bin\</OutputPath> | |
<DocumentationFile>Hoge.xml</DocumentationFile> | |
<DebugSymbols>True</DebugSymbols> | |
... | |
</PropertyGroup> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
環境変数%SPECIAL_EXE_DIR%が定義されていればそちらへ、なければプロジェクトフォルダー\binに出力する。
なお、msbuild.exeで叩くときは、OutDirプロパティを指定してそちらに出力させる。