-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
30 lines (25 loc) · 1.27 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Authors>Brian Lagunas</Authors>
<Description>The Reveal.Sdk.Dom is a Document Object Model (DOM) for the Reveal .rdash file format. It allows developers using the Reveal SDK to load, edit, and create dashboards using .NET.</Description>
<Copyright>Copyright ©2022 Infragistics Inc.</Copyright>
<PackageProjectUrl>https://www.revealbi.io/</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/RevealBi/Reveal.Sdk.Dom</RepositoryUrl>
<PackageIcon>reveal-logo-128x128.png</PackageIcon>
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts</PackageOutputPath>
</PropertyGroup>
<ItemGroup Condition=" $(IsPackable) ">
<None Include="$(MSBuildThisFileDirectory)images/reveal-logo-128x128.png" Visible="False" Pack="True" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.5.108">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>