-
Notifications
You must be signed in to change notification settings - Fork 0
/
msbuild.common.targets
44 lines (38 loc) · 1.8 KB
/
msbuild.common.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8" ?>
<!--
*************************************************************
This file defines common settings and tasks for projects.
*************************************************************
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
ToolsVersion="3.5"
DefaultTargets="Build">
<!--
Move out "obj\" subfolder from project folder to keep clean "src" with source and ploject files only.
-->
<PropertyGroup>
<BaseIntermediateOutputPath>..\..\obj\$(ProjectName)\</BaseIntermediateOutputPath>
<IntermediateOutputPath>..\..\obj\$(ProjectName)\$(Configuration)\</IntermediateOutputPath>
<EntityDeployIntermediateResourcePath>..\..\obj\$(ProjectName)\$(Configuration)\edmxResourcesToEmbed\</EntityDeployIntermediateResourcePath>
<PackageTempRootDir>..\..\obj\$(ProjectName)\$(Configuration)\Package\</PackageTempRootDir>
<_PackageTempDir>..\..\obj\$(ProjectName)\$(Configuration)\Package\PackageTmp\</_PackageTempDir>
<TransformWebConfigIntermediateLocation>..\..\obj\$(ProjectName)\$(Configuration)\TransformWebConfig\</TransformWebConfigIntermediateLocation>
<UseHostCompilerIfAvailable>false</UseHostCompilerIfAvailable>
<ObjDirectory>obj\</ObjDirectory>
</PropertyGroup>
<!--
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>..\..\test\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>..\..\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>
-->
<!--
Delete "obj\debug\TempPE" folder created by Visual Studio during opening project.
-->
<Target Name="BeforeBuild">
<RemoveDir Condition="Exists('$(ObjDirectory)')"
Directories="$(ObjDirectory);" />
</Target>
</Project>