|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <AssemblyTitle>NLog.Web.Stackify</AssemblyTitle> |
| 5 | + <VersionPrefix>2.0.0</VersionPrefix> |
| 6 | + <TargetFrameworks>netstandard2.0;net40;net45;net461</TargetFrameworks> |
| 7 | + <AssemblyName>NLog.Web.Stackify</AssemblyName> |
| 8 | + <PackageId>NLog.Web.Stackify</PackageId> |
| 9 | + <PackageTags>stackify;errors;logs</PackageTags> |
| 10 | + <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> |
| 11 | + <GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
| 12 | + <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
| 13 | + <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
| 14 | + <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| 15 | + <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
| 16 | + <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
| 17 | + <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
| 18 | + <Version>2.1.1</Version> |
| 19 | + <PackageLicenseUrl>https://github.com/stackify/stackify-api-dotnet/blob/master/LICENSE</PackageLicenseUrl> |
| 20 | + <PackageProjectUrl>https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl> |
| 21 | + <PackageIconUrl>https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl> |
| 22 | + <RepositoryUrl>https://github.com/stackify/stackify-api-dotnet</RepositoryUrl> |
| 23 | + <RepositoryType>git</RepositoryType> |
| 24 | + </PropertyGroup> |
| 25 | + |
| 26 | + <ItemGroup> |
| 27 | + <ProjectReference Include="..\StackifyLib\StackifyLib.csproj" /> |
| 28 | + <PackageReference Include="NLog" Version="4.5.11" /> |
| 29 | + <PackageReference Include="Newtonsoft.Json" Version="9.0.1" /> |
| 30 | + </ItemGroup> |
| 31 | + |
| 32 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'"> |
| 33 | + <DefineConstants>NETCORE</DefineConstants> |
| 34 | + </PropertyGroup> |
| 35 | + |
| 36 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'net40' OR '$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net461' "> |
| 37 | + <DefineConstants>NETFULL</DefineConstants> |
| 38 | + </PropertyGroup> |
| 39 | + |
| 40 | + <ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2.0' "> |
| 41 | + <Reference Include="System.Web" /> |
| 42 | + <Reference Include="System.Web.Abstractions" /> |
| 43 | + <Reference Include="System.Web.Routing" /> |
| 44 | + <PackageReference Include="NLog.Web" Version="4.8.0" /> |
| 45 | + </ItemGroup> |
| 46 | + |
| 47 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'"> |
| 48 | + <PackageReference Include="NLog.Web.AspNetCore" Version="4.8.0" /> |
| 49 | + </ItemGroup> |
| 50 | +</Project> |
0 commit comments