-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathXmlDownloader.csproj
More file actions
49 lines (43 loc) · 1.86 KB
/
XmlDownloader.csproj
File metadata and controls
49 lines (43 loc) · 1.86 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>5.0.16</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageVersion>$(Version)</PackageVersion>
<RootNamespace>Fiscalapi.XmlDownloader</RootNamespace>
<AssemblyName>Fiscalapi.XmlDownloader</AssemblyName>
<PackageId>Fiscalapi.XmlDownloader</PackageId>
<Authors>Fiscalapi</Authors>
<PackageIcon>fiscalapi.png</PackageIcon>
<Summary>Descarga masiva de xml o metadata de facturas CFDI</Summary>
<PackageTags>factura cfdi descarga-masiva-xml sat</PackageTags>
<Title>Descarga Masiva de XML del SAT</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/xml-downloader</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<Content Include="fiscalapi.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fiscalapi.Credentials" Version="4.0.340" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<Resource Include="fiscalapi.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Resource Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>