mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 06:29:29 +00:00
0a30872781
* Introduce .netcore extensions Implement ArgumentNullException for .net6 and c#10 * Update pipelines to install .netcore 6 * Update test projects to .net 6.0
22 lines
703 B
XML
22 lines
703 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentAssertions" Version="5.10.3" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
|
<PackageReference Include="coverlet.collector" Version="3.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SystemExtensions.NetStandard.Security\SystemExtensions.NetStandard.Security.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|