Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Side by Side Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaCl.Build.CPPTasks.csproj

Issue 10831030: NaCl settings and completed install scripts. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" 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>8.0.30703</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{FCD6F8FE-DF89-4232-A138-42C97826712A}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>NaCl.Build.CPPTasks</RootNamespace>
12 <AssemblyName>NaCl.Build.CPPTasks</AssemblyName>
13 <TargetFrameworkVersion>v4.0</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>..\..\..\out\NativeClientVSAddIn\Debug\</OutputPath>
21 <DefineConstants>DEBUG;TRACE</DefineConstants>
22 <ErrorReport>prompt</ErrorReport>
23 <WarningLevel>4</WarningLevel>
24 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
25 <UseVSHostingProcess>true</UseVSHostingProcess>
26 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28 <DebugType>pdbonly</DebugType>
29 <Optimize>true</Optimize>
30 <OutputPath>..\..\..\out\NativeClientVSAddIn\Release\</OutputPath>
31 <DefineConstants>TRACE</DefineConstants>
32 <ErrorReport>prompt</ErrorReport>
33 <WarningLevel>4</WarningLevel>
34 </PropertyGroup>
35 <ItemGroup>
36 <Reference Include="Microsoft.Build" />
37 <Reference Include="Microsoft.Build.CPPTasks.Common, Version=4.0.0.0, Cultur e=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
38 <Reference Include="Microsoft.Build.Framework" />
39 <Reference Include="Microsoft.Build.Tasks.v4.0" />
40 <Reference Include="Microsoft.Build.Utilities.v4.0" />
41 <Reference Include="System" />
42 <Reference Include="System.Core" />
43 <Reference Include="System.Management" />
44 <Reference Include="System.Windows.Forms" />
45 <Reference Include="System.Xaml" />
46 <Reference Include="System.Xml.Linq" />
47 <Reference Include="System.Data.DataSetExtensions" />
48 <Reference Include="Microsoft.CSharp" />
49 <Reference Include="System.Data" />
50 <Reference Include="System.Xml" />
51 </ItemGroup>
52 <ItemGroup>
53 <Compile Include="DependencyParser.cs" />
54 <Compile Include="GCCUtilities.cs" />
55 <Compile Include="XamlParser.cs" />
56 <Compile Include="NaClCompile.cs" />
57 <Compile Include="NaClLib.cs" />
58 <Compile Include="NaClLink.cs" />
59 <Compile Include="Properties\AssemblyInfo.cs" />
60 <Compile Include="Properties\Resources.Designer.cs">
61 <AutoGen>True</AutoGen>
62 <DesignTime>True</DesignTime>
63 <DependentUpon>Resources.resx</DependentUpon>
64 </Compile>
65 </ItemGroup>
66 <ItemGroup>
67 <WCFMetadata Include="Service References\" />
68 </ItemGroup>
69 <ItemGroup>
70 <EmbeddedResource Include="Properties\Resources.resx">
71 <Generator>ResXFileCodeGenerator</Generator>
72 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
73 </EmbeddedResource>
74 </ItemGroup>
75 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
76 <PropertyGroup>
77 <PostBuildEvent>
78 </PostBuildEvent>
79 </PropertyGroup>
80 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.
81 Other similar extension points exist, see Microsoft.Common.targets.
82 <Target Name="BeforeBuild">
83 </Target>
84 <Target Name="AfterBuild">
85 </Target>
86 -->
87 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698