Skip to content

Commit

Permalink
add README to packed files for nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
GGAlanSmithee committed Sep 23, 2024
1 parent bdbd302 commit bc26016
Showing 1 changed file with 55 additions and 47 deletions.
102 changes: 55 additions & 47 deletions Fortnox.NET/Fortnox.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,54 +1,62 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>3.3.0</PackageVersion>
<Version>3.3.0</Version>
<Title>Fortnox API SDK</Title>
<Authors>Zenta AB</Authors>
<Company>Zenta AB</Company>
<Description>.NET bindings for the Fortnox API.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/zenta-ab/fortnox.NET</RepositoryUrl>
<PackageIcon>NuGetLogo.png</PackageIcon>
<PackageTags>Fortnox, SDK, C#, .NET</PackageTags>
<PackageReleaseNotes>Release notes are at https://github.com/zenta-ab/fortnox.NET/releases</PackageReleaseNotes>
<Copyright>Copyright (c) 2022 Zenta AB</Copyright>
<RepositoryType>GIT</RepositoryType>
<LangVersion>7.1</LangVersion>
<TargetFrameworks>netstandard2.0;net47;net48;net5.0;net6.0</TargetFrameworks>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
</PropertyGroup>

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>3.3.0</PackageVersion>
<Version>3.3.0</Version>
<Title>Fortnox API SDK</Title>
<Authors>Zenta AB</Authors>
<Company>Zenta AB</Company>
<Description>.NET bindings for the Fortnox API.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/zenta-ab/fortnox.NET</RepositoryUrl>
<PackageIcon>NuGetLogo.png</PackageIcon>
<PackageTags>Fortnox, SDK, C#, .NET</PackageTags>
<PackageReleaseNotes>Release notes are at https://github.com/zenta-ab/fortnox.NET/releases</PackageReleaseNotes>
<Copyright>Copyright (c) 2022 Zenta AB</Copyright>
<RepositoryType>GIT</RepositoryType>
<LangVersion>7.1</LangVersion>
<TargetFrameworks>netstandard2.0;net47;net48;net5.0;net6.0</TargetFrameworks>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn> <!-- // NOTE(Oskar): Disables the warning "Missing XML comment for publicly visible type or member". -->
</PropertyGroup>

<ItemGroup>
<None Include="..\.github\NuGetLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net47'">
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Web" />
</ItemGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn> <!-- // NOTE(Oskar): Disables the warning "Missing XML comment
for publicly visible type or member". -->
</PropertyGroup>

<ItemGroup>
<None Include="..\.github\NuGetLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net47'">
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Web" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net48'">
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Web" />
<Reference Include="System.Web" />
</ItemGroup>
</Project>

</Project>

0 comments on commit bc26016

Please sign in to comment.