forked from Snowflake-Labs/sfgrantreport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Snowflake.GrantReport.csproj
48 lines (43 loc) · 1.81 KB
/
Snowflake.GrantReport.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<SignAssembly>false</SignAssembly>
<AssemblyName>SFGrantReport</AssemblyName>
<RootNamespace>Snowflake.GrantReport</RootNamespace>
<Version>2022.4.22.0</Version>
<FileVersion>2022.4.22.0</FileVersion>
<AssemblyVersion>2022.4.22.0</AssemblyVersion>
<Authors>Daniel Odievich ([email protected])</Authors>
<Company>Snowflake Computing</Company>
<Product>Snowflake Grant Report</Product>
<NeutralLanguage>en</NeutralLanguage>
<Description>Snowflake Grant Report provides insights into grants and roles hierarchy in your Snowflake Data Cloud account</Description>
<Copyright>Copyright © 2020-2021</Copyright>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl></PackageProjectUrl>
<PackageIconUrl>https://www.snowflake.com/favicon.ico</PackageIconUrl>
<RepositoryUrl></RepositoryUrl>
<RepositoryType></RepositoryType>
<PackageTags></PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<ApplicationIcon>Snowflake.ico</ApplicationIcon>
<DebugType>embedded</DebugType>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="CsvHelper" Version="19.0.0" />
<PackageReference Include="EPPlus" Version="4.5.3.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NLog" Version="4.7.10" />
</ItemGroup>
<ItemGroup>
<None Update="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Readme.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>