|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <TargetFrameworks>netstandard2.0;net40;net45;net461;</TargetFrameworks> |
5 | 5 | <LangVersion>7.3</LangVersion> |
6 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
7 | 6 | <AssemblyName>SharpMt940Lib.Core</AssemblyName> |
8 | 7 | <PackageId>SharpMt940Lib.Core</PackageId> |
9 | 8 | <Title>SharpMt940Lib.Core</Title> |
10 | 9 | <Product>SharpMt940Lib.Core</Product> |
11 | | - <Version>1.0.0</Version> |
12 | | - <PackageVersion>1.0.0</PackageVersion> |
13 | | - <AssemblyVersion>1.0.0</AssemblyVersion> |
| 10 | + <Version>1.0.1</Version> |
| 11 | + <PackageVersion>1.0.1</PackageVersion> |
| 12 | + <AssemblyVersion>1.0.1</AssemblyVersion> |
14 | 13 | <Authors>Mohammad Javad Ebrahimi</Authors> |
15 | 14 | <Company>Mohammad Javad Ebrahimi</Company> |
16 | 15 | <Copyright>Copyright © Mohammad Javad Ebrahimi 2019</Copyright> |
17 | 16 | <Description>SharpMt940Lib.Core is an unofficial port of the 'Raptorious.Finance.Swift.Mt940' to .NET Core. SharpMT940Lib implements the MT940 format in C# and is based on specifications of multiple banks. You can use it as a base for financial software or for conversions to other formats like CSV or OFX.</Description> |
18 | 17 | <PackageTags>.NETCore MT940 SharpMT940Lib Bank Swift Finance Transaction Parser</PackageTags> |
19 | | - <PackageIconUrl>https://raw.githubusercontent.com/mjebrahimi/SharpMt940Lib.Core/master/Documentation/MT940.jpg</PackageIconUrl> |
20 | | - <PackageLicenseUrl>https://github.com/mjebrahimi/SharpMt940Lib.Core/blob/master/LICENSE</PackageLicenseUrl> |
21 | | - <PackageProjectUrl>https://github.com/mjebrahimi/SharpMt940Lib.Core</PackageProjectUrl> |
| 18 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
22 | 19 | <RepositoryUrl>https://github.com/mjebrahimi/SharpMt940Lib.Core</RepositoryUrl> |
23 | | - <PackageReleaseNotes>https://github.com/mjebrahimi/SharpMt940Lib.Core/releases</PackageReleaseNotes> |
24 | 20 | <RepositoryType>git</RepositoryType> |
25 | 21 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
26 | 22 | <EmbedUntrackedSources>true</EmbedUntrackedSources> |
27 | | - <!--<GeneratePackageOnBuild Condition="'$(Configuration)'=='Release'">true</GeneratePackageOnBuild>--> |
28 | | - <!--<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>--> |
29 | | - <!--<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>--> |
30 | | - <!--<AssemblyOriginatorKeyFile>..\..\AutoMapper.snk</AssemblyOriginatorKeyFile>--> |
31 | | - <!--<SignAssembly>true</SignAssembly>--> |
32 | | - <!--<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>--> |
| 23 | + <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
| 24 | + <GeneratePackageOnBuild Condition="'$(Configuration)'=='Release'">true</GeneratePackageOnBuild> |
| 25 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 26 | + <PackageIcon>MT940.jpg</PackageIcon> |
33 | 27 | </PropertyGroup> |
34 | 28 |
|
35 | 29 | <ItemGroup> |
36 | | - <!--<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-62925-02" PrivateAssets="All" />--> |
37 | | - <!--<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02"> |
38 | | - <PrivateAssets>all</PrivateAssets> |
39 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
40 | | - </PackageReference>--> |
| 30 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> |
41 | 31 | </ItemGroup> |
42 | | - |
| 32 | + |
| 33 | + <ItemGroup> |
| 34 | + <None Include="MT940.jpg" Pack="true" PackagePath=""/> |
| 35 | + </ItemGroup> |
| 36 | + |
43 | 37 | </Project> |
0 commit comments