-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPix.NET.csproj
More file actions
33 lines (28 loc) · 1.11 KB
/
Pix.NET.csproj
File metadata and controls
33 lines (28 loc) · 1.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<Authors>Eduardo Carvalho Costa</Authors>
<Company>Quality Systems</Company>
<Product>$(AssemblyName) Lib</Product>
<Description>Biblioteca para pix.</Description>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Qualitysys.Pix.NET</PackageId>
<Copyright>Todos os direitos reservados.</Copyright>
<PackageProjectUrl>https://qualitysys.com.br</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/duduccosta/Pix.NET</RepositoryUrl>
<PackageTags>pix</PackageTags>
<NeutralLanguage>pt-BR</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.3</Version>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.15" />
</ItemGroup>
</Project>