This repository has been archived by the owner on Apr 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathADONetHelper.Snowflake.csproj
47 lines (47 loc) · 2.27 KB
/
ADONetHelper.Snowflake.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/rgarrison12345/ADONetHelper.Snowflake</PackageProjectUrl>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/rgarrison12345/ADONetHelper.Snowflake.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.2.1</Version>
<PackageTags>Snowflake Snowflake.Data ORM ADO.NET ADO SQL .NET Database RDBMS Generic DAL ANSI</PackageTags>
<Copyright>Copyright © Robert Garrison 2020</Copyright>
<Authors>Robert Garrison</Authors>
<Company>Robert Garrison</Company>
<Product>ADONetHelper.Snowflake</Product>
<Title>ADONetHelper.Snowflake</Title>
<PackageId>ADONetHelper.Snowflake</PackageId>
<Description>Extends ADONetHelper library to Snowflake</Description>
<PackageReleaseNotes>Updating to Snowflake.Data 1.1.2 and ADONetHelper 4.1.0</PackageReleaseNotes>
<AssemblyName>ADONetHelper.Snowflake</AssemblyName>
<RootNamespace>ADONetHelper.Snowflake</RootNamespace>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\ADONetHelper.Snowflake.xml</DocumentationFile>
<NeutralLanguage>en-us</NeutralLanguage>
<DefineConstants>TRACE;</DefineConstants>
<Prefer32Bit>false</Prefer32Bit>
<OutputType>Library</OutputType>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.md" Pack="true" PackagePath="LICENSE.md" />
<PackageReference Include="ADONetHelper" version="4.1.0" />
<PackageReference Include="Snowflake.Data" Version="1.1.2" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>.\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugSymbols>false</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>.\bin\Release\</OutputPath>
<DefineConstants>RELEASE;</DefineConstants>
</PropertyGroup>
</Project>