Skip to content

Commit b27d849

Browse files
Using a empty csproj to generate nuget dependencies package. Removed dependency of nuget cli
This package could be generated using the following command dotnet pack Snowflake.Data.AWS.Dependencies.csproj
1 parent 321ddea commit b27d849

File tree

3 files changed

+31
-20
lines changed

3 files changed

+31
-20
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<Title>Snowflake.Data.AWS.Dependencies</Title>
6+
<PackageId>Snowflake.Data.AWS.Dependencies</PackageId>
7+
<Description>Snowflake Connector AWS dependencies for .NET</Description>
8+
<PackageLicenseUrl>https://github.com/snowflakedb/snowflake-connector-net/blob/master/LICENSE</PackageLicenseUrl>
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+
<Company>Snowflake Computing, Inc</Company>
13+
<Product>Snowflake Connector for .NET</Product>
14+
<Authors>Snowflake</Authors>
15+
<Copyright>Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.</Copyright>
16+
<Version>3.1.0</Version>
17+
<DebugType>Full</DebugType>
18+
<LangVersion>7.3</LangVersion>
19+
</PropertyGroup>
20+
21+
<ItemGroup>
22+
<PackageReference Include="AWSSDK.S3" Version="3.7.0.4" />
23+
</ItemGroup>
24+
25+
</Project>

Snowflake.Data/providers/Snowflake.Data.AWS.Dependencies.nuspec

Lines changed: 0 additions & 20 deletions
This file was deleted.

snowflake-connector-net.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Snowflake.Data", "Snowflake
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Snowflake.Data.Tests", "Snowflake.Data.Tests\Snowflake.Data.Tests.csproj", "{97E793E8-62A4-4FF2-9406-F5277269EEC2}"
99
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Snowflake.Data.AWS.Dependencies", "Snowflake.Data.AWS.Dependencies\Snowflake.Data.AWS.Dependencies.csproj", "{0D406F90-2763-400D-A442-0D04ADEAFA81}"
11+
EndProject
1012
Global
1113
GlobalSection(Performance) = preSolution
1214
HasPerformanceSessions = true
@@ -24,6 +26,10 @@ Global
2426
{97E793E8-62A4-4FF2-9406-F5277269EEC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
2527
{97E793E8-62A4-4FF2-9406-F5277269EEC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
2628
{97E793E8-62A4-4FF2-9406-F5277269EEC2}.Release|Any CPU.Build.0 = Release|Any CPU
29+
{0D406F90-2763-400D-A442-0D04ADEAFA81}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30+
{0D406F90-2763-400D-A442-0D04ADEAFA81}.Debug|Any CPU.Build.0 = Debug|Any CPU
31+
{0D406F90-2763-400D-A442-0D04ADEAFA81}.Release|Any CPU.ActiveCfg = Release|Any CPU
32+
{0D406F90-2763-400D-A442-0D04ADEAFA81}.Release|Any CPU.Build.0 = Release|Any CPU
2733
EndGlobalSection
2834
GlobalSection(SolutionProperties) = preSolution
2935
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)