Skip to content

Commit 3686b23

Browse files
authored
Include symbols and readme into nuget package
1 parent c7c34b8 commit 3686b23

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Installation
88
-------------
99
Using nuget package manager:
1010
```
11-
Install-Package Tibber.Sdk -Version 0.5.1-beta
11+
Install-Package Tibber.Sdk -Version 0.5.2-beta
1212
```
1313

1414
Authorization

src/Tibber.Sdk/Tibber.Sdk.csproj

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,40 @@
77
<NoWarn>$(NoWarn);1591</NoWarn>
88
<Authors>Tibber</Authors>
99
<Company>Tibber</Company>
10-
<Version>0.5.1-beta</Version>
10+
<Version>0.5.2-beta</Version>
1111
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
1212
<LangVersion>latest</LangVersion>
13-
<Copyright>Copyright 2017-2022</Copyright>
13+
<Copyright>Copyright 2017-2025</Copyright>
1414
<Title>Tibber SDK.NET</Title>
1515
<PackageLicenseFile>License.md</PackageLicenseFile>
1616
<PackageLicense>https://raw.githubusercontent.com/tibber/Tibber.SDK.NET/master/License.md</PackageLicense>
1717
<PackageProjectUrl>https://developer.tibber.com/</PackageProjectUrl>
1818
<PackageIcon>TibberLogo.png</PackageIcon>
1919
<RepositoryUrl>https://github.com/tibber/Tibber.SDK.NET</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
21+
<IncludeSymbols>true</IncludeSymbols>
22+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
23+
<PackageReadmeFile>README.md</PackageReadmeFile>
2124
<PackageTags>Tibber GraphQL .NET SDK</PackageTags>
22-
<PackageReleaseNotes>added PowerReactive and PowerProductionReactive properties</PackageReleaseNotes>
25+
<PackageReleaseNotes>
26+
<![CDATA[
27+
]]>
28+
</PackageReleaseNotes>
2329
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2430
</PropertyGroup>
2531

2632
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
2733
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2834
</PropertyGroup>
2935

30-
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
36+
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
3137
<DefineConstants>TRACE</DefineConstants>
3238
</PropertyGroup>
3339

40+
<ItemGroup>
41+
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
42+
</ItemGroup>
43+
3444
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFrameworks)', '^net\d'))">
3545
<DefineConstants>NETFRAMEWORK</DefineConstants>
3646
</PropertyGroup>

0 commit comments

Comments
 (0)