|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - <PropertyGroup> |
3 | | - <!-- net481 for Windows .NET Framework 4.8.1, net8.0-windows for Windows .NET 8+ --> |
4 | | - <!-- netstandard2.0/net8.0 for Unix/Linux platforms --> |
5 | | - <TargetFrameworks>netstandard2.0;net481;net8.0;net8.0-windows</TargetFrameworks> |
6 | | - <Title>Snowflake.Data</Title> |
7 | | - <PackageId>Snowflake.Data</PackageId> |
8 | | - <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
9 | | - <PackageProjectUrl>https://github.com/snowflakedb/snowflake-connector-net</PackageProjectUrl> |
10 | | - <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
11 | | - <PackageIconUrl>https://raw.githubusercontent.com/snowflakedb/snowflake-connector-net/master/Snowflake.Data/snowflake.ico</PackageIconUrl> |
12 | | - <RepositoryUrl>https://github.com/snowflakedb/snowflake-connector-net</RepositoryUrl> |
13 | | - <RepositoryType>git</RepositoryType> |
14 | | - <Description>Snowflake Connector for .NET</Description> |
15 | | - <Company>Snowflake Computing, Inc</Company> |
16 | | - <Product>Snowflake Connector for .NET</Product> |
17 | | - <Authors>Snowflake</Authors> |
18 | | - <Version>5.1.0</Version> |
19 | | - <DebugType>Full</DebugType> |
20 | | - <LangVersion>8</LangVersion> |
21 | | - </PropertyGroup> |
22 | | - |
23 | | - <!-- Define WINDOWS_BUILD for all Windows-specific targets --> |
24 | | - <PropertyGroup Condition="'$(TargetFramework)' == 'net481' OR '$(TargetFramework)' == 'net8.0-windows'"> |
25 | | - <DefineConstants>$(DefineConstants);WINDOWS_BUILD</DefineConstants> |
26 | | - </PropertyGroup> |
27 | | - |
28 | | - <ItemGroup> |
29 | | - <PackageReference Include="Apache.Arrow" Version="14.0.2" /> |
30 | | - <PackageReference Include="AWSSDK.S3" Version="4.0.4" /> |
31 | | - <PackageReference Include="Google.Cloud.Storage.V1" Version="4.10.0" /> |
32 | | - <PackageReference Include="Azure.Storage.Blobs" Version="12.13.0" /> |
33 | | - <PackageReference Include="Azure.Storage.Common" Version="12.12.0" /> |
34 | | - <PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.5" /> |
35 | | - <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
36 | | - <PackageReference Include="BouncyCastle.Cryptography" Version="2.3.1" /> |
37 | | - <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.34.0" /> |
38 | | - <PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> |
39 | | - <PackageReference Include="Tomlyn.Signed" Version="0.17.0" /> |
40 | | - </ItemGroup> |
41 | | - |
42 | | - <!-- Mono.Unix dependency ONLY for Unix/Linux platforms (netstandard2.0 and net8.0) --> |
43 | | - <!-- NOT included for Windows targets: net481, net8.0-windows --> |
44 | | - <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net8.0'"> |
45 | | - <PackageReference Include="Mono.Unix" Version="7.1.0-final.1.21458.1" /> |
46 | | - </ItemGroup> |
47 | | - |
48 | | - <!-- Exclude platform shims from all targets by default (SDK auto-includes all .cs files) --> |
49 | | - <ItemGroup> |
50 | | - <Compile Remove="PlatformShims\**\*.cs" /> |
51 | | - </ItemGroup> |
52 | | - |
53 | | - <!-- Include Mono.Unix Windows shim for all Windows targets --> |
54 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net481' OR '$(TargetFramework)' == 'net8.0-windows'"> |
55 | | - <Compile Include="PlatformShims\MonoUnixWindowsShim.cs" /> |
56 | | - </ItemGroup> |
57 | | - |
58 | | - <ItemGroup Condition="'$(Configuration)' != 'Release'"> |
59 | | - <InternalsVisibleTo Include="Snowflake.Data.Tests" /> |
60 | | - <!--needed by Moq to be able to mock internal interfaces--> |
61 | | - <InternalsVisibleTo Include="DynamicProxyGenAssembly2" /> |
62 | | - </ItemGroup> |
63 | | - |
64 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
65 | | - <DebugType>full</DebugType> |
66 | | - <DebugSymbols>True</DebugSymbols> |
67 | | - </PropertyGroup> |
68 | | - |
69 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
70 | | - <DebugType>full</DebugType> |
71 | | - <DebugSymbols>True</DebugSymbols> |
72 | | - </PropertyGroup> |
73 | | - |
74 | | - <PropertyGroup> |
75 | | - <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
76 | | - <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
77 | | - <AssemblyVersion>$(Version)</AssemblyVersion> |
78 | | - </PropertyGroup> |
79 | | - |
80 | | - <PropertyGroup> |
81 | | - <DefineConstants Condition="'$(DefineAdditionalConstants)' != ''">$(DefineConstants);$(DefineAdditionalConstants)</DefineConstants> |
82 | | - </PropertyGroup> |
83 | | - |
84 | | - <ItemGroup> |
85 | | - <Folder Include="Properties\" /> |
86 | | - </ItemGroup> |
87 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFrameworks>netstandard2.0;net481;net8.0;net8.0-windows</TargetFrameworks> |
| 4 | + <Title>Snowflake.Data</Title> |
| 5 | + <PackageId>Snowflake.Data</PackageId> |
| 6 | + <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
| 7 | + <PackageProjectUrl>https://github.com/snowflakedb/snowflake-connector-net</PackageProjectUrl> |
| 8 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 9 | + <PackageIconUrl>https://raw.githubusercontent.com/snowflakedb/snowflake-connector-net/master/Snowflake.Data/snowflake.ico</PackageIconUrl> |
| 10 | + <RepositoryUrl>https://github.com/snowflakedb/snowflake-connector-net</RepositoryUrl> |
| 11 | + <RepositoryType>git</RepositoryType> |
| 12 | + <Description>Snowflake Connector for .NET</Description> |
| 13 | + <Company>Snowflake Computing, Inc</Company> |
| 14 | + <Product>Snowflake Connector for .NET</Product> |
| 15 | + <Authors>Snowflake</Authors> |
| 16 | + <Version>5.1.0</Version> |
| 17 | + <DebugType>Full</DebugType> |
| 18 | + <LangVersion>8</LangVersion> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <!-- Define WINDOWS_BUILD for all Windows-specific targets --> |
| 22 | + <PropertyGroup Condition="'$(TargetFramework)' == 'net481' OR '$(TargetFramework)' == 'net8.0-windows'"> |
| 23 | + <DefineConstants>$(DefineConstants);WINDOWS_BUILD</DefineConstants> |
| 24 | + </PropertyGroup> |
| 25 | + |
| 26 | + <ItemGroup> |
| 27 | + <PackageReference Include="Apache.Arrow" Version="14.0.2" /> |
| 28 | + <PackageReference Include="AWSSDK.S3" Version="4.0.4" /> |
| 29 | + <PackageReference Include="Google.Cloud.Storage.V1" Version="4.10.0" /> |
| 30 | + <PackageReference Include="Azure.Storage.Blobs" Version="12.13.0" /> |
| 31 | + <PackageReference Include="Azure.Storage.Common" Version="12.12.0" /> |
| 32 | + <PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.5" /> |
| 33 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
| 34 | + <PackageReference Include="BouncyCastle.Cryptography" Version="2.3.1" /> |
| 35 | + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.34.0" /> |
| 36 | + <PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> |
| 37 | + <PackageReference Include="Tomlyn.Signed" Version="0.17.0" /> |
| 38 | + </ItemGroup> |
| 39 | + |
| 40 | + <!-- Mono.Unix dependency ONLY for Unix/Linux platforms (netstandard2.0 and net8.0) --> |
| 41 | + <!-- NOT included for Windows targets: net481, net8.0-windows --> |
| 42 | + <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net8.0'"> |
| 43 | + <PackageReference Include="Mono.Unix" Version="7.1.0-final.1.21458.1" /> |
| 44 | + </ItemGroup> |
| 45 | + |
| 46 | + <!-- Exclude platform shims from all targets by default (SDK auto-includes all .cs files) --> |
| 47 | + <ItemGroup> |
| 48 | + <Compile Remove="PlatformShims\**\*.cs" /> |
| 49 | + </ItemGroup> |
| 50 | + |
| 51 | + <!-- Include Mono.Unix Windows shim for all Windows targets --> |
| 52 | + <ItemGroup Condition="'$(TargetFramework)' == 'net481' OR '$(TargetFramework)' == 'net8.0-windows'"> |
| 53 | + <Compile Include="PlatformShims\MonoUnixWindowsShim.cs" /> |
| 54 | + </ItemGroup> |
| 55 | + |
| 56 | + <ItemGroup Condition="'$(Configuration)' != 'Release'"> |
| 57 | + <InternalsVisibleTo Include="Snowflake.Data.Tests" /> |
| 58 | + <!--needed by Moq to be able to mock internal interfaces--> |
| 59 | + <InternalsVisibleTo Include="DynamicProxyGenAssembly2" /> |
| 60 | + </ItemGroup> |
| 61 | + |
| 62 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 63 | + <DebugType>full</DebugType> |
| 64 | + <DebugSymbols>True</DebugSymbols> |
| 65 | + </PropertyGroup> |
| 66 | + |
| 67 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 68 | + <DebugType>full</DebugType> |
| 69 | + <DebugSymbols>True</DebugSymbols> |
| 70 | + </PropertyGroup> |
| 71 | + |
| 72 | + <PropertyGroup> |
| 73 | + <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
| 74 | + <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> |
| 75 | + <AssemblyVersion>$(Version)</AssemblyVersion> |
| 76 | + </PropertyGroup> |
| 77 | + |
| 78 | + <PropertyGroup> |
| 79 | + <DefineConstants Condition="'$(DefineAdditionalConstants)' != ''">$(DefineConstants);$(DefineAdditionalConstants)</DefineConstants> |
| 80 | + </PropertyGroup> |
| 81 | + |
| 82 | + <ItemGroup> |
| 83 | + <Folder Include="Properties\" /> |
| 84 | + </ItemGroup> |
| 85 | + |
| 86 | + <ItemGroup Condition="'$(TargetFramework)' == 'net481'"> |
| 87 | + <Reference Include="System.Web" /> |
| 88 | + </ItemGroup> |
| 89 | +</Project> |
0 commit comments