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

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

Issue 10830151: VS Add-in more properties and improvements (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
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>
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 <Guid>{00020430-0000-0000-C000-000000000046}</Guid> 120 <Guid>{00020430-0000-0000-C000-000000000046}</Guid>
121 <VersionMajor>2</VersionMajor> 121 <VersionMajor>2</VersionMajor>
122 <VersionMinor>0</VersionMinor> 122 <VersionMinor>0</VersionMinor>
123 <Lcid>0</Lcid> 123 <Lcid>0</Lcid>
124 <WrapperTool>primary</WrapperTool> 124 <WrapperTool>primary</WrapperTool>
125 <Isolated>False</Isolated> 125 <Isolated>False</Isolated>
126 <EmbedInteropTypes>False</EmbedInteropTypes> 126 <EmbedInteropTypes>False</EmbedInteropTypes>
127 </COMReference> 127 </COMReference>
128 </ItemGroup> 128 </ItemGroup>
129 <ItemGroup> 129 <ItemGroup>
130 <Content Include="NativeClientVsAddIn_Testing.AddIn">
131 <SubType>Designer</SubType>
132 </Content>
133 </ItemGroup>
134 <ItemGroup>
135 <EmbeddedResource Include="Strings.resx"> 130 <EmbeddedResource Include="Strings.resx">
136 <Generator>ResXFileCodeGenerator</Generator> 131 <Generator>ResXFileCodeGenerator</Generator>
137 <LastGenOutput>Strings.Designer.cs</LastGenOutput> 132 <LastGenOutput>Strings.Designer.cs</LastGenOutput>
138 <SubType>Designer</SubType> 133 <SubType>Designer</SubType>
139 </EmbeddedResource> 134 </EmbeddedResource>
140 </ItemGroup> 135 </ItemGroup>
141 <ItemGroup> 136 <ItemGroup>
142 <WCFMetadata Include="Service References\" /> 137 <WCFMetadata Include="Service References\" />
143 </ItemGroup> 138 </ItemGroup>
139 <ItemGroup>
140 <Content Include="NativeClientVSAddIn - For Testing.AddIn">
141 <SubType>Designer</SubType>
142 </Content>
143 </ItemGroup>
144 <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> 144 <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
145 <PropertyGroup> 145 <PropertyGroup>
146 <PreBuildEvent> 146 <PreBuildEvent>
147 </PreBuildEvent> 147 </PreBuildEvent>
148 <PostBuildEvent> 148 <PostBuildEvent>
149 </PostBuildEvent> 149 </PostBuildEvent>
150 </PropertyGroup> 150 </PropertyGroup>
151 <ProjectExtensions /> 151 <ProjectExtensions />
152 <Target Name="AfterBuild"> 152 <Target Name="AfterBuild">
153 <PropertyGroup> 153 <PropertyGroup>
(...skipping 11 matching lines...) Expand all
165 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 165 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
166 </Copy> 166 </Copy>
167 <Copy Condition="Exists('$(OutputPath)$(PdbName)')" SourceFiles="$(OutputPat h)$(PdbName)" DestinationFolder="$(DeploymentDirectory)"> 167 <Copy Condition="Exists('$(OutputPath)$(PdbName)')" SourceFiles="$(OutputPat h)$(PdbName)" DestinationFolder="$(DeploymentDirectory)">
168 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 168 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
169 </Copy> 169 </Copy>
170 <Copy Condition="Exists('$(OutputPath)$(DocFileName)')" SourceFiles="$(Outpu tPath)$(DocFileName)" DestinationFolder="$(DeploymentDirectory)"> 170 <Copy Condition="Exists('$(OutputPath)$(DocFileName)')" SourceFiles="$(Outpu tPath)$(DocFileName)" DestinationFolder="$(DeploymentDirectory)">
171 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 171 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
172 </Copy> 172 </Copy>
173 </Target> 173 </Target>
174 </Project> 174 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698