-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathData.Oracle.csproj
More file actions
67 lines (55 loc) · 2.78 KB
/
Data.Oracle.csproj
File metadata and controls
67 lines (55 loc) · 2.78 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\package.props" />
<PropertyGroup>
<TargetFrameworks>net452;net46;net47;netstandard2.0;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<AssemblyName>$(PreAssemblyName).Data.Oracle</AssemblyName>
<RootNamespace>$(PreAssemblyName).Data.Oracle</RootNamespace>
<PackageId>$(PrePackageName).Data.Oracle$(PostPackageName)</PackageId>
<Description>Oracle support for Enterprise Library Data Access Application Block. The Data Access Application Block simplifies the development of tasks that implement common data access functionality. Applications can use this application block in a variety of situations, such as reading data for display, passing data through application layers, and submitting changed data back to the database system.</Description>
<PackageTags>entlib entlib6 Enterprise Library data daab dab LOB oracle</PackageTags>
<AssemblyVersion>$(MajorVersion).0.0.0</AssemblyVersion>
<FileVersion>$(Version).$(Revision)</FileVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\EnterpriseLibrary.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard')) OR $(TargetFramework.StartsWith('netcoreapp'))">
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="$(OracleManagedDataAccessCore)" />
</ItemGroup>
<ItemGroup Condition="!$(TargetFramework.StartsWith('netstandard')) AND !$(TargetFramework.StartsWith('netcoreapp'))">
<PackageReference Include="Oracle.ManagedDataAccess" Version="21.9.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Data\Data.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\GlobalAssemblyInfo.cs">
<Link>GlobalAssemblyInfo.cs</Link>
</Compile>
<None Include="..\..\DataAccess.licenseheader">
<Link>DataAccess.licenseheader</Link>
</None>
<Compile Update="Configuration\DesignResources.Designer.cs">
<DependentUpon>DesignResources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
<EmbeddedResource Update="Configuration\DesignResources.resx">
<LastGenOutput>DesignResources.Designer.cs</LastGenOutput>
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup Label="NuGet">
<Content Include="..\..\NuGet\Readme.txt">
<Pack>true</Pack>
<Visible>False</Visible>
<PackagePath></PackagePath>
</Content>
</ItemGroup>
</Project>