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.
65 lines
2.4 KiB
65 lines
2.4 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
|
|
<Authors>SimonG</Authors>
|
|
<Copyright>Copyright(c) 2019 SimonG. All Rights Reserved.</Copyright>
|
|
<Description>A lightweight IOC Container that is powerful enough to do all the things you need it to do.</Description>
|
|
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl>
|
|
<PackageLicenseUrl></PackageLicenseUrl>
|
|
<LangVersion>latest</LangVersion>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageProjectUrl>https://github.com/SimonG96/LightweightIocContainer</PackageProjectUrl>
|
|
<Version>2.1.0-beta</Version>
|
|
<AssemblyVersion>2.1.0.0</AssemblyVersion>
|
|
<FileVersion>2.1.0.0</FileVersion>
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
|
|
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
|
|
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'">
|
|
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
|
|
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Factories\" />
|
|
<Folder Include="Interfaces\Factories\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
|
|
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\README.md">
|
|
<Pack>true</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|
|
|