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.
24 lines
892 B
24 lines
892 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>
|
|
<LangVersion>latest</LangVersion>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Factories\" />
|
|
<Folder Include="Interfaces\Factories\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.1" />
|
|
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|