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

Side by Side Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/NativeClientVSAddIn.csproj

Issue 14122017: [VS Addin] Add visual studio 2012 support (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: now with unit tests Created 7 years, 6 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
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/ms build/2003" ToolsVersion="4.0"> 2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/ms build/2003" ToolsVersion="4.0">
3 <PropertyGroup> 3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>8.0.30424</ProductVersion> 6 <ProductVersion>8.0.30424</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion> 7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{16A0B3E3-6E53-430B-B388-3811E09FC7B8}</ProjectGuid> 8 <ProjectGuid>{16A0B3E3-6E53-430B-B388-3811E09FC7B8}</ProjectGuid>
9 <OutputType>Library</OutputType> 9 <OutputType>Library</OutputType>
10 <StartupObject> 10 <StartupObject>
11 </StartupObject> 11 </StartupObject>
12 <NoStandardLibraries>false</NoStandardLibraries> 12 <NoStandardLibraries>false</NoStandardLibraries>
13 <AssemblyName>NativeClientVSAddIn</AssemblyName> 13 <AssemblyName>NativeClientVSAddIn</AssemblyName>
14 <DeploymentDirectory>.\bin\</DeploymentDirectory> 14 <DeploymentDirectory>.\bin\</DeploymentDirectory>
15 </PropertyGroup> 15 </PropertyGroup>
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17 <DebugSymbols>true</DebugSymbols> 17 <DebugSymbols>true</DebugSymbols>
18 <Optimize>false</Optimize> 18 <Optimize>false</Optimize>
19 <OutputPath>..\..\..\out\vs_addin\Debug\</OutputPath> 19 <OutputPath>..\..\..\out\vs_addin\2010\Debug\</OutputPath>
20 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging> 20 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
21 <DefineConstants>DEBUG;TRACE</DefineConstants> 21 <DefineConstants>DEBUG;TRACE</DefineConstants>
22 <WarningLevel>4</WarningLevel> 22 <WarningLevel>4</WarningLevel>
23 <IncrementalBuild>false</IncrementalBuild> 23 <IncrementalBuild>false</IncrementalBuild>
24 <DocumentationFile>NativeClientVSAddIn.xml</DocumentationFile> 24 <DocumentationFile>NativeClientVSAddIn.xml</DocumentationFile>
25 </PropertyGroup> 25 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27 <DebugSymbols>false</DebugSymbols> 27 <DebugSymbols>false</DebugSymbols>
28 <Optimize>true</Optimize> 28 <Optimize>true</Optimize>
29 <OutputPath>..\..\..\out\vs_addin\Release\</OutputPath> 29 <OutputPath>..\..\..\out\vs_addin\2010\Release\</OutputPath>
30 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging> 30 <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
31 <DefineConstants>TRACE</DefineConstants> 31 <DefineConstants>TRACE</DefineConstants>
32 <WarningLevel>4</WarningLevel> 32 <WarningLevel>4</WarningLevel>
33 <IncrementalBuild>false</IncrementalBuild> 33 <IncrementalBuild>false</IncrementalBuild>
34 <DocumentationFile>NativeClientVSAddIn.xml</DocumentationFile> 34 <DocumentationFile>NativeClientVSAddIn.xml</DocumentationFile>
35 </PropertyGroup> 35 </PropertyGroup>
36 <PropertyGroup> 36 <PropertyGroup>
37 <RootNamespace>NativeClientVSAddIn</RootNamespace> 37 <RootNamespace>NativeClientVSAddIn</RootNamespace>
38 </PropertyGroup> 38 </PropertyGroup>
39 <PropertyGroup> 39 <PropertyGroup>
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 164 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
165 </Copy> 165 </Copy>
166 <Copy Condition="Exists('$(OutputPath)$(PdbName)')" SourceFiles="$(OutputPat h)$(PdbName)" DestinationFolder="$(DeploymentDirectory)"> 166 <Copy Condition="Exists('$(OutputPath)$(PdbName)')" SourceFiles="$(OutputPat h)$(PdbName)" DestinationFolder="$(DeploymentDirectory)">
167 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 167 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
168 </Copy> 168 </Copy>
169 <Copy Condition="Exists('$(OutputPath)$(DocFileName)')" SourceFiles="$(Outpu tPath)$(DocFileName)" DestinationFolder="$(DeploymentDirectory)"> 169 <Copy Condition="Exists('$(OutputPath)$(DocFileName)')" SourceFiles="$(Outpu tPath)$(DocFileName)" DestinationFolder="$(DeploymentDirectory)">
170 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 170 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
171 </Copy> 171 </Copy>
172 </Target> 172 </Target>
173 </Project> 173 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698