-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathSharpChromium.csproj
191 lines (191 loc) · 8.21 KB
/
SharpChromium.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F1653F20-D47D-4F29-8C55-3C835542AF5F}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SharpChromium</RootNamespace>
<AssemblyName>SharpChromium</AssemblyName>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRUE WIN32 _MSC_VER NDEBUG NO_TCL SQLITE_ASCII SQLITE_DISABLE_LFS SQLITE_ENABLE_OVERSIZE_CELL_CHECK SQLITE_MUTEX_OMIT SQLITE_OMIT_AUTHORIZATION SQLITE_OMIT_DEPRECATED SQLITE_OMIT_GET_TABLE SQLITE_OMIT_INCRBLOB SQLITE_OMIT_LOOKASIDE SQLITE_OMIT_SHARED_CACHE SQLITE_OMIT_UTF16 SQLITE_OMIT_VIRTUALTABLE SQLITE_OS_WIN SQLITE_SYSTEM_MALLOC VDBE_PROFILE_OFF </DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<NoWarn>0168 ; 0169; 0414; 0618; 0649</NoWarn>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRUE WIN32 _MSC_VER NDEBUG NO_TCL SQLITE_ASCII SQLITE_DISABLE_LFS SQLITE_ENABLE_OVERSIZE_CELL_CHECK SQLITE_MUTEX_OMIT SQLITE_OMIT_AUTHORIZATION SQLITE_OMIT_DEPRECATED SQLITE_OMIT_GET_TABLE SQLITE_OMIT_INCRBLOB SQLITE_OMIT_LOOKASIDE SQLITE_OMIT_SHARED_CACHE SQLITE_OMIT_UTF16 SQLITE_OMIT_VIRTUALTABLE SQLITE_OS_WIN SQLITE_SYSTEM_MALLOC VDBE_PROFILE_OFF </DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<NoWarn>0168 ; 0169; 0414; 0618; 0649</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Security" />
<Reference Include="System.Xml" />
<Reference Include="System.Management" />
</ItemGroup>
<ItemGroup>
<Compile Include="BCrypt.cs" />
<Compile Include="ChromiumCredentialManager.cs" />
<Compile Include="ChromiumUtils.cs" />
<Compile Include="Cookie.cs" />
<Compile Include="HistoryUrl.cs" />
<Compile Include="HostCookies.cs" />
<Compile Include="Program.cs" />
<Compile Include="SavedLogin.cs" />
<Compile Include="SQLiteDatabase.cs" />
<Compile Include="SQLiteVdbe.cs" />
<Compile Include="src\alter_c.cs" />
<Compile Include="src\analyze_c.cs" />
<Compile Include="src\attach_c.cs" />
<Compile Include="src\auth_c.cs" />
<Compile Include="src\backup_c.cs" />
<Compile Include="src\bitvec_c.cs" />
<Compile Include="src\btmutex_c.cs" />
<Compile Include="src\BtreeInt_h.cs" />
<Compile Include="src\btree_c.cs" />
<Compile Include="src\Btree_h.cs" />
<Compile Include="src\build_c.cs" />
<Compile Include="src\callback_c.cs" />
<Compile Include="src\complete_c.cs" />
<Compile Include="src\date_c.cs" />
<Compile Include="src\Delagates.cs" />
<Compile Include="src\delete_c.cs" />
<Compile Include="src\expr_c.cs" />
<Compile Include="src\fault_c.cs" />
<Compile Include="src\func_c.cs" />
<Compile Include="src\global_c.cs" />
<Compile Include="src\hash_c.cs" />
<Compile Include="src\Hash_h.cs" />
<Compile Include="src\hwtime_c.cs" />
<Compile Include="src\insert_c.cs" />
<Compile Include="src\journal_c.cs" />
<Compile Include="src\keywordhash_h.cs" />
<Compile Include="src\legacy_c.cs" />
<Compile Include="src\loadext_c.cs" />
<Compile Include="src\main_c.cs" />
<Compile Include="src\malloc_c.cs" />
<Compile Include="src\mem0_c.cs" />
<Compile Include="src\mem1_c.cs" />
<Compile Include="src\memjournal_c.cs" />
<Compile Include="src\mutex_c.cs" />
<Compile Include="src\mutex_h.cs" />
<Compile Include="src\mutex_noop_c.cs" />
<Compile Include="src\mutex_w32.cs" />
<Compile Include="src\notify_c.cs" />
<Compile Include="src\opcodes_c.cs" />
<Compile Include="src\opcodes_h.cs" />
<Compile Include="src\os_c.cs" />
<Compile Include="src\os_common_h.cs" />
<Compile Include="src\os_h.cs" />
<Compile Include="src\os_win_c.cs" />
<Compile Include="src\pager_c.cs" />
<Compile Include="src\pager_h.cs" />
<Compile Include="src\parse_c.cs" />
<Compile Include="src\parse_h.cs" />
<Compile Include="src\pcache1_c.cs" />
<Compile Include="src\pcache_c.cs" />
<Compile Include="src\pcache_h.cs" />
<Compile Include="src\pragma_c.cs" />
<Compile Include="src\prepare_c.cs" />
<Compile Include="src\printf_c.cs" />
<Compile Include="src\random_c.cs" />
<Compile Include="src\resolve_c.cs" />
<Compile Include="src\rowset_c.cs" />
<Compile Include="src\select_c.cs" />
<Compile Include="src\sqlite3ext_h.cs" />
<Compile Include="src\sqlite3_h.cs" />
<Compile Include="src\sqliteicu_h.cs" />
<Compile Include="src\sqliteInt_h.cs" />
<Compile Include="src\sqliteLimit_h.cs" />
<Compile Include="src\status_c.cs" />
<Compile Include="src\table_c.cs" />
<Compile Include="src\tokenize_c.cs" />
<Compile Include="src\trigger_c.cs" />
<Compile Include="src\update_c.cs" />
<Compile Include="src\utf_c.cs" />
<Compile Include="src\util_c.cs" />
<Compile Include="src\vacuum_c.cs" />
<Compile Include="src\vdbeapi_c.cs" />
<Compile Include="src\vdbeaux_c.cs" />
<Compile Include="src\vdbeblob_c.cs" />
<Compile Include="src\VdbeInt_h.cs" />
<Compile Include="src\vdbemem_c.cs" />
<Compile Include="src\vdbe_c.cs" />
<Compile Include="src\Vdbe_h.cs" />
<Compile Include="src\vtab_c.cs" />
<Compile Include="src\walker_c.cs" />
<Compile Include="src\where_c.cs" />
<Compile Include="src\_Custom.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Content Include="FodyWeavers.xml" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>