Skip to content

Commit

Permalink
Update PIXBacen.csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
guibranco authored Mar 3, 2023
1 parent b320165 commit 73923af
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions Src/PIXBacen/PIXBacen.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@

<PropertyGroup>
<ProjectGuid>{75E35E03-D43A-4369-9284-28BB1FEEFDBF}</ProjectGuid>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>latest</LangVersion>
<Company>Guilherme Branco Stracini</Company>
<Authors>Guilherme Branco Stracini</Authors>
<Copyright>� 2020 Guilherme Branco Stracini. All rights reserved.</Copyright>
<Copyright>© 2023 Guilherme Branco Stracini. All rights reserved.</Copyright>
<Description>The PIX (BACEN) contracts for .NET API clients wrappers</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/guibranco/PIX-BACEN-SDK-DotNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/guibranco/PIX-BACEN-SDK-DotNet</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
<PackageTags>pix bacen </PackageTags>
<PackageIconUrl>https://raw.githubusercontent.com/guibranco/PIX-BACEN-SDK-DotNet/master/logoPackage.png</PackageIconUrl>
<PackageIcon>logoPackage.png</PackageIcon>
<PackageIcon>packageLogo.png</PackageIcon>
<PackageReadmeFile>README.nuget.md</PackageReadmeFile>
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand All @@ -24,8 +26,18 @@
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
</ItemGroup>

<ItemGroup>
<None Include="../../LICENSE" Pack="true" PackagePath="\" />
<None Include="../../logoPackage.png" Pack="true" PackagePath="\" />
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\packageLogo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.nuget.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>

0 comments on commit 73923af

Please sign in to comment.