-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
FatturaElettronica.csproj
46 lines (40 loc) · 1.76 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
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<VersionPrefix>3.5.1</VersionPrefix>
<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-2022</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="\"/>
<None Include=".github\workflows\test.yml" Pack="false" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\**"/>
<Compile Remove="Test\**"/>
<EmbeddedResource Remove="Tests\**"/>
<EmbeddedResource Remove="Test\**"/>
<None Remove="Tests\**"/>
<None Remove="Test\**"/>
<EmbeddedResource Update="Resources\**\*.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>%(Filename).Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.5.2"/>
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="7.0.3"/>
</ItemGroup>
</Project>