You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
811 B
23 lines
811 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Authors>SimonG</Authors>
|
|
<Copyright>Copyright(c) 2019 SimonG. All Rights Reserved.</Copyright>
|
|
<Description>A lightweight IOC Container</Description>
|
|
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl>
|
|
<PackageLicenseUrl>https://github.com/SimonG96/LightweightIocContainer/blob/master/LICENSE</PackageLicenseUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Factories\" />
|
|
<Folder Include="Interfaces\Factories\" />
|
|
<Folder Include="Interfaces\Registrations\" />
|
|
<Folder Include="Registrations\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|