-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCode.Library.Application.csproj
More file actions
24 lines (20 loc) · 950 Bytes
/
Code.Library.Application.csproj
File metadata and controls
24 lines (20 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>Abhith Rajan</Authors>
<Company>Abhith Rajan</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://code-library.abhith.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/Abhith/Code.Library</RepositoryUrl>
<PackageTags>c#, mediatr, helpers</PackageTags>
<Description>C# utils libraries contain a collection of reusable models, helper methods and extensions.
Specific to Application layer.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Code.Library\Code.Library.csproj" />
</ItemGroup>
</Project>