-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathSystem.Data.OleDb.csproj
110 lines (110 loc) · 5.97 KB
/
System.Data.OleDb.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>$(NoWarn);CS1573</NoWarn>
<IsPartialFacadeAssembly Condition="'$(TargetsNetFx)' == 'true'">true</IsPartialFacadeAssembly>
<GeneratePlatformNotSupportedAssemblyMessage Condition="'$(OSGroup)' == 'AnyOS' and '$(TargetsNetStandard)' == 'true'">SR.PlatformNotSupported_OleDb</GeneratePlatformNotSupportedAssemblyMessage>
<NoWarn Condition="'$(OSGroup)' == 'AnyOS' and '$(TargetsNetStandard)' == 'true'">$(NoWarn);CS0618</NoWarn>
<Configurations>net461-Windows_NT-Debug;net461-Windows_NT-Release;$(NetFrameworkCurrent)-Windows_NT-Debug;$(NetFrameworkCurrent)-Windows_NT-Release;netstandard2.0-Debug;netstandard2.0-Release;netstandard2.0-Windows_NT-Debug;netstandard2.0-Windows_NT-Release</Configurations>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup Condition="'$(TargetsNetFx)' != 'true' and '$(TargetsWindows)' == 'true'">
<Compile Include="$(CommonPath)Interop\Windows\Interop.Libraries.cs">
<Link>Common\Interop\Windows\Interop.Libraries.cs</Link>
</Compile>
<Compile Include="$(CommonPath)System\Data\Common\MultipartIdentifier.cs">
<Link>Common\System\Data\Common\MultipartIdentifier.cs</Link>
</Compile>
<Compile Include="AdapterSwitches.cs" />
<Compile Include="ColumnBinding.cs" />
<Compile Include="DbBindings.cs" />
<Compile Include="DbConnectionOptions.cs" />
<Compile Include="DbConnectionStringCommon.cs" />
<Compile Include="DbParameterHelper.cs" />
<Compile Include="DbPropSet.cs" />
<Compile Include="NativeMethods.cs" />
<Compile Include="OleDb_Enum.cs" />
<Compile Include="OleDb_Util.cs" />
<Compile Include="OleDbCommand.cs" />
<Compile Include="OleDbCommandBuilder.cs" />
<Compile Include="OleDbConnection.cs" />
<Compile Include="OleDbConnectionFactory.cs" />
<Compile Include="OleDbConnectionInternal.cs" />
<Compile Include="OleDbConnectionPoolGroupProviderInfo.cs" />
<Compile Include="OleDbConnectionString.cs" />
<Compile Include="OleDbConnectionStringBuilder.cs" />
<Compile Include="OleDbDataAdapter.cs" />
<Compile Include="OleDbDataReader.cs" />
<Compile Include="OleDbEnumerator.cs" />
<Compile Include="OleDbError.cs" />
<Compile Include="OleDbErrorCollection.cs" />
<Compile Include="OleDbException.cs" />
<Compile Include="OleDbFactory.cs" />
<Compile Include="OleDbHResult.cs" />
<Compile Include="OleDbInfoMessageEvent.cs" />
<Compile Include="OleDbInfoMessageEventHandler.cs" />
<Compile Include="OleDbLiteral.cs" />
<Compile Include="OleDbMetadataCollectionNames.cs" />
<Compile Include="OleDbMetadataColumnNames.cs" />
<Compile Include="OleDbMetaDataFactory.cs" />
<Compile Include="OleDbParameter.cs" />
<Compile Include="OleDbParameterCollection.cs" />
<Compile Include="OleDbParameterCollectionHelper.cs" />
<Compile Include="OleDbPropertySetGuid.cs" />
<Compile Include="OleDbPropertyStatus.cs" />
<Compile Include="OleDbReferenceCollection.cs" />
<Compile Include="OleDbRowUpdatedEvent.cs" />
<Compile Include="OleDbRowUpdatedEventHandler.cs" />
<Compile Include="OleDbRowUpdatingEvent.cs" />
<Compile Include="OleDbRowUpdatingEventHandler.cs" />
<Compile Include="OleDbSchemaGuid.cs" />
<Compile Include="OleDbStruct.cs" />
<Compile Include="OleDbTransaction.cs" />
<Compile Include="OleDbType.cs" />
<Compile Include="OleDbWrapper.cs" />
<Compile Include="PropertyIDSet.cs" />
<Compile Include="PropertyInfoSet.cs" />
<Compile Include="RowBinding.cs" />
<Compile Include="SafeHandles.cs" />
<Compile Include="SafeNativeMethods.cs" />
<Compile Include="UnsafeNativeMethods.cs" />
<Compile Include="System\Data\Common\AdapterUtil.cs" />
<Compile Include="System\Data\Common\DataCommonEventSource.cs" />
<Compile Include="System\Data\Common\DbConnectionPoolKey.cs" />
<Compile Include="System\Data\Common\FieldNameLookup.cs" />
<Compile Include="System\Data\Common\NameValuePair.cs" />
<Compile Include="System\Data\Common\SR.cs" />
<Compile Include="System\Data\ProviderBase\DbBuffer.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionClosed.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionFactory.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionHelper.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionInternal.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionInternal.Shared.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionPool.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionPoolCounters.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionPoolGroup.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionPoolGroupProviderInfo.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionPoolIdentity.cs" />
<Compile Include="System\Data\ProviderBase\DbConnectionPoolOptions.cs" />
<Compile Include="System\Data\ProviderBase\DbMetaDataFactory.cs" />
<Compile Include="System\Data\ProviderBase\DbReferenceCollection.cs" />
<Compile Include="System\Data\ProviderBase\WrappedIUnknown.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\System.Data.OleDb.OleDbMetaData.xml">
<LogicalName>System.Data.OleDb.OleDbMetaData.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup Condition="'$(TargetsNetFx)' == 'true'">
<Reference Include="mscorlib" />
<Reference Include="System.Data" />
</ItemGroup>
<ItemGroup Condition="'$(TargetsNetFx)' != 'true'">
<Reference Include="Microsoft.Win32.Registry" />
<Reference Include="System.Memory" />
<Reference Include="System.Data.SqlClient" />
<Reference Include="System.Configuration.ConfigurationManager" />
<Reference Include="System.Diagnostics.PerformanceCounter" />
<Reference Include="System.Security.Principal.Windows" />
</ItemGroup>
</Project>