OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microso
ft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
6 <ProductVersion>9.0.30729</ProductVersion> | |
7 <SchemaVersion>2.0</SchemaVersion> | |
8 <ProjectGuid>{1309EECE-9229-410C-B155-B1CEADC649E8}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <AppDesignerFolder>Properties</AppDesignerFolder> | |
11 <RootNamespace>NaClVsx.Tasks</RootNamespace> | |
12 <AssemblyName>NaClVsx.Tasks</AssemblyName> | |
13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> | |
14 <FileAlignment>512</FileAlignment> | |
15 </PropertyGroup> | |
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
17 <DebugSymbols>true</DebugSymbols> | |
18 <DebugType>full</DebugType> | |
19 <Optimize>false</Optimize> | |
20 <OutputPath>bin\Debug\</OutputPath> | |
21 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
22 <ErrorReport>prompt</ErrorReport> | |
23 <WarningLevel>4</WarningLevel> | |
24 </PropertyGroup> | |
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU'
"> | |
26 <DebugType>pdbonly</DebugType> | |
27 <Optimize>true</Optimize> | |
28 <OutputPath>bin\Release\</OutputPath> | |
29 <DefineConstants>TRACE</DefineConstants> | |
30 <ErrorReport>prompt</ErrorReport> | |
31 <WarningLevel>4</WarningLevel> | |
32 </PropertyGroup> | |
33 <ItemGroup> | |
34 <Reference Include="Microsoft.Build.Framework" /> | |
35 <Reference Include="Microsoft.Build.Utilities.v3.5"> | |
36 <RequiredTargetFramework>3.5</RequiredTargetFramework> | |
37 </Reference> | |
38 <Reference Include="System" /> | |
39 <Reference Include="System.Core"> | |
40 <RequiredTargetFramework>3.5</RequiredTargetFramework> | |
41 </Reference> | |
42 <Reference Include="System.Xml.Linq"> | |
43 <RequiredTargetFramework>3.5</RequiredTargetFramework> | |
44 </Reference> | |
45 <Reference Include="System.Data.DataSetExtensions"> | |
46 <RequiredTargetFramework>3.5</RequiredTargetFramework> | |
47 </Reference> | |
48 <Reference Include="System.Data" /> | |
49 <Reference Include="System.Xml" /> | |
50 </ItemGroup> | |
51 <ItemGroup> | |
52 <Compile Include="NaClExec.cs" /> | |
53 <Compile Include="Properties\AssemblyInfo.cs" /> | |
54 </ItemGroup> | |
55 <ItemGroup> | |
56 <None Include="NaCl.Common.targets" /> | |
57 </ItemGroup> | |
58 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
59 <!-- To modify your build process, add your task inside one of the targets bel
ow and uncomment it. | |
60 Other similar extension points exist, see Microsoft.Common.targets. | |
61 <Target Name="BeforeBuild"> | |
62 </Target> | |
63 <Target Name="AfterBuild"> | |
64 </Target> | |
65 --> | |
66 <!--The following is used for deploying the task and target to Program Files\M
SBuild\...--> | |
67 <PropertyGroup> | |
68 <DeployDestination>$(MSBuildExtensionsPath)\Google\NaCl\1.0\</DeployDestinat
ion> | |
69 </PropertyGroup> | |
70 <Target Name="AfterBuild"> | |
71 <Message Text="Deploying..." /> | |
72 <MakeDir Directories="$(DeployDestination)" Condition="!Exists($(DeployDesti
nation))" /> | |
73 <CreateItem Include="$(OutputPath)\*.dll" AdditionalMetadata="Visible=false"
> | |
74 <Output TaskParameter="Include" ItemName="DeployToMSBuild" /> | |
75 </CreateItem> | |
76 <CreateItem Include="$(OutputPath)\*.pdb" AdditionalMetadata="Visible=false"
> | |
77 <Output TaskParameter="Include" ItemName="DeployToMSBuild" /> | |
78 </CreateItem> | |
79 <Copy SourceFiles="%(DeployToMSBuild.Identity)" DestinationFolder="$(DeployD
estination)" SkipUnchangedFiles="true" /> | |
80 </Target> | |
81 <ItemGroup> | |
82 <DeployToMSBuild Include="NaCl.Common.targets"> | |
83 <Visible>false</Visible> | |
84 </DeployToMSBuild> | |
85 </ItemGroup> | |
86 </Project> | |
OLD | NEW |