|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 | 4 | <TargetFramework>netcoreapp3.1</TargetFramework>
|
5 |
| - <IsPackable>false</IsPackable> |
| 5 | + <IsPackable>true</IsPackable> |
6 | 6 | <DefaultItemExcludes>$(DefaultItemExcludes);.git*</DefaultItemExcludes>
|
7 | 7 | </PropertyGroup>
|
8 | 8 |
|
| 9 | + <PropertyGroup> |
| 10 | + <Title>Lombiq Testing Toolbox for Orchard Core</Title> |
| 11 | + <Authors>Lombiq Technologies</Authors> |
| 12 | + <Copyright>Copyright © 2020, Lombiq Technologies Ltd.</Copyright> |
| 13 | + <Description>Lombiq Testing Toolbox for Orchard Core: General and unit testing extensions and helpers, mostly for ASP.NET Core and Orchard Core. See the project website for detailed documentation.</Description> |
| 14 | + <PackageTags>OrchardCore;Lombiq;AspNetCore;Moq;xUnit;UnitTesting;Testing</PackageTags> |
| 15 | + <PackageIcon>NuGetIcon.png</PackageIcon> |
| 16 | + <RepositoryUrl>https://github.com/Lombiq/Testing-Toolbox</RepositoryUrl> |
| 17 | + <PackageProjectUrl>https://github.com/Lombiq/Testing-Toolbox</PackageProjectUrl> |
| 18 | + <PackageLicenseFile>Licence.md</PackageLicenseFile> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <ItemGroup> |
| 22 | + <None Include="Licence.md" Pack="true" PackagePath="" /> |
| 23 | + <None Include="Readme.md" /> |
| 24 | + <None Include="NuGetIcon.png" Pack="true" PackagePath="" /> |
| 25 | + </ItemGroup> |
| 26 | + |
9 | 27 | <ItemGroup>
|
10 | 28 | <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.15" />
|
11 | 29 | <PackageReference Include="FluentAssertions" Version="5.10.3" />
|
12 |
| - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" /> |
13 | 30 | <PackageReference Include="Moq" Version="4.16.1" />
|
14 | 31 | <PackageReference Include="Shouldly" Version="4.0.3" />
|
15 | 32 | <PackageReference Include="xunit" Version="2.4.1" />
|
|
19 | 36 | </PackageReference>
|
20 | 37 | <PackageReference Include="Moq.AutoMock" Version="2.3.0" />
|
21 | 38 | </ItemGroup>
|
| 39 | + |
| 40 | + <!-- These are necessary for symbols NuGet packaging, otherwise Shouldly would prevent PDBs to be packaged, see: |
| 41 | + https://github.com/NuGet/Home/discussions/11541. --> |
| 42 | + <PropertyGroup Condition="'$(NuGetBuild)' == 'true'"> |
| 43 | + <Optimize>true</Optimize> |
| 44 | + <DebugType>portable</DebugType> |
| 45 | + <Deterministic>true</Deterministic> |
| 46 | + <DeterministicSourcePaths>true</DeterministicSourcePaths> |
| 47 | + </PropertyGroup> |
22 | 48 |
|
23 | 49 | </Project>
|
0 commit comments