-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeclareDI.csproj
28 lines (24 loc) · 1.08 KB
/
DeclareDI.csproj
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
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" Visible="false" PackagePath=""/>
<None Include="README.md" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>
<PropertyGroup>
<PackageVersion>0.0.1-pre1</PackageVersion>
<PackageId>DeclareDI</PackageId>
<Authors>Josiah Roberts</Authors>
<Description>Declarative extension for Microsoft.Extensions.DependencyInjection, designed to allow functional-style, dependency-injected programming.</Description>
<Copyright>2022, Josiah Roberts</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/josiah-roberts/DeclareDI</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
</ItemGroup>
</Project>