forked from dotnet/wcf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wcf.targets
22 lines (18 loc) · 815 Bytes
/
wcf.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
Overrides for WCF
-->
<PropertyGroup>
<CoreCompileDependsOn>EnsureAssemblyInfoFileDirExists;$(CoreCompileDependsOn)</CoreCompileDependsOn>
</PropertyGroup>
<Target Name="EnsureAssemblyInfoFileDirExists">
<Error Condition="!Exists('$(BaseIntermediateOutputPath)')" Text="EnsureAssemblyInfoFileDirExists failed because BaseIntermediateOutputPath isn't set to a valid directory" />
<MakeDir Directories="$(AssemblyInfoFileDir)" />
</Target>
<PropertyGroup>
<WcfRootFolder>$(MSBuildThisFileDirectory)</WcfRootFolder>
</PropertyGroup>
<PropertyGroup Condition="'$(WcfToolsOutputPath)' == ''">
<WcfToolsOutputPath>$(WcfRootFolder)bin\Wcf\tools\</WcfToolsOutputPath>
</PropertyGroup>
</Project>