forked from anshulagrawal07/sfsnowsightextensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSnowflakePS.csproj
56 lines (50 loc) · 2.18 KB
/
SnowflakePS.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>SnowflakePS</AssemblyName>
<RootNamespace>Snowflake.Powershell</RootNamespace>
<Version>2022.8.12.0</Version>
<FileVersion>2022.8.12.0</FileVersion>
<AssemblyVersion>2022.8.12.0</AssemblyVersion>
<Authors>Daniel Odievich ([email protected]),Ryan Bacastow,Michael Ybarra</Authors>
<Company>Snowflake Computing</Company>
<Product>Snowflake Snowsight Extensions</Product>
<NeutralLanguage>en</NeutralLanguage>
<Description>Snowflake Snowsight Extensions provide access to Snowflake and Snowsight features from command line</Description>
<Copyright>Copyright © 2021-2022</Copyright>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl></PackageProjectUrl>
<PackageIconUrl>https://www.snowflake.com/favicon.ico</PackageIconUrl>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PowerShellStandard.Library" Version="7.0.0-preview.1">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NLog" Version="4.7.15" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
<PackageReference Include="CsvHelper" Version="19.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Readme.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SnowflakePS.psd1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="SnowflakePS.format.ps1xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Copy-SFObjects.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Update-SFDocuments.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>