-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathSnowflakePS.csproj
49 lines (43 loc) · 1.86 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>SnowflakePS</AssemblyName>
<RootNamespace>Snowflake.Powershell</RootNamespace>
<Version>2021.8.4.0</Version>
<FileVersion>2021.8.4.0</FileVersion>
<AssemblyVersion>2021.8.4.0</AssemblyVersion>
<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</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="12.0.3" />
<PackageReference Include="NLog" Version="4.7.10" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.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>
</ItemGroup>
</Project>