Skip to content

Commit 58425fa

Browse files
committed
fixed build warning
1 parent c7c34b8 commit 58425fa

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
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: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
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+
<PackageReadmeFile>README.md</PackageReadmeFile>
2122
<PackageTags>Tibber GraphQL .NET SDK</PackageTags>
2223
<PackageReleaseNotes>added PowerReactive and PowerProductionReactive properties</PackageReleaseNotes>
2324
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
@@ -27,10 +28,14 @@
2728
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2829
</PropertyGroup>
2930

30-
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
31+
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
3132
<DefineConstants>TRACE</DefineConstants>
3233
</PropertyGroup>
3334

35+
<ItemGroup>
36+
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
37+
</ItemGroup>
38+
3439
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFrameworks)', '^net\d'))">
3540
<DefineConstants>NETFRAMEWORK</DefineConstants>
3641
</PropertyGroup>

0 commit comments

Comments
 (0)