Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Cazzulino <daniel@cazzulino.com>2015-06-04 17:50:08 +0300
committerDaniel Cazzulino <daniel@cazzulino.com>2015-06-04 18:43:09 +0300
commit01b9ad3d8843c6daafc29bbea4ed652d8c51bdab (patch)
treeac31c1ce64752d0c8c77c362603de4506bf055a5 /ICSharpCode.NRefactory
parent4fec0c394618f56d523994df4c01bfca4e096dc9 (diff)
Fix dirty builds all the time from doc file
The previous path of the documentation file, pointed to bin caused MSBuild on Windows to always build the output assembly again every time. By moving the doc file to the intermediate output path, the problem goes away and MSBuild properly detects that the project is up-to-date. The doc file is automatically copied to the output path, so no behavior changes from the previous value.
Diffstat (limited to 'ICSharpCode.NRefactory')
-rw-r--r--ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj2
1 files changed, 1 insertions, 1 deletions
diff --git a/ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj b/ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj
index acb3e194..c24afdd2 100644
--- a/ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj
+++ b/ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj
@@ -22,9 +22,9 @@
<WarningLevel>4</WarningLevel>
<NoWarn>1591</NoWarn>
<OutputPath>..\bin\$(Configuration)\</OutputPath>
- <DocumentationFile>..\bin\$(Configuration)\ICSharpCode.NRefactory.xml</DocumentationFile>
<NoWin32Manifest>False</NoWin32Manifest>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
+ <DocumentationFile>$(IntermediateOutputPath)ICSharpCode.NRefactory.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>