forked from FatturaElettronica/FatturaElettronica.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFatturaElettronica.csproj
38 lines (33 loc) · 1.47 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.1;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.0.6</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-2019</Copyright>
<PackageProjectUrl>https://fatturaelettronicaopensource.org</PackageProjectUrl>
<RepositoryUrl>https://github.com/FatturaElettronica/FatturaElettronica.NET</RepositoryUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt" 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="FatturaElettronica.Core" Version="2.0" />
<PackageReference Include="FluentValidation" Version="8.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" Condition="$(TargetFramework) == 'netstandard1.1'" />
</ItemGroup>
</Project>