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.
46 lines
1.9 KiB
46 lines
1.9 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Authors>SimonG</Authors>
|
|
<Copyright>Copyright(c) 2024 SimonG. All Rights Reserved.</Copyright>
|
|
<Description>A lightweight IOC Container Validator.</Description>
|
|
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<DocumentationFile>LightweightIocContainer.Validation.xml</DocumentationFile>
|
|
<VersionPrefix>4.4.0</VersionPrefix>
|
|
<VersionSuffix>beta6</VersionSuffix>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageProjectUrl>https://github.com/SimonG96/LightweightIocContainer</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NSubstitute" Version="5.3.0" />
|
|
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="README.md" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="Exists('..\LightweightIocContainer\LightweightIocContainer.csproj')">
|
|
<ProjectReference Include="..\LightweightIocContainer\LightweightIocContainer.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="!Exists('..\LightweightIocContainer\LightweightIocContainer.csproj')">
|
|
<PackageReference Include="LightweightIocContainer" Version="$(Version)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|