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

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

Issue 10790023: VS-Addin Build/Test/Install scripts (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 5 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.AddIn">
131 <SubType>Designer</SubType>
132 </Content>
133 <Content Include="NativeClientVsAddIn_Testing.AddIn"> 130 <Content Include="NativeClientVsAddIn_Testing.AddIn">
134 <SubType>Designer</SubType> 131 <SubType>Designer</SubType>
135 </Content> 132 </Content>
136 </ItemGroup> 133 </ItemGroup>
137 <ItemGroup> 134 <ItemGroup>
138 <EmbeddedResource Include="Strings.resx"> 135 <EmbeddedResource Include="Strings.resx">
139 <Generator>ResXFileCodeGenerator</Generator> 136 <Generator>ResXFileCodeGenerator</Generator>
140 <LastGenOutput>Strings.Designer.cs</LastGenOutput> 137 <LastGenOutput>Strings.Designer.cs</LastGenOutput>
141 <SubType>Designer</SubType> 138 <SubType>Designer</SubType>
142 </EmbeddedResource> 139 </EmbeddedResource>
(...skipping 25 matching lines...) Expand all
168 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 165 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
169 </Copy> 166 </Copy>
170 <Copy Condition="Exists('$(OutputPath)$(PdbName)')" SourceFiles="$(OutputPat h)$(PdbName)" DestinationFolder="$(DeploymentDirectory)"> 167 <Copy Condition="Exists('$(OutputPath)$(PdbName)')" SourceFiles="$(OutputPat h)$(PdbName)" DestinationFolder="$(DeploymentDirectory)">
171 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 168 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
172 </Copy> 169 </Copy>
173 <Copy Condition="Exists('$(OutputPath)$(DocFileName)')" SourceFiles="$(Outpu tPath)$(DocFileName)" DestinationFolder="$(DeploymentDirectory)"> 170 <Copy Condition="Exists('$(OutputPath)$(DocFileName)')" SourceFiles="$(Outpu tPath)$(DocFileName)" DestinationFolder="$(DeploymentDirectory)">
174 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> 171 <Output TaskParameter="DestinationFiles" ItemName="FileWrites" />
175 </Copy> 172 </Copy>
176 </Target> 173 </Target>
177 </Project> 174 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698