- update to .net 6.0

- update nuget packages
pull/59/head
Simon G 3 years ago
parent 2acc4e0bf5
commit f4517a809d
  1. 6
      LightweightIocContainer/LightweightIocContainer.csproj
  2. 12
      Test.LightweightIocContainer/Test.LightweightIocContainer.csproj

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<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>
@ -9,7 +9,7 @@
<LangVersion>default</LangVersion>
<Nullable>enable</Nullable>
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile>
<VersionPrefix>3.0.1</VersionPrefix>
<VersionPrefix>4.0.0-beta</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
@ -26,7 +26,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="Moq" Version="4.18.2" />
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
</ItemGroup>

@ -5,15 +5,15 @@
<IsPackable>false</IsPackable>
<Authors>SimonG</Authors>
<LangVersion>default</LangVersion>
<VersionPrefix>3.0.1</VersionPrefix>
<VersionPrefix>4.0.0-beta</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="nunit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0">
<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>

Loading…
Cancel
Save