Skip to content

Commit

Permalink
Aggiornato il Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nicogis committed Dec 6, 2018
1 parent 8b8b189 commit c1a99df
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 9 deletions.
19 changes: 13 additions & 6 deletions FatturazioneElettronica.IPA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,11 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\..\Temp\Scratch\JsonNet\Bin\Newtonsoft.Json.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json.Schema">
<HintPath>..\..\..\..\..\..\..\Temp\Scratch\JsonNet\Bin\Newtonsoft.Json.Schema.dll</HintPath>
<Reference Include="Newtonsoft.Json.Schema, Version=3.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>packages\Newtonsoft.Json.Schema.3.0.10\lib\net45\Newtonsoft.Json.Schema.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -79,6 +78,14 @@
<EmbeddedResource Include="JsonSchema\WS07_EMAIL_SCHEMA.json" />
<EmbeddedResource Include="JsonSchema\WS08_AOOC_SCHEMA.json" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include=".gitattributes" />
<None Include=".gitignore" />
<None Include="app.config" />
<None Include="LICENSE" />
<None Include="packages.config" />
<None Include="Readme.md" />
<None Include="_config.yml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
17 changes: 17 additions & 0 deletions FatturazioneElettronica.IPA.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>1.3.0</version>
<title>Fatturazione elettronica - IPA</title>
<authors>nicogis</authors>
<owners>Studio A&amp;T s.r.l.</owners>
<licenseUrl>https://github.com/nicogis/FatturazioneElettronica-IPA/blob/master/LICENSE</licenseUrl>
<projectUrl>https://nicogis.github.io/FatturazioneElettronica-IPA</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>Client per web services IPA (Indice delle Pubblice Amministrazioni)</description>
<releaseNotes>Versione iniziale</releaseNotes>
<copyright>Copyright 2018</copyright>
<tags>IPA FatturazioneElettronica nicogis</tags>
</metadata>
</package>
14 changes: 11 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#### Indice delle Pubblice Amministrazioni

### Descrizione
Libreria sviluppata in c# per interrogare i web services dell'IPA. Per maggiore dettagli visitare il sito https://www.indicepa.gov.it/documentale/n-consulta-dati.php
Libreria sviluppata in c# per interrogare i web services dell'IPA. Per maggiore dettagli visitare il [sito iPA](https://www.indicepa.gov.it/documentale/n-consulta-dati.php)

Per utilizzare i Web Services è necessario chiedere una specifica autorizzazione.
Occorre selezionare la voce del menu Richiedi Authorization ID e compilare la form dedicata al seguenet link: https://www.indicepa.gov.it/registr-user-ws/ws-registrazione-start.php
Occorre selezionare la voce del menu Richiedi Authorization ID e compilare la form dedicata al seguente [link](https://www.indicepa.gov.it/registr-user-ws/ws-registrazione-start.php)

### Utilizzo

Expand Down Expand Up @@ -51,10 +51,18 @@ Occorre selezionare la voce del menu Richiedi Authorization ID e compilare la fo
Ws08 hh = h.Request();



```


### Installazione
```
PM> Install-Package StudioAT.FatturazioneElettronica.IPA -Version 1.3.0
```
dalla Console di Gestione Pacchetti di Visual Studio

### Requisiti
Microsoft .NET 4.6.2
Microsoft .NET 4.6.2 o superiore

### Licenza
Il progetto è rilasciato sotto licenza GNU Library General Public License (LGPL).
11 changes: 11 additions & 0 deletions app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
5 changes: 5 additions & 0 deletions packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net462" />
<package id="Newtonsoft.Json.Schema" version="3.0.10" targetFramework="net462" />
</packages>

0 comments on commit c1a99df

Please sign in to comment.