|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFrameworks>netcoreapp2.1</TargetFrameworks> |
| 3 | + <TargetFrameworks>netcoreapp2.1;netstandard1.4;</TargetFrameworks> |
4 | 4 | <AssemblyName>WixSharp</AssemblyName> |
5 | 5 | <RootNamespace>WixSharp</RootNamespace> |
6 | 6 | <Version>0.0.1</Version> |
7 | 7 | </PropertyGroup> |
| 8 | + <PropertyGroup> |
| 9 | + <Description>WixSharp is a C# and .NET library that helps developers easily authenticate with and manage Wix stores.</Description> |
| 10 | + <Authors>Ajay Kumar</Authors> |
| 11 | + <Copyright>Prime Penguin</Copyright> |
| 12 | + <PackageLicenseUrl>https://raw.githubusercontent.com/PrimePenguin/PrimePenguin.WixSharp/master/LICENSE</PackageLicenseUrl> |
| 13 | + <PackageProjectUrl>https://github.com/PrimePenguin/PrimePenguin.WixSharp</PackageProjectUrl> |
| 14 | + <RepositoryUrl>https://github.com/PrimePenguin/PrimePenguin.WixSharp</RepositoryUrl> |
| 15 | + <PackageTags>wix,ecommerce</PackageTags> |
| 16 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 17 | + <PackageIconUrl>https://raw.githubusercontent.com/PrimePenguin/PrimePenguin.WixSharp/master/PrimePenguin.png</PackageIconUrl> |
| 18 | + </PropertyGroup> |
8 | 19 | <PropertyGroup> |
9 | 20 | <Description>WixSharp is a C# and .NET library that helps developers easily authenticate with and manage Wix stores.</Description> |
10 | 21 | <Authors>Prime Penguin</Authors> |
|
14 | 25 | <ItemGroup> |
15 | 26 | <PackageReference Include="microsoft.extensions.primitives" Version="1.1.0" /> |
16 | 27 | <PackageReference Include="newtonsoft.json" Version="10.0.1" /> |
| 28 | + <PackageReference Include="System.ComponentModel.Annotations" Version="4.5.0" /> |
17 | 29 | </ItemGroup> |
| 30 | + <PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^net\d'))"> |
| 31 | + <DefineConstants>NETFRAMEWORK</DefineConstants> |
| 32 | + </PropertyGroup> |
| 33 | + <PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netstandard\d'))"> |
| 34 | + <DefineConstants>NETSTANDARD</DefineConstants> |
| 35 | + </PropertyGroup> |
| 36 | + <PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(TargetFramework)', '^netcoreapp\d'))"> |
| 37 | + <DefineConstants>NETCORE</DefineConstants> |
| 38 | + </PropertyGroup> |
18 | 39 | </Project> |
0 commit comments