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

Side by Side Diff: experimental/visual_studio_plugin/src/SymbolDBViewer/SymbolDBViewer.csproj

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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
OLDNEW
(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>{EC474546-A2AD-4C12-953D-7735BA472E2D}</ProjectGuid>
9 <OutputType>WinExe</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>SymbolDBViewer</RootNamespace>
12 <AssemblyName>SymbolDBViewer</AssemblyName>
13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14 <FileAlignment>512</FileAlignment>
15 <StartupObject>SymbolDBViewer.Program</StartupObject>
16 </PropertyGroup>
17 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18 <DebugSymbols>true</DebugSymbols>
19 <DebugType>full</DebugType>
20 <Optimize>false</Optimize>
21 <OutputPath>bin\Debug\</OutputPath>
22 <DefineConstants>DEBUG;TRACE</DefineConstants>
23 <ErrorReport>prompt</ErrorReport>
24 <WarningLevel>4</WarningLevel>
25 <PlatformTarget>x86</PlatformTarget>
26 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28 <DebugType>pdbonly</DebugType>
29 <Optimize>true</Optimize>
30 <OutputPath>bin\Release\</OutputPath>
31 <DefineConstants>TRACE</DefineConstants>
32 <ErrorReport>prompt</ErrorReport>
33 <WarningLevel>4</WarningLevel>
34 </PropertyGroup>
35 <ItemGroup>
36 <Reference Include="Microsoft.VisualStudio.Debugger.InteropA, Version=9.0.0. 0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
37 <Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
38 <SpecificVersion>False</SpecificVersion>
39 <HintPath>C:\Program Files (x86)\Microsoft Visual Studio 2008 SDK\VisualSt udioIntegration\Common\Assemblies\Microsoft.VisualStudio.OLE.Interop.dll</HintPa th>
40 </Reference>
41 <Reference Include="Microsoft.VisualStudio.Shell.9.0, Version=2.0.0.0, Cultu re=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
42 <Reference Include="System" />
43 <Reference Include="System.Core">
44 <RequiredTargetFramework>3.5</RequiredTargetFramework>
45 </Reference>
46 <Reference Include="System.Xml.Linq">
47 <RequiredTargetFramework>3.5</RequiredTargetFramework>
48 </Reference>
49 <Reference Include="System.Data.DataSetExtensions">
50 <RequiredTargetFramework>3.5</RequiredTargetFramework>
51 </Reference>
52 <Reference Include="System.Data" />
53 <Reference Include="System.Deployment" />
54 <Reference Include="System.Drawing" />
55 <Reference Include="System.Windows.Forms" />
56 <Reference Include="System.Xml" />
57 </ItemGroup>
58 <ItemGroup>
59 <Compile Include="CallFrameLoader.cs">
60 <SubType>Component</SubType>
61 </Compile>
62 <Compile Include="DIECapableLoader.cs">
63 <SubType>Component</SubType>
64 </Compile>
65 <Compile Include="DIELoader.cs">
66 <SubType>Component</SubType>
67 </Compile>
68 <Compile Include="LocListLoader.cs">
69 <SubType>Component</SubType>
70 </Compile>
71 <Compile Include="NexeLoader.cs">
72 <SubType>Form</SubType>
73 </Compile>
74 <Compile Include="NexeLoader.Designer.cs">
75 <DependentUpon>NexeLoader.cs</DependentUpon>
76 </Compile>
77 <Compile Include="Program.cs" />
78 <Compile Include="Properties\AssemblyInfo.cs" />
79 <EmbeddedResource Include="NexeLoader.resx">
80 <DependentUpon>NexeLoader.cs</DependentUpon>
81 <SubType>Designer</SubType>
82 </EmbeddedResource>
83 <EmbeddedResource Include="Properties\Resources.resx">
84 <Generator>ResXFileCodeGenerator</Generator>
85 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
86 <SubType>Designer</SubType>
87 </EmbeddedResource>
88 <Compile Include="Properties\Resources.Designer.cs">
89 <AutoGen>True</AutoGen>
90 <DependentUpon>Resources.resx</DependentUpon>
91 </Compile>
92 <None Include="Properties\Settings.settings">
93 <Generator>SettingsSingleFileGenerator</Generator>
94 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
95 </None>
96 <Compile Include="Properties\Settings.Designer.cs">
97 <AutoGen>True</AutoGen>
98 <DependentUpon>Settings.settings</DependentUpon>
99 <DesignTimeSharedInput>True</DesignTimeSharedInput>
100 </Compile>
101 <Compile Include="DictionaryLoader.cs">
102 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
103 <SubType>Component</SubType>
104 </Compile>
105 <Compile Include="ScopeTransitionLoader.cs">
106 <SubType>Component</SubType>
107 </Compile>
108 <Compile Include="SourceFileLoader.cs">
109 <SubType>Component</SubType>
110 </Compile>
111 <Compile Include="SourceLocationLoader.cs">
112 <SubType>Component</SubType>
113 </Compile>
114 </ItemGroup>
115 <ItemGroup>
116 <ProjectReference Include="..\MsAd7.BaseImpl\MsAd7.BaseImpl.csproj">
117 <Project>{97E92446-E5EF-457A-B3CB-E9EB6CC41D62}</Project>
118 <Name>MsAd7.BaseImpl</Name>
119 </ProjectReference>
120 <ProjectReference Include="..\NaClVsx.DebugHelpers\NaClVsx.DebugHelpers.vcpr oj">
121 <Project>{6C53643B-14F7-40F9-9511-CE33F447F475}</Project>
122 <Name>NaClVsx.DebugHelpers</Name>
123 </ProjectReference>
124 <ProjectReference Include="..\NaClVsx.Package\NaClVsx.Package.csproj">
125 <Project>{20C5110D-0897-4B1C-9193-26D6F6E088AE}</Project>
126 <Name>NaClVsx.Package</Name>
127 </ProjectReference>
128 </ItemGroup>
129 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
130 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.
131 Other similar extension points exist, see Microsoft.Common.targets.
132 <Target Name="BeforeBuild">
133 </Target>
134 <Target Name="AfterBuild">
135 </Target>
136 -->
137 </Project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698