* Add an option to get tuple data via reflection. * Removed non-relfection-based way of getting information about the tuples. * Make methods static back. * Remove the nuget dependency to System.ValueTuple
20 lines
530 B
XML
20 lines
530 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
|
|
<PackageReference Include="xunit" Version="2.3.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Ben.Demystifier\Ben.Demystifier.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|