forked from FatturaElettronica/FatturaElettronica.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FatturaElettronica.csproj
41 lines (36 loc) · 1.55 KB
/
FatturaElettronica.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.2.0</Version>
<PackageId>FatturaElettronica</PackageId>
<Authors>Nicola Iarocci</Authors>
<Company>CIR 2000</Company>
<Product>FatturaElettronica.NET</Product>
<Description>Fattura elettronica per le aziende e la pubblica amministrazione italiana</Description>
<Copyright>Copyright © CIR2000 2017-2021</Copyright>
<PackageProjectUrl>https://fatturaelettronicaopensource.org</PackageProjectUrl>
<RepositoryUrl>https://github.com/FatturaElettronica/FatturaElettronica.NET</RepositoryUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="\"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\**"/>
<Compile Remove="Test\**"/>
<EmbeddedResource Remove="Tests\**"/>
<EmbeddedResource Remove="Test\**"/>
<None Remove="Tests\**"/>
<None Remove="Test\**"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="10.3.4"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1"/>
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.0"/>
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0"/>
</ItemGroup>
</Project>