-
Notifications
You must be signed in to change notification settings - Fork 705
Expand file tree
/
Copy pathnuget.props
More file actions
46 lines (37 loc) · 1.71 KB
/
Copy pathnuget.props
File metadata and controls
46 lines (37 loc) · 1.71 KB
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
<Project>
<PropertyGroup>
<Version>$(LiveChartsVersion)</Version>
<Authors>$(LiveChartsAuthors)</Authors>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/beto-rodriguez/LiveCharts2</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Deterministic build -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!-- Symbol package format -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Custom output folder -->
<PackageOutputPath>$(SolutionDir)nukpg</PackageOutputPath>
<!-- Track source generated files -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IsPackable>true</IsPackable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Description>Simple, stunning, interactive and powerful data visualization for .Net.</Description>
</PropertyGroup>
<PropertyGroup>
<!-- Other packing related properties... -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<DocumentationFile>bin/$(Configuration)/$(TargetFramework)/$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="$(PathToPackAssets)icon.png" Pack="true" PackagePath="\" />
<None Include="$(PathToPackAssets)README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>