parent
a71e2b7d88
commit
cb02acc1b2
8 changed files with 80 additions and 51 deletions
@ -1,46 +1,46 @@ |
||||
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
||||
<PropertyGroup> |
||||
<TargetFramework>net6.0</TargetFramework> |
||||
<Authors>SimonG</Authors> |
||||
<Copyright>Copyright(c) 2022 SimonG. All Rights Reserved.</Copyright> |
||||
<Description>A lightweight IOC Container Validator.</Description> |
||||
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl> |
||||
<LangVersion>default</LangVersion> |
||||
<Nullable>enable</Nullable> |
||||
<ImplicitUsings>enable</ImplicitUsings> |
||||
<DocumentationFile>LightweightIocContainer.Validation.xml</DocumentationFile> |
||||
<VersionPrefix>4.0.0</VersionPrefix> |
||||
<VersionSuffix>beta4</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="1.1.1"> |
||||
<PrivateAssets>all</PrivateAssets> |
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||
</PackageReference> |
||||
<PackageReference Include="Moq" Version="4.18.2" /> |
||||
<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> |
||||
<PropertyGroup> |
||||
<TargetFramework>net6.0</TargetFramework> |
||||
<Authors>SimonG</Authors> |
||||
<Copyright>Copyright(c) 2022 SimonG. All Rights Reserved.</Copyright> |
||||
<Description>A lightweight IOC Container Validator.</Description> |
||||
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl> |
||||
<LangVersion>default</LangVersion> |
||||
<Nullable>enable</Nullable> |
||||
<ImplicitUsings>enable</ImplicitUsings> |
||||
<DocumentationFile>LightweightIocContainer.Validation.xml</DocumentationFile> |
||||
<VersionPrefix>4.0.0</VersionPrefix> |
||||
<VersionSuffix>beta5</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="1.1.1"> |
||||
<PrivateAssets>all</PrivateAssets> |
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||
</PackageReference> |
||||
<PackageReference Include="Moq" Version="4.18.2" /> |
||||
<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> |
||||
|
||||
@ -0,0 +1,26 @@ |
||||
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
||||
<PropertyGroup> |
||||
<TargetFramework>net6.0</TargetFramework> |
||||
<IsPackable>false</IsPackable> |
||||
<Authors>SimonG</Authors> |
||||
<LangVersion>default</LangVersion> |
||||
<ImplicitUsings>enable</ImplicitUsings> |
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" /> |
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" /> |
||||
<PackageReference Include="Moq" Version="4.18.2" /> |
||||
<PackageReference Include="nunit" Version="3.13.3" /> |
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1"> |
||||
<PrivateAssets>all</PrivateAssets> |
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
||||
</PackageReference> |
||||
</ItemGroup> |
||||
|
||||
<ItemGroup> |
||||
<ProjectReference Include="..\LightweightIocContainer.Validation\LightweightIocContainer.Validation.csproj" /> |
||||
</ItemGroup> |
||||
|
||||
</Project> |
||||
Loading…
Reference in new issue