|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | 2 | <PropertyGroup> |
4 | | - <Authors>Nickolas Gupton and MediatR contributors up to commit 3f5c3eca8db07e3791f638243bbb879ef847c09e</Authors> |
5 | | - <Description>Simple, unambitious mediator implementation in .NET</Description> |
6 | | - <TargetFrameworks>net9.0</TargetFrameworks> |
| 3 | + <!-- Build info --> |
| 4 | + <TargetFramework>net9.0</TargetFramework> |
| 5 | + <LangVersion>latest</LangVersion> |
| 6 | + <OutputType>Library</OutputType> |
7 | 7 | <Nullable>enable</Nullable> |
| 8 | + <ImplicitUsings>enable</ImplicitUsings> |
| 9 | + <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> |
| 10 | + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
| 11 | + <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> |
| 12 | + <Deterministic>true</Deterministic> |
| 13 | + |
| 14 | + <!-- Assembly/NuGet info --> |
| 15 | + <Version>0.0.1</Version> |
| 16 | + <Authors>Nickolas Gupton and MediatR contributors up to commit 3f5c3eca8db07e3791f638243bbb879ef847c09e</Authors> |
| 17 | + <RepositoryUrl>https://github.com/CorruptComputer/NG.Mediator</RepositoryUrl> |
| 18 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 19 | + <SatelliteResourceLanguages>en-US</SatelliteResourceLanguages> |
| 20 | + <SourceControlInformationFeatureSupported>true</SourceControlInformationFeatureSupported> |
| 21 | + <SourceRevisionId>main</SourceRevisionId> |
8 | 22 | <Features>strict</Features> |
9 | 23 | <PackageTags>mediator;request;response;queries;commands;notifications</PackageTags> |
10 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
11 | 24 | <PackageReadmeFile>README.md</PackageReadmeFile> |
12 | | - <MinVerTagPrefix>v</MinVerTagPrefix> |
13 | 25 | <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> |
14 | 26 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
15 | 27 | <IncludeSymbols>true</IncludeSymbols> |
16 | 28 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
17 | 29 | <EmbedUntrackedSources>true</EmbedUntrackedSources> |
18 | | - <Deterministic>true</Deterministic> |
19 | | - <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> |
20 | 30 | </PropertyGroup> |
21 | 31 |
|
22 | 32 | <ItemGroup> |
23 | | - <PackageReference Include="IsExternalInit" Version="1.0.3"> |
24 | | - <PrivateAssets>all</PrivateAssets> |
25 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
26 | | - </PackageReference> |
27 | 33 | <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" Condition="'$(TargetFramework)' == 'netstandard2.0'" /> |
28 | 34 | <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> |
29 | 35 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
30 | | - <PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" /> |
31 | 36 | </ItemGroup> |
32 | 37 |
|
33 | 38 | <ItemGroup> |
34 | 39 | <None Include="..\README.md" Pack="true" PackagePath="\" /> |
35 | 40 | </ItemGroup> |
36 | | - |
37 | 41 | </Project> |
0 commit comments