Skip to content

Commit

Permalink
Update project references and NuGet metadata
Browse files Browse the repository at this point in the history
- Updated `MediatR.Chained.Console.csproj` to remove project reference to `MediatR.Chained` and add package reference to `MediatR.Chained.EntityFrameworkCore` v1.0.2.
- Added NuGet packaging metadata to `MediatR.Chained.EntityFrameworkCore.csproj` including `IncludeSymbols`, `SymbolPackageFormat`, `Company`, `Authors`, `Description`, `RepositoryUrl`, and `PackageProjectUrl`.
- Added similar NuGet packaging metadata to `MediatR.Chained.csproj`.
  • Loading branch information
JimGeersinga committed Jul 9, 2024
1 parent 711d986 commit 2608b5b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
5 changes: 1 addition & 4 deletions MediatR.Chained.Console/MediatR.Chained.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\MediatR.Chained\MediatR.Chained.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="MediatR.Chained.EntityFrameworkCore" Version="1.0.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Company></Company>
<Authors>JimGeersinga</Authors>
<Description>Create and execute a chain of commands or requests sequentially within a DbContext transaction</Description>
<RepositoryUrl>https://github.com/JimGeersinga/MediatR.Chained</RepositoryUrl>
<PackageProjectUrl>https://github.com/JimGeersinga/MediatR.Chained</PackageProjectUrl>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 7 additions & 0 deletions MediatR.Chained/MediatR.Chained.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Company></Company>
<Authors>JimGeersinga</Authors>
<Description>Create and execute a chain of commands or requests sequentially</Description>
<RepositoryUrl>https://github.com/JimGeersinga/MediatR.Chained</RepositoryUrl>
<PackageProjectUrl>https://github.com/JimGeersinga/MediatR.Chained</PackageProjectUrl>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 2608b5b

Please sign in to comment.