|
4 | 4 | <LangVersion>latest</LangVersion> |
5 | 5 | <Nullable>enable</Nullable> |
6 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
8 | | - <!-- Enable XML documentation output for NuGet consumers --> |
9 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
10 | | - <!-- Enforce completeness: do NOT suppress CS1591 (removed) --> |
11 | | - <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Xunit.Microsoft.DependencyInjection.xml</DocumentationFile> |
12 | | - <!-- Repository / SourceLink metadata --> |
13 | | - <RepositoryUrl>https://github.com/Umplify/xunit-dependency-injection</RepositoryUrl> |
14 | | - <RepositoryType>git</RepositoryType> |
15 | | - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
16 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
17 | | - <IncludeSymbols>true</IncludeSymbols> |
18 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
19 | | - <EnableSourceLink>true</EnableSourceLink> |
20 | | - <!-- Optional: mark builds as CI to embed commit information when built on CI --> |
21 | | - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 7 | + |
| 8 | + <!-- NuGet Package Properties --> |
| 9 | + <PackageId>Xunit.Microsoft.DependencyInjection</PackageId> |
| 10 | + <Title>Microsoft Dependency Injection utility for Xunit</Title> |
| 11 | + <Authors>Arash Sabet</Authors> |
| 12 | + <Company>Umplify Technologies Inc.</Company> |
| 13 | + <Product>Xunit.Microsoft.DependencyInjection</Product> |
| 14 | + <Description>This package contains the necessary classes and features to leverage Xunit's fixture class for Microsoft dependency injection framework.</Description> |
| 15 | + <Copyright>2025 - All rights reserved, Umplify Technologies Inc.</Copyright> |
| 16 | + <PackageTags>xunit;dependency-injection;microsoft-dependency-injection;xunit-dependency-injection</PackageTags> |
| 17 | + <PackageProjectUrl>https://umplify.github.io/xunit-dependency-injection/</PackageProjectUrl> |
| 18 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 19 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 20 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 21 | + |
| 22 | + <!-- Enable XML documentation output for NuGet consumers --> |
| 23 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 24 | + <!-- Enforce completeness: do NOT suppress CS1591 (removed) --> |
| 25 | + <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Xunit.Microsoft.DependencyInjection.xml</DocumentationFile> |
| 26 | + |
| 27 | + <!-- Repository / SourceLink metadata --> |
| 28 | + <RepositoryUrl>https://github.com/Umplify/xunit-dependency-injection</RepositoryUrl> |
| 29 | + <RepositoryType>git</RepositoryType> |
| 30 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 31 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 32 | + <IncludeSymbols>true</IncludeSymbols> |
| 33 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 34 | + <EnableSourceLink>true</EnableSourceLink> |
| 35 | + |
| 36 | + <!-- Optional: mark builds as CI to embed commit information when built on CI --> |
| 37 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
22 | 38 | </PropertyGroup> |
23 | 39 | <ItemGroup> |
24 | 40 | <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.8" /> |
|
0 commit comments