-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiscalapi-net.csproj
62 lines (51 loc) · 2.26 KB
/
fiscalapi-net.csproj
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net461;net48;netcoreapp3.1;net5.0;net6.0;net8.0</TargetFrameworks>
<Version>4.0.104</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageVersion>$(Version)</PackageVersion>
<RootNamespace>Fiscalapi</RootNamespace>
<AssemblyName>Fiscalapi</AssemblyName>
<PackageId>Fiscalapi</PackageId>
<Authors>Fiscalapi</Authors>
<PackageIcon>fiscalapi.png</PackageIcon>
<Summary>Genera facturas CFDI válidas ante el SAT consumiento el api de https://www.fiscalapi.com</Summary>
<PackageTags>factura cfdi facturacion mexico sat</PackageTags>
<Title>Fiscalapi</Title>
<Owners>Fiscalapi</Owners>
<ApplicationIcon>fiscalapi.ico</ApplicationIcon>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>FISCAL API S DE R.L DE C.V</Company>
<Copyright>FISCAL API S DE R.L DE C.V © 2019</Copyright>
<PackageProjectUrl>https://www.fiscalapi.com</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/FiscalAPI/fiscalapi-net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net461' Or '$(TargetFramework)'=='net48'">
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Compile Remove="packages\**" />
<EmbeddedResource Remove="packages\**" />
<None Remove="packages\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Content Include="fiscalapi.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="fiscalapi.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Resource Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>