|
5 | 5 | <AssemblyName>AutofacContrib.NSubstitute</AssemblyName>
|
6 | 6 | <RootNamespace>AutofacContrib.NSubstitute</RootNamespace>
|
7 | 7 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
8 |
| - <Version>4.9.4</Version> |
9 |
| - <AssemblyVersion>4.9.4.0</AssemblyVersion> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + <PropertyGroup> |
| 11 | + <Authors>Miguel Madero, Robert Moore and Matt Davies</Authors> |
| 12 | + <Description>Auto-mocking Autofac container that uses NSubstitute.</Description> |
| 13 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 14 | + <PackageIcon>logo.png</PackageIcon> |
| 15 | + <PackageTags>substitute mocking mocks nsubstitute autofac container dependency-injection di testing unit-testing TDD AAA auto-mock auto-substitute</PackageTags> |
| 16 | + </PropertyGroup> |
| 17 | + |
| 18 | + <PropertyGroup> |
| 19 | + <InformationalVersion>$(GitVersion_InformationalVersion)</InformationalVersion> |
| 20 | + <FileVersion>$(GitVersion_MajorMinorPatch)</FileVersion> |
| 21 | + <AssemblyVersion>$(GitVersion_AssemblySemVer)</AssemblyVersion> |
| 22 | + <Version>$(GitVersion_NuGetVersionV2)</Version> |
| 23 | + </PropertyGroup> |
| 24 | + |
| 25 | + <PropertyGroup> |
| 26 | + <IncludeSymbols>true</IncludeSymbols> |
| 27 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 28 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 29 | + <IncludeSymbols>true</IncludeSymbols> |
| 30 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 31 | + </PropertyGroup> |
| 32 | + |
| 33 | + <PropertyGroup Condition=" '$(CI)' == 'true' "> |
| 34 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
10 | 35 | </PropertyGroup>
|
11 | 36 |
|
12 | 37 | <ItemGroup>
|
| 38 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> |
13 | 39 | <PackageReference Include="Autofac" Version="5.2.0" />
|
14 | 40 | <PackageReference Include="NSubstitute" Version="4.2.2" />
|
15 | 41 | </ItemGroup>
|
16 | 42 |
|
| 43 | + <ItemGroup> |
| 44 | + <None Include="../LICENSE" Pack="true" PackagePath=""/> |
| 45 | + <None Include="../logo.png" Pack="true" PackagePath=""/> |
| 46 | + </ItemGroup> |
| 47 | + |
17 | 48 | </Project>
|
0 commit comments