-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHenryUtils.csproj
More file actions
26 lines (22 loc) · 852 Bytes
/
Copy pathHenryUtils.csproj
File metadata and controls
26 lines (22 loc) · 852 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
25
26
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/henrychris/henry-csharp-utils</RepositoryUrl>
<IsPackable>true</IsPackable>
<Title>Henry's Csharp Utils</Title>
<Authors>Henry Ihenacho</Authors>
<Description>
A collection of code I reuse in my projects.
</Description>
<Version>0.0.7</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7" />
<PackageReference Include="FluentValidation" Version="11.11.0" />
</ItemGroup>
</Project>